Skip to content
This repository has been archived by the owner on Dec 16, 2021. It is now read-only.

Commit

Permalink
Merge pull request #71 from csciuto/master
Browse files Browse the repository at this point in the history
Should actually be 4.2.0
  • Loading branch information
csciuto committed Jun 26, 2015
2 parents 23e1b21 + d509b20 commit 1be29fb
Showing 1 changed file with 91 additions and 2 deletions.
93 changes: 91 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,28 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.constantcontact</groupId>
<artifactId>constantcontact</artifactId>
<version>4.1.1</version>
<version>4.2.0</version>

<name>Constant Contact Java SDK</name>
<description>Constant Contact Java SDK</description>
<url>http://developer.constantcontact.com</url>
<licenses>
<license>
<name>MIT License</name>
<url>https://github.com/constantcontact/java-sdk/blob/master/license.txt</url>
</license>
</licenses>
<scm>
<connection>https://github.com/constantcontact/java-sdk.git</connection>
<url>https://github.com/constantcontact/java-sdk</url>
</scm>
<developers>
<developer>
<name>Constant Contact Web Services</name>
<email>[email protected]</email>
</developer>
</developers>

<dependencies>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
Expand Down Expand Up @@ -39,6 +60,39 @@
<scope>test</scope>
</dependency>
</dependencies>
<distributionManagement>
<snapshotRepository>
<id>ossrh</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
</distributionManagement>

<profiles>
<profile>
<id>sign</id>
<activation>
<activeByDefault>false</activeByDefault>
</activation>
<build>
<plugins>
<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>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
<build>
<finalName>${project.artifactId}</finalName>
<plugins>
Expand All @@ -54,6 +108,19 @@
</execution>
</executions>
</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-compiler-plugin</artifactId>
Expand All @@ -70,7 +137,7 @@
<configuration>
<encoding>UTF-8</encoding>
</configuration>
</plugin>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
Expand Down Expand Up @@ -119,6 +186,28 @@
</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>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>2.5</version>
<configuration>
<autoVersionSubmodules>true</autoVersionSubmodules>
<useReleaseProfile>false</useReleaseProfile>
<releaseProfiles>release</releaseProfiles>
<goals>deploy</goals>
</configuration>
</plugin>
</plugins>
</build>
</project>

0 comments on commit 1be29fb

Please sign in to comment.