tia-junit4-perforce-maven-plugin
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.tiatesting</groupId> <artifactId>tia-junit4-perforce-maven-plugin</artifactId> <version>0.1.6</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/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>org.tiatesting</groupId> <artifactId>tia-junit4-perforce-maven-plugin</artifactId> <version>0.1.6</version> <packaging>maven-plugin</packaging> <name>Tia Junit4 Perforce Maven Plugin</name> <description>The Tia Testing Maven Plugin provides the Tia Testing runtime agent to your tests. This plugin is built for Junit4 and Perforce version control projects.</description> <url>github.com/mtgleeson/tiatesting</url> <licenses> <license> <name>The Apache License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> </license> </licenses> <developers> <developer> <id>mtgleeson</id> <name>Matt Gleeson</name> </developer> </developers> <scm> <connection>scm:git:git://github.com/mtgleeson/tiatesting.git</connection> <developerConnection>scm:git:ssh://github.com/mtgleeson/tiatesting.git</developerConnection> <url>github.com/mtgleeson/tiatesting</url> </scm> <properties> <tia.version>0.1.6</tia.version> <maven.compiler.target>1.8</maven.compiler.target> <maven.compiler.source>1.8</maven.compiler.source> </properties> <prerequisites> <maven>3.0.0</maven> </prerequisites> <dependencies> <dependency> <groupId>org.tiatesting</groupId> <artifactId>tia-maven-plugin</artifactId> <version>${tia.version}</version> </dependency> <dependency> <groupId>org.tiatesting</groupId> <artifactId>tia-vcs-perforce</artifactId> <version>${tia.version}</version> </dependency> <dependency> <groupId>org.tiatesting</groupId> <artifactId>tia-junit4-agent</artifactId> <version>${tia.version}</version> <classifier>runtime</classifier> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-plugin-api</artifactId> <version>3.6.3</version> </dependency> <dependency> <groupId>org.apache.maven.plugin-tools</groupId> <artifactId>maven-plugin-annotations</artifactId> <version>3.6.0</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-project</artifactId> <version>2.2.1</version> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>3.3.1</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>3.6.3</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.5</version> <configuration> <gpgArguments> <arg>--pinentry-mode</arg> <arg>loopback</arg> </gpgArguments> </configuration> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.sonatype.central</groupId> <artifactId>central-publishing-maven-plugin</artifactId> <version>0.4.0</version> <extensions>true</extensions> <configuration> <publishingServerId>central</publishingServerId> <tokenAuth>true</tokenAuth> </configuration> </plugin> </plugins> <pluginManagement> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-plugin-plugin</artifactId> <version>3.6.0</version> <executions> <execution> <id>help-mojo</id> <goals> <!-- good practice is to generate help mojo for plugin --> <goal>helpmojo</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-site-plugin</artifactId> <version>3.8.2</version> </plugin> </plugins> </pluginManagement> </build> <reporting> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-plugin-plugin</artifactId> <reportSets> <reportSet> <reports> <report>report</report> </reports> </reportSet> </reportSets> </plugin> </plugins> </reporting> </project>