Permalink
Newer
Older
100644 159 lines (154 sloc) 4.56 KB
Aug 25, 2014 @cmungall initial commit
1 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
Aug 26, 2014 @cmungall Match ranking.
2 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
3 <modelVersion>4.0.0</modelVersion>
4 <groupId>org.monarchinitiative.owlsim</groupId>
5 <artifactId>owlsim</artifactId>
6 <version>3.0-SNAPSHOT</version>
7 <name>owlsim</name>
Oct 27, 2014 @ccondit Refactors to multi-maven project before adding REST services for #6
8 <packaging>pom</packaging>
9
10 <modules>
11 <module>owlsim-core</module>
Oct 28, 2014 @ccondit Adds initial non-functional dropwizard shell for #6
12 <module>owlsim-services</module>
Oct 27, 2014 @ccondit Refactors to multi-maven project before adding REST services for #6
13 </modules>
14
Aug 26, 2014 @cmungall Match ranking.
15 <properties>
Oct 27, 2014 @ccondit Refactors to multi-maven project before adding REST services for #6
16 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
17 <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
Sep 12, 2016 @cmungall upping OWLAPI version
18 <owlapi.version>4.2.6</owlapi.version>
Oct 27, 2014 @ccondit Refactors to multi-maven project before adding REST services for #6
19 <dropwizard.version>0.7.1</dropwizard.version>
Jun 5, 2015 @ccondit Updates to Guice 4.0
20 <guice.version>4.0</guice.version>
Sep 6, 2016 @cmungall Added TypeFilters
21 <jackson.version>2.8.2</jackson.version>
Aug 26, 2014 @cmungall Match ranking.
22 </properties>
23 <build>
24 <plugins>
25 <plugin>
26 <groupId>org.apache.maven.plugins</groupId>
27 <artifactId>maven-compiler-plugin</artifactId>
28 <version>2.5.1</version>
29 <configuration>
Sep 12, 2016 @cmungall 1.7
30 <source>1.8</source>
31 <target>1.8</target>
Aug 26, 2014 @cmungall Match ranking.
32 </configuration>
33 </plugin>
34 <plugin>
35 <groupId>org.apache.maven.plugins</groupId>
36 <artifactId>maven-surefire-plugin</artifactId>
37 <version>2.12.2</version>
38 <configuration>
39 <argLine>-Xmx2200M</argLine>
40 </configuration>
41 </plugin>
Oct 27, 2014 @ccondit Refactors to multi-maven project before adding REST services for #6
42 <plugin>
43 <groupId>org.apache.maven.plugins</groupId>
44 <artifactId>maven-eclipse-plugin</artifactId>
45 <version>2.9</version>
46 <configuration>
47 <downloadSources>true</downloadSources>
48 <downloadJavadocs>true</downloadJavadocs>
49 </configuration>
50 </plugin>
51 <plugin>
52 <groupId>org.apache.maven.plugins</groupId>
53 <artifactId>maven-failsafe-plugin</artifactId>
54 <version>2.17</version>
55 <executions>
56 <execution>
57 <goals>
58 <goal>integration-test</goal>
59 <goal>verify</goal>
60 </goals>
61 </execution>
62 </executions>
63 </plugin>
May 5, 2015 @ccondit Adds coveralls plugin
64 <plugin>
65 <groupId>org.eluder.coveralls</groupId>
66 <artifactId>coveralls-maven-plugin</artifactId>
67 <version>3.0.1</version>
68 <configuration>
Jun 26, 2015 @ccondit Adds JDK8 and fixes coveralls plugin
69 <repoToken>9xzW6udEMsX8PzQR9efXb1TwksQmltfNI</repoToken>
May 5, 2015 @ccondit Adds coveralls plugin
70 </configuration>
71 </plugin>
72 <plugin>
73 <groupId>org.codehaus.mojo</groupId>
74 <artifactId>cobertura-maven-plugin</artifactId>
75 <version>2.6</version>
76 <configuration>
77 <format>xml</format>
78 <maxmem>256m</maxmem>
79 <!-- aggregated reports for multi-module projects -->
80 <aggregate>true</aggregate>
81 </configuration>
82 </plugin>
Aug 26, 2014 @cmungall Match ranking.
83 </plugins>
84 </build>
85 <dependencies>
86 <dependency>
87 <groupId>junit</groupId>
88 <artifactId>junit</artifactId>
Apr 3, 2015 @ccondit Dependency updates
89 <version>4.12</version>
Aug 26, 2014 @cmungall Match ranking.
90 <scope>test</scope>
91 </dependency>
92 <dependency>
93 <groupId>com.google.caliper</groupId>
94 <artifactId>caliper</artifactId>
95 <version>1.0-beta-1</version>
Sep 6, 2016 @cmungall Added TypeFilters
96 <exclusions>
97 <exclusion>
98 <artifactId>guice-multibindings</artifactId>
99 <groupId>com.google.inject.extensions</groupId>
100 </exclusion>
101 <exclusion>
102 <artifactId>guice</artifactId>
103 <groupId>com.google.inject</groupId>
104 </exclusion>
105 <exclusion>
106 <artifactId>jersey-client</artifactId>
107 <groupId>com.sun.jersey</groupId>
108 </exclusion>
109 <exclusion>
110 <artifactId>jersey-core</artifactId>
111 <groupId>com.sun.jersey</groupId>
112 </exclusion>
113 </exclusions>
Aug 26, 2014 @cmungall Match ranking.
114 </dependency>
Sep 6, 2016 @cmungall Added TypeFilters
115 <dependency>
116 <groupId>com.google.inject.extensions</groupId>
117 <artifactId>guice-assistedinject</artifactId>
118 <version>4.0</version>
119 <exclusions>
120 <exclusion>
121 <artifactId>guice</artifactId>
122 <groupId>com.google.inject</groupId>
123 </exclusion>
124 </exclusions>
125 </dependency>
126
Aug 26, 2014 @cmungall Match ranking.
127 <dependency>
128 <groupId>com.google.guava</groupId>
129 <artifactId>guava</artifactId>
Mar 10, 2017 @julesjacobsen Updated pom to use Guava 21 as this has support for Java 8 streams.
130 <version>21.0</version>
Aug 26, 2014 @cmungall Match ranking.
131 </dependency>
132 <dependency>
133 <groupId>org.mockito</groupId>
134 <artifactId>mockito-all</artifactId>
Oct 27, 2014 @ccondit Updates dependency hierarchy (#6)
135 <version>1.10.8</version>
136 <scope>test</scope>
137 </dependency>
138 <dependency>
139 <groupId>org.hamcrest</groupId>
140 <artifactId>hamcrest-library</artifactId>
141 <version>1.3</version>
Aug 26, 2014 @cmungall Match ranking.
142 <scope>test</scope>
143 </dependency>
Sep 25, 2014 @nlwashington added ICDistribution class, refactored from sim2 to include only itself
144 <dependency>
Oct 27, 2014 @ccondit Updates dependency hierarchy (#6)
145 <groupId>com.carrotsearch</groupId>
146 <artifactId>junit-benchmarks</artifactId>
147 <version>0.7.2</version>
148 <scope>test</scope>
149 </dependency>
150 <dependency>
151 <groupId>com.google.code.findbugs</groupId>
152 <artifactId>jsr305</artifactId>
153 <version>3.0.0</version>
154 <scope>compile</scope>
Oct 27, 2014 @ccondit Refactors to multi-maven project before adding REST services for #6
155 </dependency>
Aug 26, 2014 @cmungall Match ranking.
156 </dependencies>
Aug 25, 2014 @cmungall initial commit
157
158 </project>