1 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
---|
2 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
---|
3 | <modelVersion>4.0.0</modelVersion> |
---|
4 | <groupId>ndg.sgf.gateway</groupId> |
---|
5 | <artifactId>metafor</artifactId> |
---|
6 | <version>0.0.1-SNAPSHOT</version> |
---|
7 | |
---|
8 | <organization> |
---|
9 | <name>BADC</name> |
---|
10 | <url>http://badc.nerc.ac.uk</url> |
---|
11 | </organization> |
---|
12 | |
---|
13 | <developers> |
---|
14 | <developer> |
---|
15 | <id>mnagni</id> |
---|
16 | <name>Maurizio Nagni</name> |
---|
17 | <email>maurizio.nagni@stcf.ac.uk</email> |
---|
18 | <organization>BADC</organization> |
---|
19 | <organizationUrl>http://badc.nerc.ac.uk</organizationUrl> |
---|
20 | <roles> |
---|
21 | <role>Java Architect</role> |
---|
22 | </roles> |
---|
23 | </developer> |
---|
24 | </developers> |
---|
25 | |
---|
26 | <dependencies> |
---|
27 | |
---|
28 | <dependency> |
---|
29 | <groupId>ndg.services.schemas</groupId> |
---|
30 | <artifactId>ontologyIngester</artifactId> |
---|
31 | <version>0.0.1-SNAPSHOT</version> |
---|
32 | </dependency> |
---|
33 | |
---|
34 | <dependency> |
---|
35 | <groupId>junit</groupId> |
---|
36 | <artifactId>junit</artifactId> |
---|
37 | <version>4.4</version> |
---|
38 | <scope>test</scope> |
---|
39 | </dependency> |
---|
40 | |
---|
41 | <dependency> |
---|
42 | <groupId>org.slf4j</groupId> |
---|
43 | <artifactId>slf4j-log4j12</artifactId> |
---|
44 | <version>1.5.3</version> |
---|
45 | </dependency> |
---|
46 | |
---|
47 | <!-- Temporary dependencies due to the ndg.ontology.parser.support package, |
---|
48 | which hopefully will be separated in another artifact --> |
---|
49 | <dependency> |
---|
50 | <groupId>edu.stanford.smi</groupId> |
---|
51 | <artifactId>protege-owl</artifactId> |
---|
52 | <version>4.0</version> |
---|
53 | </dependency> |
---|
54 | |
---|
55 | <dependency> |
---|
56 | <groupId>edu.stanford.smi</groupId> |
---|
57 | <artifactId>protege</artifactId> |
---|
58 | <version>4.0</version> |
---|
59 | </dependency> |
---|
60 | |
---|
61 | <dependency> |
---|
62 | <groupId>edu.stanford.smi</groupId> |
---|
63 | <artifactId>orphan-nodes-alg</artifactId> |
---|
64 | <version>4.0</version> |
---|
65 | </dependency> |
---|
66 | |
---|
67 | <dependency> |
---|
68 | <groupId>com.hp.hpl.jena</groupId> |
---|
69 | <artifactId>jena</artifactId> |
---|
70 | <version>2.6.3</version> |
---|
71 | </dependency> |
---|
72 | <dependency> |
---|
73 | <groupId>ndg.services.schemas</groupId> |
---|
74 | <artifactId>ontologyIngester</artifactId> |
---|
75 | <version>0.0.1-SNAPSHOT</version> |
---|
76 | </dependency> |
---|
77 | |
---|
78 | <dependency> |
---|
79 | <groupId>net.sf.saxon</groupId> |
---|
80 | <artifactId>saxon-xqj</artifactId> |
---|
81 | <version>9.1.0.8</version> |
---|
82 | <scope>compile</scope> |
---|
83 | </dependency> |
---|
84 | |
---|
85 | <dependency> |
---|
86 | <groupId>net.sf.saxon</groupId> |
---|
87 | <artifactId>saxon</artifactId> |
---|
88 | <version>9.1.0.8</version> |
---|
89 | <scope>test</scope> |
---|
90 | </dependency> |
---|
91 | |
---|
92 | <dependency> |
---|
93 | <groupId>net.sf.saxon</groupId> |
---|
94 | <artifactId>saxon-dom</artifactId> |
---|
95 | <version>9.1.0.8</version> |
---|
96 | <scope>test</scope> |
---|
97 | </dependency> |
---|
98 | |
---|
99 | <dependency> |
---|
100 | <groupId>org.openrdf.sesame</groupId> |
---|
101 | <artifactId>sesame-repository-api</artifactId> |
---|
102 | <version>2.3.2</version> |
---|
103 | </dependency> |
---|
104 | |
---|
105 | <dependency> |
---|
106 | <groupId>org.openrdf.sesame</groupId> |
---|
107 | <artifactId>sesame-repository-sail</artifactId> |
---|
108 | <version>2.3.2</version> |
---|
109 | </dependency> |
---|
110 | |
---|
111 | <dependency> |
---|
112 | <groupId>org.openrdf.sesame</groupId> |
---|
113 | <artifactId>sesame-sail-memory</artifactId> |
---|
114 | <version>2.3.2</version> |
---|
115 | </dependency> |
---|
116 | |
---|
117 | <dependency> |
---|
118 | <groupId>org.openrdf.sesame</groupId> |
---|
119 | <artifactId>sesame-rio-rdfxml</artifactId> |
---|
120 | <version>2.3.2</version> |
---|
121 | </dependency> |
---|
122 | </dependencies> |
---|
123 | |
---|
124 | <build> |
---|
125 | <plugins> |
---|
126 | <plugin> |
---|
127 | <groupId>org.apache.maven.plugins</groupId> |
---|
128 | <artifactId>maven-compiler-plugin</artifactId> |
---|
129 | <configuration> |
---|
130 | <source>1.6</source> |
---|
131 | <target>1.6</target> |
---|
132 | </configuration> |
---|
133 | </plugin> |
---|
134 | </plugins> |
---|
135 | </build> |
---|
136 | |
---|
137 | <reporting> |
---|
138 | <plugins> |
---|
139 | <plugin> |
---|
140 | <groupId>org.apache.maven.plugins</groupId> |
---|
141 | <artifactId>maven-checkstyle-plugin</artifactId> |
---|
142 | <version>2.6</version> |
---|
143 | <configuration> |
---|
144 | <configLocation>${project.basedir}/config/checkstyle.xml</configLocation> |
---|
145 | </configuration> |
---|
146 | </plugin> |
---|
147 | </plugins> |
---|
148 | </reporting> |
---|
149 | |
---|
150 | |
---|
151 | <distributionManagement> |
---|
152 | <snapshotRepository> |
---|
153 | <id>triton.badc.rl.ac.uk</id> |
---|
154 | <name>triton.badc.rl.ac.uk-snapshots</name> |
---|
155 | <url>http://triton.badc.rl.ac.uk:8180/artifactory/libs-snapshots-local</url> |
---|
156 | </snapshotRepository> |
---|
157 | </distributionManagement> |
---|
158 | </project> |
---|