Skip to content

Commit

Permalink
Prepare release
Browse files Browse the repository at this point in the history
  • Loading branch information
netopyr committed Feb 1, 2017
1 parent 2daabc6 commit 7b9f379
Showing 1 changed file with 49 additions and 1 deletion.
50 changes: 49 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,14 @@
<tag>HEAD</tag>
</scm>

<distributionManagement>
<repository>
<id>bintray</id>
<name>netopyr-wurmloch-crdt</name>
<url>https://api.bintray.com/maven/netopyr/wurmloch/wurmloch-crdt/;publish=1</url>
</repository>
</distributionManagement>

<build>
<plugins>
<plugin>
Expand All @@ -47,9 +55,49 @@
<target>1.8</target>
</configuration>
</plugin>
<plugin>
<artifactId>maven-release-plugin</artifactId>
<version>2.5.1</version>
<configuration>
<useReleaseProfile>false</useReleaseProfile>
<releaseProfiles>release</releaseProfiles>
<autoVersionSubmodules>true</autoVersionSubmodules>
</configuration>
</plugin>
</plugins>
</build>
<packaging>jar</packaging>

<profiles>
<profile>
<id>release</id>
<build>
<plugins>
<plugin>
<artifactId>maven-source-plugin</artifactId>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-javadoc-plugin</artifactId>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>

<dependencies>
<dependency>
Expand Down

0 comments on commit 7b9f379

Please sign in to comment.