Skip to content

Commit

Permalink
Metadata and Maven Distribution Plugins
Browse files Browse the repository at this point in the history
  • Loading branch information
rhwood committed Oct 31, 2016
1 parent 083b40c commit 2f3885a
Showing 1 changed file with 67 additions and 2 deletions.
69 changes: 67 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,15 @@
<artifactId>jsplitbutton</artifactId>
<version>1.3-SNAPSHOT</version>
<packaging>jar</packaging>
<name>JSplitButton</name>
<description>Swing implementation of a split button and JavaBean information for using it in an IDE.</description>
<url>http://rhwood.github.io/jsplitbutton</url>

<licenses>
<license>
<name>The GNU General Public License, Version 2.0</name>
<url>https://www.gnu.org/licenses/gpl-2.0.html</url>
</license>
</licenses>
<scm>
<connection>scm:git:https://github.com/rhwood/jsplitbutton.git</connection>
<developerConnection>scm:git:https://github.com/rhwood/jsplitbutton.git</developerConnection>
Expand All @@ -31,6 +38,14 @@
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
</distributionManagement>
<developers>
<developer>
<name>Randall Wood</name>
<email>[email protected]</email>
<organization>SRandall Wood DBA Alexandria Software</organization>
<organizationUrl>http://alexandriasoftware.com</organizationUrl>
</developer>
</developers>

<build>
<pluginManagement>
Expand All @@ -54,6 +69,46 @@
<showDeprecation>true</showDeprecation>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>2.2.1</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.9.1</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.6</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>com.github.github</groupId>
<artifactId>site-maven-plugin</artifactId>
Expand All @@ -71,14 +126,24 @@
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>1.6.7</version>
<extensions>true</extensions>
<configuration>
<serverId>ossrh</serverId>
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
<autoReleaseAfterClose>false</autoReleaseAfterClose>
</configuration>
</plugin>
</plugins>
</build>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>1.5</maven.compiler.source>
<maven.compiler.target>1.5</maven.compiler.target>
</properties>
<name>JSplitButton</name>
<dependencies>
<dependency>
<groupId>junit</groupId>
Expand Down

0 comments on commit 2f3885a

Please sign in to comment.