forked from phillord/hermit-reasoner
-
Notifications
You must be signed in to change notification settings - Fork 3
/
pom.xml
343 lines (327 loc) · 10.7 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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
<?xml version="1.0" encoding="utf-8"?>
<!-- Copyright 2008, 2009, 2010, 2011, 2015 by the Department of Computer
Science in the University of Oxford; see lgpl-3.0.txt and gpl.txt for details -->
<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>
<prerequisites>
<maven>3.0.5</maven>
</prerequisites>
<parent>
<groupId>org.sonatype.oss</groupId>
<artifactId>oss-parent</artifactId>
<version>7</version>
</parent>
<!-- USAGE: `mvn compile` to compile main sources. `mvn test` to compile
all tests and run AllQuickTests. `mvn -PallTests test` to compile all tests
and run AllTests. `mvn package` to assemble the Protege plugin, the standalone
CLI with all dependencies, and the source code package. `mvn install` to
run all the preceeding tasks, and to generate a standalone HermiT library
without dependencies. This will also generate the JUnit reports and attempt
to SCP the build results to linux.cs.ox.ac.uk. -->
<groupId>net.sourceforge.owlapi</groupId>
<artifactId>org.semanticweb.hermit</artifactId>
<version>1.4.6.519-SNAPSHOT</version>
<packaging>bundle</packaging>
<name>HermiT</name>
<url>http://hermit-reasoner.com/</url>
<description>HermiT is reasoner for ontologies written using the Web Ontology Language (OWL). Given an OWL file, HermiT can determine whether or not the ontology is consistent, identify subsumption relationships between classes, and much more.
This is the maven build of HermiT and is designed for people who wish to use HermiT from within the OWL API. It is now versioned in the main HermiT version repository, although not officially supported by the HermiT developers.
The version number of this package is a composite of the HermiT version and a value representing the OWLAPI release it is compatible with. Note that the group id for the upstream HermiT is com.hermit-reasoner, while this fork is released under net.sourceforge.owlapi.
This fork exists to allow HermiT users to use newer OWLAPI versions than the ones supported by the original HermiT codebase.
This package includes the Jautomata library (http://jautomata.sourceforge.net/), and builds with it directly. This library appears to be no longer under active development, and so a "fork" seems appropriate. No development is intended or anticipated on this code base.</description>
<licenses>
<license>
<name>LGPL</name>
<url>http://www.gnu.org/licenses/lgpl-3.0.txt</url>
</license>
</licenses>
<properties>
<!-- General info. -->
<homepage>http://hermit-reasoner.com/</homepage>
<updatefile>PUT ON GITHUB/update.properties</updatefile>
<mainClass>org.semanticweb.HermiT.cli.CommandLine</mainClass>
<!-- structure of output files -->
<reportsDirectory>${project.build.directory}/junit-reports</reportsDirectory>
<!-- To generate a debug version, use `mvn -DdebugHermiT=true` when running
Maven. -->
<debugHermiT>false</debugHermiT>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<profiles>
<profile>
<id>release</id>
<activation>
<activeByDefault>false</activeByDefault>
<property>
<name>performRelease</name>
<value>true</value>
</property>
</activation>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.6</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.0.1</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>1.6.7</version>
<extensions>true</extensions>
<configuration>
<serverId>ossrh</serverId>
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
<autoReleaseAfterClose>true</autoReleaseAfterClose>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.6.0</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.19.1</version>
<configuration>
<excludes>
<exclude>**/BlockingValidatorTest.java</exclude>
</excludes>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>3.0.2</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.0.1</version>
<executions>
<execution>
<id>attach-source</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.0.1</version>
<configuration>
<show>public</show>
</configuration>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<version>3.2.0</version>
<extensions>true</extensions>
<configuration>
<instructions>
<Main-Class>org.semanticweb.HermiT.cli.CommandLine</Main-Class>
<Implementation-Title>${project.name}</Implementation-Title>
<Implementation-Vendor>Oxford University, wrapped by the OWLAPI
Team</Implementation-Vendor>
<Implementation-Version>${project.version}.${maven.build.timestamp}</Implementation-Version>
<Build-Date>${timestamp}</Build-Date>
<Bundle-Name>HermiT Reasoner</Bundle-Name>
<Bundle-Category>protege</Bundle-Category>
<Bundle-Description>An OWL 2 reasoner</Bundle-Description>
<Bundle-DocURL>${homepage}</Bundle-DocURL>
<Bundle-SymbolicName>${project.artifactId};singleton:=true</Bundle-SymbolicName>
<Bundle-Vendor>Boris Motik, Birte Glimm, Giorgos Stoilos, and Ian
Horrocks, wrapped by the OWLAPI Team</Bundle-Vendor>
<Bundle-Version>${project.version}</Bundle-Version>
<Update-Url>${updatefile}</Update-Url>
<Embed-Transitive>true</Embed-Transitive>
<Embed-Dependency>
automaton,
commons-logging,
axiom-api,
axiom-c14n,
axiom-impl,
axiom-dom,
trove4j,
commons-cli
</Embed-Dependency>
<Export-Package>
org.semanticweb.HermiT.*,
rationals.*
</Export-Package>
<Import-Package>
!org.apache.*,
!gnu.getopt,
!javax.*,
javax.xml.stream.*,
!org.codehaus.*,
!org.jaxen*,
org.protege.editor.owl.*;version="4.3",
<!-- equivalent to [4.3,infinity) -->
*
</Import-Package>
</instructions>
<executions>
<execution>
<id>bundle-manifest</id>
<phase>install</phase>
<goals>
<goal>manifest</goal>
</goals>
</execution>
</executions>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
<version>1.1.3</version>
</dependency>
<dependency>
<groupId>net.sourceforge.owlapi</groupId>
<artifactId>owlapi-distribution</artifactId>
<version>5.1.9</version>
</dependency>
<dependency>
<groupId>org.apache.ws.commons.axiom</groupId>
<artifactId>axiom-api</artifactId>
<version>1.2.14</version>
</dependency>
<dependency>
<groupId>org.apache.ws.commons.axiom</groupId>
<artifactId>axiom-c14n</artifactId>
<version>1.2.14</version>
</dependency>
<dependency>
<groupId>org.apache.ws.commons.axiom</groupId>
<artifactId>axiom-impl</artifactId>
<version>1.2.14</version>
</dependency>
<dependency>
<groupId>org.apache.ws.commons.axiom</groupId>
<artifactId>axiom-dom</artifactId>
<version>1.2.14</version>
</dependency>
<dependency>
<groupId>dk.brics.automaton</groupId>
<artifactId>automaton</artifactId>
<version>1.11-8</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>edu.stanford.protege</groupId>
<artifactId>org.protege.editor.owl</artifactId>
<version>4.3.0</version>
<optional>true</optional>
<exclusions>
<exclusion>
<groupId>org.testng</groupId>
<artifactId>testng</artifactId>
</exclusion>
<exclusion>
<artifactId>protege-owlapi-extensions</artifactId>
<groupId>edu.stanford.protege</groupId>
</exclusion>
<exclusion>
<artifactId>org.protege.xmlcatalog</artifactId>
<groupId>edu.stanford.protege</groupId>
</exclusion>
<exclusion>
<artifactId>owlapi-distribution</artifactId>
<groupId>net.sourceforge.owlapi</groupId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>commons-cli</groupId>
<artifactId>commons-cli</artifactId>
<version>1.4</version>
</dependency>
</dependencies>
<developers>
<developer>
<id>bmotik</id>
<name>Boris Motik</name>
<email>[email protected]</email>
</developer>
<developer>
<id>bglimm</id>
<name>Birte Glimm</name>
<email>[email protected]</email>
</developer>
<developer>
<id>ignazio1977</id>
<name>Ignazio Palmisano</name>
<email>[email protected]</email>
</developer>
<developer>
<id>phillord</id>
<name>Phillip Lord</name>
<email>[email protected]</email>
</developer>
</developers>
<mailingLists>
<mailingList>
<name>Hermit Users Group</name>
<archive>http://groups.google.com/group/hermit-users</archive>
</mailingList>
</mailingLists>
<scm>
<connection>scm:git:[email protected]:phillord/hermit-reasoner.git</connection>
<developerConnection>scm:git:[email protected]:phillord/hermit-reasoner.git</developerConnection>
<url>[email protected]:phillord/hermit-reasoner.git</url>
</scm>
</project>