aerial-maven-plugin
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.github.mkolisnyk</groupId>
<artifactId>aerial-maven-plugin</artifactId>
<version>0.0.6.1</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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<artifactId>aerial-maven-plugin</artifactId>
<version>0.0.6.1</version>
<packaging>maven-plugin</packaging>
<name>Aerial Maven Plugin</name>
<parent>
<groupId>com.github.mkolisnyk</groupId>
<artifactId>aerial-toolset</artifactId>
<version>0.0.6.1</version>
</parent>
<scm>
<connection>scm:git:git@github.com:mkolisnyk/aerial.git</connection>
<developerConnection>scm:git:git@github.com:mkolisnyk/aerial.git</developerConnection>
<url>https://github.com/mkolisnyk/aerial.git</url>
<tag>HEAD</tag>
</scm>
<properties>
<scm.repository.name>aerial</scm.repository.name>
<maven.site.dryrun>false</maven.site.dryrun>
<release.preparation.goals>package install</release.preparation.goals>
<fail.findbugs>false</fail.findbugs>
</properties>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.18.1</version>
<dependencies>
<dependency>
<groupId>org.apache.maven.surefire</groupId>
<artifactId>surefire-junit47</artifactId>
<version>2.18.1</version>
</dependency>
</dependencies>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>2.5</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId>
<version>2.10</version>
<configuration>
<configLocation>./sun_checks.xml</configLocation>
<suppressionsLocation>./checkstyle-suppressions.xml</suppressionsLocation>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>2.5.1</version>
<configuration>
<tagNameFormat>@{project.artifactId}-@{project.version}</tagNameFormat>
<preparationGoals>${release.preparation.goals}</preparationGoals>
<scmCommentPrefix>#42'[ci skip]'</scmCommentPrefix>
</configuration>
<executions>
<execution>
<phase>release</phase>
<goals>
<goal>perform</goal>
</goals>
<configuration>
<pomFileName>aerial-maven-plugin/pom.xml</pomFileName>
<localCheckout>true</localCheckout>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>1.1</version>
<executions>
<execution>
<id>default-deploy</id>
<phase>deploy</phase>
<goals>
<goal>deploy</goal>
</goals>
</execution>
</executions>
<configuration>
<serverId>sonatype-nexus-staging</serverId>
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
<skipLocalStaging>true</skipLocalStaging>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>com.github.mkolisnyk</groupId>
<artifactId>aerial</artifactId>
<version>0.0.6.1</version>
</dependency>
<dependency>
<groupId>com.github.kristofa</groupId>
<artifactId>mock-http-server</artifactId>
<version>4.1</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>