-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpom-model.xml
More file actions
42 lines (42 loc) · 1.75 KB
/
Copy pathpom-model.xml
File metadata and controls
42 lines (42 loc) · 1.75 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>${ivy.pom.groupId}</groupId>
<artifactId>${ivy.pom.artifactId}</artifactId>
<packaging>jar</packaging>
<name>DSI Utilities</name>
<version>${ivy.pom.version}</version>
<description>The DSI utilities are a mishmash of classes accumulated during the last twenty years in projects developed at the DSI (Dipartimento di Scienze dell'Informazione, i.e., Information Sciences Department), now DI (Dipartimento di Informatica, i.e., Informatics Department), of the Universita` degli Studi di Milano.</description>
<url>http://dsiutils.di.unimi.it/</url>
<licenses>
<license>
<name>GNU Lesser General Public License Version 2.1+</name>
<url>https://www.gnu.org/licenses/old-licenses/lgpl-2.1.html</url>
<distribution>repo</distribution>
</license>
<license>
<name>Apache License v2.0</name>
<url>https://www.apache.org/licenses/LICENSE-2.0</url>
<distribution>source</distribution>
</license>
</licenses>
<scm>
<connection>scm:git://github.com/vigna/dsiutils.git</connection>
<url>https://github.com/vigna/dsiutils</url>
</scm>
<developers>
<developer>
<id>boldi</id>
<name>Paolo Boldi</name>
<email>paolo.boldi@unimi.it</email>
</developer>
<developer>
<id>vigna</id>
<name>Sebastiano Vigna</name>
<email>sebastiano.vigna@unimi.it</email>
</developer>
</developers>
<properties>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
</properties>
</project>