Skip to content
This repository was archived by the owner on Jun 24, 2025. It is now read-only.

Commit 5ab2e53

Browse files
committed
Added Bintray to POM.
1 parent afa17ee commit 5ab2e53

File tree

1 file changed

+48
-1
lines changed

1 file changed

+48
-1
lines changed

pom.xml

Lines changed: 48 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,12 +41,52 @@
4141
<plugin>
4242
<groupId>org.apache.maven.plugins</groupId>
4343
<artifactId>maven-compiler-plugin</artifactId>
44-
<version>3.1</version>
44+
<version>3.3</version>
4545
<configuration>
4646
<source>${java.version}</source>
4747
<target>${java.version}</target>
4848
</configuration>
4949
</plugin>
50+
<plugin>
51+
<groupId>org.apache.maven.plugins</groupId>
52+
<artifactId>maven-source-plugin</artifactId>
53+
<version>2.4</version>
54+
<executions>
55+
<execution>
56+
<id>attach-sources</id>
57+
<goals>
58+
<goal>jar-no-fork</goal>
59+
</goals>
60+
</execution>
61+
</executions>
62+
</plugin>
63+
<plugin>
64+
<groupId>org.apache.maven.plugins</groupId>
65+
<artifactId>maven-javadoc-plugin</artifactId>
66+
<version>2.10.3</version>
67+
<executions>
68+
<execution>
69+
<id>attach-javadocs</id>
70+
<goals>
71+
<goal>jar</goal>
72+
</goals>
73+
</execution>
74+
</executions>
75+
</plugin>
76+
<plugin>
77+
<groupId>org.apache.maven.plugins</groupId>
78+
<artifactId>maven-gpg-plugin</artifactId>
79+
<version>1.6</version>
80+
<executions>
81+
<execution>
82+
<id>sign-artifacts</id>
83+
<phase>verify</phase>
84+
<goals>
85+
<goal>sign</goal>
86+
</goals>
87+
</execution>
88+
</executions>
89+
</plugin>
5090
</plugins>
5191
</build>
5292
<dependencies>
@@ -78,4 +118,11 @@
78118
</dependency>
79119
</dependencies>
80120

121+
<distributionManagement>
122+
<repository>
123+
<id>bintray</id>
124+
<url>https://api.bintray.com/maven/devsu/maven/push-sender/;publish=1</url>
125+
</repository>
126+
</distributionManagement>
127+
81128
</project>

0 commit comments

Comments
 (0)