Skip to content

Commit 15ece02

Browse files
committed
Update pom with bintray
1 parent df524bb commit 15ece02

File tree

1 file changed

+31
-3
lines changed

1 file changed

+31
-3
lines changed

pom.xml

Lines changed: 31 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
<?xml version="1.0"?>
2-
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3-
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
2+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
43

54
<modelVersion>4.0.0</modelVersion>
65

@@ -21,6 +20,12 @@
2120
</license>
2221
</licenses>
2322

23+
<properties>
24+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
25+
<bintray.repo>devgrok/maven</bintray.repo>
26+
<bintray.package>vtd-xml</bintray.package>
27+
</properties>
28+
2429
<developers>
2530
<developer>
2631
<id>jzhang</id>
@@ -35,7 +40,7 @@
3540
<scm>
3641
<url>https://github.com/devgrok/vtd-xml</url>
3742
<developerConnection>scm:git:https://github.com/devgrok/vtd-xml.git</developerConnection>
38-
<tag>vtd-xml-2.11.devgrok-1</tag>
43+
<tag>branch-2.11</tag>
3944
</scm>
4045

4146
<build>
@@ -49,6 +54,20 @@
4954
<target>1.6</target>
5055
</configuration>
5156
</plugin>
57+
<plugin>
58+
<groupId>org.apache.maven.plugins</groupId>
59+
<artifactId>maven-javadoc-plugin</artifactId>
60+
<version>2.9.1</version>
61+
<configuration>
62+
<failOnError>false</failOnError>
63+
<additionalparam>-Xdoclint:none</additionalparam>
64+
</configuration>
65+
</plugin>
66+
<plugin>
67+
<groupId>org.apache.maven.plugins</groupId>
68+
<artifactId>maven-release-plugin</artifactId>
69+
<version>2.5.1</version>
70+
</plugin>
5271
</plugins>
5372
</build>
5473

@@ -64,5 +83,14 @@
6483
<version>4.12</version>
6584
</dependency>
6685
</dependencies>
86+
87+
<distributionManagement>
88+
<repository>
89+
<id>bintray</id>
90+
<name>dintray.com maven</name>
91+
<url>https://api.bintray.com/maven/${bintray.repo}/${bintray.package}</url>
92+
<uniqueVersion>false</uniqueVersion>
93+
</repository>
94+
</distributionManagement>
6795
</project>
6896

0 commit comments

Comments
 (0)