-
Notifications
You must be signed in to change notification settings - Fork 3
/
pom.xml
executable file
·34 lines (34 loc) · 1.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
<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>net.rhizomik.redefer</groupId>
<artifactId>redefer-xsd2owl</artifactId>
<packaging>war</packaging>
<version>0.1</version>
<name>redefer-xsd2owl</name>
<url>http://rhizomik.net/redefer/</url>
<issueManagement>
<url>http://github.com/rhizomik/redefer-xsd2owl/issues</url>
</issueManagement>
<scm>
<url>http://github.com/rhizomik/redefer-xsd2owl</url>
</scm>
<dependencies>
<dependency>
<groupId>org.apache.jena</groupId>
<artifactId>jena-core</artifactId>
<version>2.13.0</version>
</dependency>
<dependency>
<groupId>net.sf.saxon</groupId>
<artifactId>Saxon-HE</artifactId>
<version>9.6.0-4</version>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>servlet-api</artifactId>
<version>2.5</version>
<scope>provided</scope>
</dependency>
</dependencies>
</project>