-
Notifications
You must be signed in to change notification settings - Fork 1
/
pom.xml
73 lines (60 loc) · 2.31 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
70
71
72
73
<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>
<groupId>com.github.liveontologies</groupId>
<artifactId>jna-build-helper</artifactId>
<version>0.1.0-SNAPSHOT</version>
<relativePath></relativePath>
</parent>
<artifactId>ipasir-parent</artifactId>
<packaging>pom</packaging>
<name>Native libraries for IPASIR</name>
<description>This library provides native shared libraries of propositional satisfiability (SAT) solvers that implement the Reentrant Incremental Sat solver API (reverse: IPASIR). This libraries are compiled and packaged so that they can be conveniently used by the Java Native Acces (JNA) library.</description>
<modules>
<module>ipasir-cadical</module>
<module>ipasir-cryptominisat</module>
<module>ipasir-glucose</module>
<module>ipasir-minisat</module>
<module>ipasir-picosat</module>
</modules>
<url>https://github.com/liveontologies/${project.artifactId}</url>
<scm>
<connection>scm:git:https://github.com/liveontologies/${project.artifactId}.git</connection>
<developerConnection>scm:git:git@github.com:liveontologies/${project.artifactId}.git</developerConnection>
<url>https://github.com/liveontologies/${project.artifactId}</url>
<tag>HEAD</tag>
</scm>
<licenses>
<license>
<name>IPASIR License</name>
<url>https://github.com/biotomas/ipasir/blob/master/LICENSE</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>yevgeny.kazakov@uni-ulm.de</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>
<distributionManagement>
<snapshotRepository>
<id>ossrh</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
</distributionManagement>
</project>