Skip to content

Commit

Permalink
Updating POM to deploy v1.2.4 to Maven.
Browse files Browse the repository at this point in the history
  • Loading branch information
jesterpm committed Mar 3, 2015
1 parent 51d4868 commit 47485f2
Show file tree
Hide file tree
Showing 2 changed files with 128 additions and 1 deletion.
46 changes: 46 additions & 0 deletions RELEASING.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
RELEASING
=========

This file outlines how to publish a new release to Maven Central.

Prerequisites
-------------

* You will need the Carbonado GPG key and passphrase to continue. Contact
@jesterpm or @broneill to obtain them.

* You will need an account with Sonatype Nexus. You can create that
[here](https://issues.sonatype.org/secure/Signup!default.jspa). Contact
@jesterpm or @broneill for access to the Cojen repository.

Process
-------

1. Increment the version number appropriately.
Use [Semantic Versioning](http://semver.org/).

VERSION=1.2.4
mvn versions:set -DnewVersion=$VERSION

2. Verify the release and make sure all is well.

mvn clean verify -P release

3. Commit and tag the latest release.

git commit -am "Release $VERSION"
git tag -a v$VERSION -m "Release $VERSION"

4. Deploy to Sonatype:

mvn clean deploy -P release

5. Push commit and tag to GitHub

git push origin master
git push origin v$VERSION

6. Create a new Releases on GitHub. Use the tag you just created and optionally
include a change log. Attach the compiled, sources, and javadoc jar files,
along with the .asc signature files.

83 changes: 82 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<artifactId>carbonado</artifactId>
<packaging>jar</packaging>
<name>Carbonado</name>
<version>1.2.3</version>
<version>1.2.4</version>
<description>
Extensible, high performance persistence abstraction layer for Java applications with a relational view to the underlying persistence technology.
</description>
Expand Down Expand Up @@ -195,11 +195,37 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.0</version>
<configuration>
<source>1.5</source>
<target>1.5</target>
</configuration>
</plugin>

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.9.1</version>
<configuration>
<javadocVersion>1.7</javadocVersion>
<detectJavaApiLink>false</detectJavaApiLink>
<links>
<link>http://docs.oracle.com/javase/7/docs/api</link>
</links>
<notimestamp>true</notimestamp>
</configuration>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
<configuration>
<additionalparam>-Xdoclint:none</additionalparam>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>

Expand Down Expand Up @@ -276,4 +302,59 @@
</plugin>
</plugins>
</reporting>

<profiles>
<profile>
<id>release</id>
<build>
<plugins>

<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-gpg-plugin</artifactId>
<version>1.5</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
<configuration>
<keyname>2753E2C6</keyname>
</configuration>
</execution>
</executions>
</plugin>

<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>1.6.3</version>
<extensions>true</extensions>
<configuration>
<serverId>ossrh</serverId>
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
<autoReleaseAfterClose>true</autoReleaseAfterClose>
</configuration>
</plugin>

</plugins>
</build>
</profile>
</profiles>
</project>

0 comments on commit 47485f2

Please sign in to comment.