wti-maven-plugin
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.nouveauxterritoires.maven</groupId>
<artifactId>wti-maven-plugin</artifactId>
<version>0.10</version>
</dependency><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>com.nouveauxterritoires.maven</groupId> <artifactId>wti-maven-plugin</artifactId> <packaging>maven-plugin</packaging> <version>0.10</version> <parent> <groupId>org.sonatype.oss</groupId> <artifactId>oss-parent</artifactId> <version>7</version> </parent> <name>wti-maven-plugin Maven Mojo</name> <url>https://github.com/teger/wti-maven-plugin</url> <licenses> <license> <name>The Gnu Public Licence, Version 3.0</name> <url>http://www.gnu.org/licenses/quick-guide-gplv3.en.html</url> <distribution>repo</distribution> </license> </licenses> <scm> <connection>scm:git:git@github.com:teger/wti-maven-plugin.git</connection> <developerConnection>scm:git:git@github.com:teger/wti-maven-plugin.git</developerConnection> <url>git@github.com:teger/wti-maven-plugin.git</url> </scm> <developers> <developer> <id>teger</id> <name>Julien Redondo</name> <email>julien@redondo.fr</email> </developer> </developers> <dependencies> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-plugin-api</artifactId> <version>2.0</version> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.10</version> <scope>test</scope> </dependency> <dependency> <groupId>org.jfrog.maven.annomojo</groupId> <artifactId>maven-plugin-anno</artifactId> <version>1.4.1</version> </dependency> <dependency> <groupId>org.apache.httpcomponents</groupId> <artifactId>httpclient</artifactId> <version>4.3.1</version> </dependency> <dependency> <groupId>org.apache.httpcomponents</groupId> <artifactId>httpmime</artifactId> <version>4.3.1</version> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-plugin-plugin</artifactId> <version>2.9</version> <dependencies> <dependency> <groupId>org.jfrog.maven.annomojo</groupId> <artifactId>maven-plugin-tools-anno</artifactId> <version>1.4.1</version> <scope>runtime</scope> </dependency> </dependencies> </plugin> </plugins> </build> <profiles> <profile> <id>release-sign-artifacts</id> <activation> <property> <name>performRelease</name> <value>true</value> </property> </activation> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.1</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> <!-- AVOID RELEASE REPOSITORY/PLUGINREPOSITORY: <repositories></repositories> <pluginRepositories></pluginRepositories> --> </project>