Permalink
| <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/maven-v4_0_0.xsd"> | |
| <modelVersion>4.0.0</modelVersion> | |
| <groupId>org.monarchinitiative.owlsim</groupId> | |
| <artifactId>owlsim</artifactId> | |
| <version>3.0-SNAPSHOT</version> | |
| <name>owlsim</name> | |
| <packaging>pom</packaging> | |
| <modules> | |
| <module>owlsim-core</module> | |
| <module>owlsim-services</module> | |
| </modules> | |
| <properties> | |
| <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> | |
| <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> | |
| <owlapi.version>4.2.6</owlapi.version> | |
| <dropwizard.version>0.7.1</dropwizard.version> | |
| <guice.version>4.0</guice.version> | |
| <jackson.version>2.8.2</jackson.version> | |
| </properties> | |
| <build> | |
| <plugins> | |
| <plugin> | |
| <groupId>org.apache.maven.plugins</groupId> | |
| <artifactId>maven-compiler-plugin</artifactId> | |
| <version>2.5.1</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.12.2</version> | |
| <configuration> | |
| <argLine>-Xmx2200M</argLine> | |
| </configuration> | |
| </plugin> | |
| <plugin> | |
| <groupId>org.apache.maven.plugins</groupId> | |
| <artifactId>maven-eclipse-plugin</artifactId> | |
| <version>2.9</version> | |
| <configuration> | |
| <downloadSources>true</downloadSources> | |
| <downloadJavadocs>true</downloadJavadocs> | |
| </configuration> | |
| </plugin> | |
| <plugin> | |
| <groupId>org.apache.maven.plugins</groupId> | |
| <artifactId>maven-failsafe-plugin</artifactId> | |
| <version>2.17</version> | |
| <executions> | |
| <execution> | |
| <goals> | |
| <goal>integration-test</goal> | |
| <goal>verify</goal> | |
| </goals> | |
| </execution> | |
| </executions> | |
| </plugin> | |
| <plugin> | |
| <groupId>org.eluder.coveralls</groupId> | |
| <artifactId>coveralls-maven-plugin</artifactId> | |
| <version>3.0.1</version> | |
| <configuration> | |
| <repoToken>9xzW6udEMsX8PzQR9efXb1TwksQmltfNI</repoToken> | |
| </configuration> | |
| </plugin> | |
| <plugin> | |
| <groupId>org.codehaus.mojo</groupId> | |
| <artifactId>cobertura-maven-plugin</artifactId> | |
| <version>2.6</version> | |
| <configuration> | |
| <format>xml</format> | |
| <maxmem>256m</maxmem> | |
| <!-- aggregated reports for multi-module projects --> | |
| <aggregate>true</aggregate> | |
| </configuration> | |
| </plugin> | |
| </plugins> | |
| </build> | |
| <dependencies> | |
| <dependency> | |
| <groupId>junit</groupId> | |
| <artifactId>junit</artifactId> | |
| <version>4.12</version> | |
| <scope>test</scope> | |
| </dependency> | |
| <dependency> | |
| <groupId>com.google.caliper</groupId> | |
| <artifactId>caliper</artifactId> | |
| <version>1.0-beta-1</version> | |
| <exclusions> | |
| <exclusion> | |
| <artifactId>guice-multibindings</artifactId> | |
| <groupId>com.google.inject.extensions</groupId> | |
| </exclusion> | |
| <exclusion> | |
| <artifactId>guice</artifactId> | |
| <groupId>com.google.inject</groupId> | |
| </exclusion> | |
| <exclusion> | |
| <artifactId>jersey-client</artifactId> | |
| <groupId>com.sun.jersey</groupId> | |
| </exclusion> | |
| <exclusion> | |
| <artifactId>jersey-core</artifactId> | |
| <groupId>com.sun.jersey</groupId> | |
| </exclusion> | |
| </exclusions> | |
| </dependency> | |
| <dependency> | |
| <groupId>com.google.inject.extensions</groupId> | |
| <artifactId>guice-assistedinject</artifactId> | |
| <version>4.0</version> | |
| <exclusions> | |
| <exclusion> | |
| <artifactId>guice</artifactId> | |
| <groupId>com.google.inject</groupId> | |
| </exclusion> | |
| </exclusions> | |
| </dependency> | |
| <dependency> | |
| <groupId>com.google.guava</groupId> | |
| <artifactId>guava</artifactId> | |
| <version>21.0</version> | |
| </dependency> | |
| <dependency> | |
| <groupId>org.mockito</groupId> | |
| <artifactId>mockito-all</artifactId> | |
| <version>1.10.8</version> | |
| <scope>test</scope> | |
| </dependency> | |
| <dependency> | |
| <groupId>org.hamcrest</groupId> | |
| <artifactId>hamcrest-library</artifactId> | |
| <version>1.3</version> | |
| <scope>test</scope> | |
| </dependency> | |
| <dependency> | |
| <groupId>com.carrotsearch</groupId> | |
| <artifactId>junit-benchmarks</artifactId> | |
| <version>0.7.2</version> | |
| <scope>test</scope> | |
| </dependency> | |
| <dependency> | |
| <groupId>com.google.code.findbugs</groupId> | |
| <artifactId>jsr305</artifactId> | |
| <version>3.0.0</version> | |
| <scope>compile</scope> | |
| </dependency> | |
| </dependencies> | |
| </project> |