-
Notifications
You must be signed in to change notification settings - Fork 17
/
pom_template.xml
46 lines (40 loc) · 1.64 KB
/
pom_template.xml
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
43
44
45
46
<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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>de.uni-freiburg.informatik.ultimate</groupId>
<artifactId>smtinterpol</artifactId>
<version>${version}</version>
<packaging>jar</packaging>
<name>SMTInterpol</name>
<description>SMTInterpol is an interpolating SMT solver</description>
<url>https://ultimate.informatik.uni-freiburg.de/smtinterpol/</url>
<licenses>
<license>
<name>GNU LESSER GENERAL PUBLIC LICENSE</name>
<url>http://www.gnu.org/licenses/lgpl-3.0.en.html</url>
</license>
</licenses>
<organization>
<name>Ultimate</name>
<url>https://ultimate.informatik.uni-freiburg.de</url>
</organization>
<scm>
<connection>scm:git:https://github.com/ultimate-pa/smtinterpol.git</connection>
<developerConnection>scm:git:git@github.com:ultimate-pa/smtinterpol.git</developerConnection>
<url>https://github.com/ultimate-pa/smtinterpol</url>
</scm>
<developers>
<developer>
<name>Elisabeth Henkel</name>
<email>henkele@informatik.uni-freiburg.de</email>
</developer>
<developer>
<name>Jochen Hoenicke</name>
<email>hoenicke@informatik.uni-freiburg.de</email>
</developer>
<developer>
<name>Tanja Schindler</name>
<email>schindle@informatik.uni-freiburg.de</email>
</developer>
</developers>
</project>