Skip to content

Commit

Permalink
fix pom for maven release; bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
pwilkniss committed Oct 1, 2017
1 parent 8a40435 commit d7c3593
Show file tree
Hide file tree
Showing 2 changed files with 41 additions and 5 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,5 @@ buildNumber.properties
.classpath
.project
.settings/
.idea
*.iml
44 changes: 39 additions & 5 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@
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>

<groupId>com.clevertap</groupId>
<artifactId>http2-apns</artifactId>
<version>1.0.1</version>
<groupId>com.clevertap.apns</groupId>
<artifactId>apns-http2</artifactId>
<version>1.0.2</version>

<name>${project.groupId}:${project.artifactId}</name>
<name>apns-http2</name>
<description>A library for communicating with the Apple Push Gateway in HTTP/2.</description>
<url>https://github.com/CleverTap/apns-http2</url>

Expand Down Expand Up @@ -49,9 +49,43 @@
<target>1.8</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>2.1.2</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.7</version>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>

<distributionManagement>
<repository>
<id>bintray-clevertap-Maven</id>
<name>clevertap-Maven</name>
<url>https://api.bintray.com/maven/clevertap/Maven/apns-http2/;publish=1</url>
</repository>
</distributionManagement>

<scm>
<connection>scm:git:git://github.com/CleverTap/apns-http2.git</connection>
<developerConnection>scm:git:ssh://github.com:CleverTap/apns-http2.git</developerConnection>
Expand All @@ -73,4 +107,4 @@
<url>https://opensource.org/licenses/BSD-3-Clause</url>
</license>
</licenses>
</project>
</project>

0 comments on commit d7c3593

Please sign in to comment.