abrial.mockito-object-injection.2.0.1.source-code.pom.xml Maven / Gradle / Ivy
<?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> <groupId>com.github.exabrial</groupId> <artifactId>mockito-object-injection</artifactId> <version>2.0.1</version> <packaging>jar</packaging> <description>Mockito Object Injection</description> <name>${project.artifactId}</name> <url>https://github.com/exabrial/mockito-object-injection</url> <scm> <connection>scm:git:ssh://[email protected]/exabrial/mockito-object-injection.git</connection> <developerConnection>scm:git:ssh://[email protected]/exabrial/mockito-object-injection.git</developerConnection> <url>https://github.com/exabrial/mockito-object-injection/tree/master</url> <tag>mockito-object-injection-2.0.1</tag> </scm> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <gpg.skip>true</gpg.skip> </properties> <licenses> <license> <name>Apache License, Version 2.0</name> <url>https://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> </license> </licenses> <developers> <developer> <id>exabrial</id> <name>Jonathan S. Fisher</name> <properties> <dev.pgp.fingerprint>871638A21A7F2C38066471420306A354336B4F0D</dev.pgp.fingerprint> </properties> </developer> </developers> <dependencies> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-api</artifactId> <version>5.6.2</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> <version>3.5.0</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.javassist</groupId> <artifactId>javassist</artifactId> <version>3.23.1-GA</version> <scope>compile</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>3.0.1</version> <executions> <execution> <id>source-package</id> <goals> <goal>jar</goal> </goals> </execution> </executions> <configuration> <attach>true</attach> <includePom>true</includePom> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.6</version> <executions> <execution> <id>gpg-sign</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> <configuration> <keyname>871638A21A7F2C38066471420306A354336B4F0D</keyname> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.6.1</version> <configuration> <source>1.8</source> <target>1.8</target> <compilerArguments> <parameters /> </compilerArguments> </configuration> </plugin> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.6.8</version> <extensions>true</extensions> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>true</autoReleaseAfterClose> </configuration> </plugin> </plugins> </build> <pluginRepositories> <pluginRepository> <id>central</id> <name>Central Repository</name> <releases> <checksumPolicy>fail</checksumPolicy> </releases> <url>https://repo.maven.apache.org/maven2</url> </pluginRepository> </pluginRepositories> <distributionManagement> <snapshotRepository> <id>ossrh</id> <url>https://oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> <repository> <id>ossrh</id> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> </distributionManagement> <profiles> <profile> <id>sign</id> <properties> <gpg.skip>false</gpg.skip> </properties> </profile> </profiles> </project>