-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpom.xml
101 lines (90 loc) · 3.57 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
<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>cz.cvut.kbss</groupId>
<artifactId>owl2query</artifactId>
<version>0.6.2</version>
<packaging>pom</packaging>
<name>OWL2Query</name>
<description>SPARQL-DL^NOT query engine for OWL 2</description>
<url>https://kbss.felk.cvut.cz/web/software/owl2query</url>
<properties>
<java.version>1.8</java.version>
<maven.compiler.source>${java.version}</maven.compiler.source>
<maven.compiler.target>${java.version}</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<modules>
<module>owl2query-api</module>
<module>owl2query-engine</module>
<module>owl2query-owlapi</module>
<!--<module>owl2query-protege-plugin</module>-->
</modules>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.apache.jena</groupId>
<artifactId>jena-arq</artifactId>
<version>3.17.0</version>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter</artifactId>
<version>5.9.2</version>
<scope>test</scope>
</dependency>
</dependencies>
</dependencyManagement>
<build>
<extensions>
<extension>
<groupId>org.apache.maven.wagon</groupId>
<artifactId>wagon-ssh</artifactId>
<version>3.0.0</version>
</extension>
</extensions>
<plugins>
<!-- Set project version (recursively) -->
<!-- Usage mvn versions:set -DnewVersion=$version and then mvn versions:commit to confirm changes -->
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>versions-maven-plugin</artifactId>
<version>2.7</version>
</plugin>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.22.2</version>
<dependencies>
<dependency>
<groupId>org.junit.platform</groupId>
<artifactId>junit-platform-surefire-provider</artifactId>
<version>1.2.0</version>
</dependency>
</dependencies>
</plugin>
</plugins>
</build>
<distributionManagement>
<repository>
<id>kbss</id>
<name>KBSS Maven 2 Repository</name>
<url>sftp://kbss.felk.cvut.cz/var/www/m2repo</url>
</repository>
<downloadUrl>http://sourceforge.net/projects/owl2query/files/</downloadUrl>
</distributionManagement>
<licenses>
<license>
<name>GNU Lesser General Public License</name>
<url>http://www.gnu.org/copyleft/lesser.html</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<url>https://github.com/kbss-cvut/owl2query.git</url>
<connection>scm:git:https://github.com/kbss-cvut/owl2query.git</connection>
</scm>
<organization>
<name>Czech Technical University in Prague, Knowledge Based and Software Systems Group</name>
<url>https://kbss.felk.cvut.cz</url>
</organization>
</project>