META-INF.maven.com.spotify.completable-futures.pom.xml Maven / Gradle / Ivy
<?xml version="1.0"?> <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> <parent> <groupId>com.spotify</groupId> <artifactId>foss-root</artifactId> <version>16</version> </parent> <artifactId>completable-futures</artifactId> <version>0.3.6</version> <name>completable-futures</name> <description>Convenience utilities for working with asynchronous Java 8</description> <url>https://spotify.github.io/completable-futures</url> <properties> <github.global.server>github</github.global.server> </properties> <scm> <connection>scm:git:https://github.com/spotify/completable-futures.git</connection> <developerConnection>scm:git:ssh://[email protected]/spotify/completable-futures.git</developerConnection> <tag>v0.3.6</tag> <url>scm:https://github.com/spotify/completable-futures</url> </scm> <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> <organization> <name>Spotify AB</name> <url>http://www.spotify.com</url> </organization> <developers> <developer> <id>marcbr</id> <name>Marc Bruggmann</name> <email>[email protected]</email> <organization>Spotify AB</organization> <organizationUrl>http://www.spotify.com</organizationUrl> <roles> <role>developer</role> </roles> <timezone>+1</timezone> </developer> <developer> <id>krka</id> <name>Kristofer Karlsson</name> <email>[email protected]</email> <organization>Spotify AB</organization> <organizationUrl>http://www.spotify.com</organizationUrl> <roles> <role>developer</role> </roles> <timezone>+1</timezone> </developer> <developer> <id>dflemstr</id> <name>David Flemström</name> <email>[email protected]</email> <organization>Spotify AB</organization> <organizationUrl>http://www.spotify.com</organizationUrl> <roles> <role>developer</role> </roles> <timezone>+1</timezone> </developer> </developers> <dependencies> <!-- provided dependencies --> <dependency> <groupId>com.google.code.findbugs</groupId> <artifactId>jsr305</artifactId> <version>3.0.2</version> <scope>provided</scope> </dependency> <!-- test dependencies --> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter</artifactId> <version>5.9.3</version> <scope>test</scope> </dependency> <dependency> <groupId>org.hamcrest</groupId> <artifactId>hamcrest-core</artifactId> <version>2.2</version> <scope>test</scope> </dependency> <dependency> <groupId>org.openjdk.jmh</groupId> <artifactId>jmh-core</artifactId> <version>1.21</version> <scope>test</scope> </dependency> <dependency> <groupId>org.openjdk.jmh</groupId> <artifactId>jmh-generator-annprocess</artifactId> <version>1.21</version> <scope>test</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> <version>4.11.0</version> <scope>test</scope> </dependency> <dependency> <groupId>org.jmock</groupId> <artifactId>jmock</artifactId> <version>2.12.0</version> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <artifactId>maven-checkstyle-plugin</artifactId> </plugin> <plugin> <artifactId>maven-enforcer-plugin</artifactId> </plugin> <plugin> <artifactId>maven-failsafe-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <configuration> <archive> <manifestEntries> <Automatic-Module-Name>com.spotify.completablefutures</Automatic-Module-Name> </manifestEntries> </archive> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <configuration> <show>private</show> <failOnError>false</failOnError> </configuration> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </project>
© 2015 - 2025 Weber Informatics LLC | Privacy Policy