-
Notifications
You must be signed in to change notification settings - Fork 35
Expand file tree
/
Copy pathpom.xml
More file actions
43 lines (40 loc) · 1.37 KB
/
pom.xml
File metadata and controls
43 lines (40 loc) · 1.37 KB
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
<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>
<artifactId>OWLTools-Parent</artifactId>
<groupId>org.bbop</groupId>
<version>0.3.0-SNAPSHOT</version>
<relativePath>../OWLTools-Parent/pom.xml</relativePath>
</parent>
<artifactId>golr-client</artifactId>
<name>Golr-Client</name>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<excludes>
<!-- exclude due to use of external servers, which may not be available -->
<exclude>org/bbop/golr/java/RetrieveGolrAnnotationsTest.java</exclude>
<exclude>org/bbop/golr/java/RetrieveGolrBioentitiesTest.java</exclude>
<exclude>org/bbop/golr/java/RetrieveGolrOntologyClassTest.java</exclude>
</excludes>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.bbop</groupId>
<artifactId>OWLTools-Annotation</artifactId>
<version>${project.parent.version}</version>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient</artifactId>
<version>4.5.13</version>
</dependency>
</dependencies>
</project>