1- <?xml version =" 1.0" encoding =" UTF-8" ?>
2- <project xsi : schemaLocation =" http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns =" http://maven.apache.org/POM/4.0.0"
3- xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance" >
4- <modelVersion >4.0.0</modelVersion >
5- <groupId >gov.doe.jgi</groupId >
6- <artifactId >boost-client</artifactId >
7- <version >1.0.0-SNAPSHOT</version >
8- <description >POM was created from install:install-file</description >
9- </project >
1+ <project xmlns="http://maven.apache.org/POM/4.0.0"
2+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3+ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4+
5+ <modelVersion>4.0.0</modelVersion>
6+ <groupId>gov.doe.jgi</groupId>
7+ <artifactId>boost-client</artifactId>
8+ <version>0.0.1-SNAPSHOT</version>
9+
10+ <build>
11+ <sourceDirectory>src/main/java</sourceDirectory>
12+ <plugins>
13+ <plugin>
14+ <artifactId>maven-compiler-plugin</artifactId>
15+ <version>3.5.1</version>
16+ <configuration>
17+ <source>1.7</source>
18+ <target>1.7</target>
19+ </configuration>
20+ </plugin>
21+ </plugins>
22+ </build>
23+
24+ <dependencies>
25+ <!-- JERSEY CLIENT -->
26+ <dependency>
27+ <groupId>org.glassfish.jersey.core</groupId>
28+ <artifactId>jersey-client</artifactId>
29+ <version>2.22.2</version>
30+ </dependency>
31+
32+ <!-- JSON support -->
33+ <dependency>
34+ <groupId>org.json</groupId>
35+ <artifactId>json</artifactId>
36+ <version>20160212</version>
37+ </dependency>
38+
39+ <!-- libSBOLj v2.0 -->
40+ <dependency>
41+ <groupId>org.sbolstandard</groupId>
42+ <artifactId>libSBOLj</artifactId>
43+ <version>2.3.1</version>
44+ </dependency>
45+
46+ <!-- LOGGING -->
47+ <dependency>
48+ <groupId>org.slf4j</groupId>
49+ <artifactId>slf4j-log4j12</artifactId>
50+ <version>1.7.21</version>
51+ </dependency>
52+
53+ <!-- Jackon -->
54+ <dependency>
55+ <groupId>com.fasterxml.jackson.core</groupId>
56+ <artifactId>jackson-databind</artifactId>
57+ <version>2.9.4</version>
58+ </dependency>
59+
60+ <!-- Junit -->
61+ <dependency>
62+ <groupId>junit</groupId>
63+ <artifactId>junit</artifactId>
64+ <version>4.11</version>
65+ <scope>test</scope>
66+ </dependency>
67+
68+ <!-- Mockito -->
69+ <dependency>
70+ <groupId>org.mockito</groupId>
71+ <artifactId>mockito-all</artifactId>
72+ <version>1.9.5</version>
73+ </dependency>
74+
75+ <!-- PowerMockito -->
76+ <dependency>
77+ <groupId>org.powermock</groupId>
78+ <artifactId>powermock-module-junit4</artifactId>
79+ <version>1.6.2</version>
80+ <scope>test</scope>
81+ </dependency>
82+
83+ </dependencies>
84+
85+ </project>
0 commit comments