-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
69 lines (57 loc) · 2.07 KB
/
pom.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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
<?xml version="1.0" encoding="UTF-8" ?>
<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>
<parent>
<artifactId>ipasir4j-build-helper</artifactId>
<groupId>com.github.liveontologies</groupId>
<version>1.0.0-SNAPSHOT</version>
</parent>
<artifactId>cadical4j-parent</artifactId>
<version>rel-2.0.0.1-SNAPSHOT</version>
<packaging>pom</packaging>
<name>Configuration settings for the CaDiCaL SAT solver</name>
<modules>
<module>cadical</module>
<module>cadical4j</module>
</modules>
<properties>
<library.name>cadical</library.name>
<library.version>rel-2.0.0</library.version>
<library.download.url>https://github.com/arminbiere/cadical/archive/</library.download.url>
<library.archive.name>${library.version}</library.archive.name>
</properties>
<url>https://github.com/liveontologies/${project.artifactId}</url>
<scm>
<connection>scm:git:https://github.com/liveontologies/${project.artifactId}.git</connection>
<developerConnection>scm:git:[email protected]:liveontologies/${project.artifactId}.git</developerConnection>
<url>https://github.com/liveontologies/${project.artifactId}</url>
<tag>HEAD</tag>
</scm>
<licenses>
<license>
<name>The Apache Software License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<organization>
<name>Live Ontologies Project</name>
<url>https://github.com/liveontologies</url>
</organization>
<inceptionYear>2020</inceptionYear>
<developers>
<developer>
<id>yevgeny</id>
<name>Yevgeny Kazakov</name>
<email>[email protected]</email>
<organization>Institute of Artificial Intelligence, University of Ulm</organization>
<organizationUrl>http://www.uni-ulm.de/en/in/ki.html</organizationUrl>
<roles>
<role>developer</role>
</roles>
<timezone>1</timezone>
</developer>
</developers>
</project>