Permalink
Newer
100644
159 lines (154 sloc)
4.56 KB
|
|
||
| 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/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> | |
|
|
||
| 8 | <packaging>pom</packaging> | |
| 9 | ||
| 10 | <modules> | |
| 11 | <module>owlsim-core</module> | |
|
|
||
| 12 | <module>owlsim-services</module> | |
|
|
||
| 13 | </modules> | |
| 14 | ||
|
|
||
| 15 | <properties> | |
|
|
||
| 16 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> | |
| 17 | <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> | |
|
|
||
| 18 | <owlapi.version>4.2.6</owlapi.version> | |
|
|
||
| 19 | <dropwizard.version>0.7.1</dropwizard.version> | |
|
|
||
| 20 | <guice.version>4.0</guice.version> | |
|
|
||
| 21 | <jackson.version>2.8.2</jackson.version> | |
|
|
||
| 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> | |
|
|
||
| 30 | <source>1.8</source> | |
| 31 | <target>1.8</target> | |
|
|
||
| 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> | |
|
|
||
| 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> | |
|
|
||
| 64 | <plugin> | |
| 65 | <groupId>org.eluder.coveralls</groupId> | |
| 66 | <artifactId>coveralls-maven-plugin</artifactId> | |
| 67 | <version>3.0.1</version> | |
| 68 | <configuration> | |
|
|
||
| 69 | <repoToken>9xzW6udEMsX8PzQR9efXb1TwksQmltfNI</repoToken> | |
|
|
||
| 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> | |
|
|
||
| 83 | </plugins> | |
| 84 | </build> | |
| 85 | <dependencies> | |
| 86 | <dependency> | |
| 87 | <groupId>junit</groupId> | |
| 88 | <artifactId>junit</artifactId> | |
|
|
||
| 89 | <version>4.12</version> | |
|
|
||
| 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> | |
|
|
||
| 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> | |
|
|
||
| 114 | </dependency> | |
|
|
||
| 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 | ||
|
|
||
| 127 | <dependency> | |
| 128 | <groupId>com.google.guava</groupId> | |
| 129 | <artifactId>guava</artifactId> | |
|
|
||
| 130 | <version>21.0</version> | |
|
|
||
| 131 | </dependency> | |
| 132 | <dependency> | |
| 133 | <groupId>org.mockito</groupId> | |
| 134 | <artifactId>mockito-all</artifactId> | |
|
|
||
| 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> | |
|
|
||
| 142 | <scope>test</scope> | |
| 143 | </dependency> | |
|
|
||
| 144 | <dependency> | |
|
|
||
| 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> | |
|
|
||
| 155 | </dependency> | |
|
|
||
| 156 | </dependencies> | |
|
|
||
| 157 | ||
| 158 | </project> |