annoy-java
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.spotify</groupId> <artifactId>annoy-java</artifactId> <version>0.4.2</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <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> <groupId>com.spotify</groupId> <artifactId>foss-root</artifactId> <version>6</version> </parent> <artifactId>annoy-java</artifactId> <version>0.4.2</version> <licenses> <license> <name>The Apache Software License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> </license> </licenses> <properties> <annoy.commit-hash>60797b2c96518407732c0b6f4284c83b1c2043ca</annoy.commit-hash> <jacoco.minimum-coverage>0.80</jacoco.minimum-coverage> </properties> <scm> <url>https://github.com/yonromai/annoy-java</url> <connection>scm:git:git@github.com:yonromai/annoy-java.git</connection> <developerConnection>scm:git:git@github.com:yonromai/annoy-java.git</developerConnection> <tag>v0.4.2</tag> </scm> <dependencies> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-lang3</artifactId> <version>3.5</version> </dependency> <dependency> <groupId>com.spotify.sparkey</groupId> <artifactId>sparkey</artifactId> <version>2.1.3</version> </dependency> <!-- test --> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.11</version> <scope>test</scope> </dependency> <dependency> <groupId>org.hamcrest</groupId> <artifactId>hamcrest-library</artifactId> <version>1.3</version> <scope>test</scope> </dependency> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-math3</artifactId> <version>3.6.1</version> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <artifactId>exec-maven-plugin</artifactId> <groupId>org.codehaus.mojo</groupId> <version>1.6.0</version> <executions> <execution><!-- Run our version calculation script --> <id>build-annoy</id> <phase>process-classes</phase> <goals> <goal>exec</goal> </goals> <configuration> <executable>scripts/build_native.sh</executable> <arguments> <argument>${annoy.commit-hash}</argument> </arguments> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.6.1</version> <configuration> <source>1.7</source> <target>1.7</target> </configuration> </plugin> <plugin> <artifactId>maven-checkstyle-plugin</artifactId> <configuration> <failOnViolation>true</failOnViolation> <violationSeverity>warning</violationSeverity> </configuration> </plugin> <plugin> <artifactId>maven-enforcer-plugin</artifactId> </plugin> <plugin> <artifactId>maven-failsafe-plugin</artifactId> </plugin> <plugin> <groupId>org.jacoco</groupId> <artifactId>jacoco-maven-plugin</artifactId> <version>0.7.9</version> <configuration> <excludes> <exclude>**/*Builder.*</exclude> <exclude>**/*Value.*</exclude> </excludes> </configuration> <executions> <execution> <goals> <goal>prepare-agent</goal> </goals> </execution> <execution> <id>report</id> <phase>prepare-package</phase> <goals> <goal>report</goal> </goals> </execution> <execution> <id>check</id> <goals> <goal>check</goal> </goals> <configuration> <rules> <rule> <element>BUNDLE</element> <limits> <limit> <counter>INSTRUCTION</counter> <value>COVEREDRATIO</value> <minimum>${jacoco.minimum-coverage}</minimum> </limit> </limits> </rule> </rules> </configuration> </execution> </executions> </plugin> </plugins> </build> <developers> <developer> <id>romain</id> <email>romain@spotify.com</email> <name>Romain Yon</name> </developer> </developers> </project>