Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit ce47de1

Browse files
committed
fix pom file
1 parent 4b64aa3 commit ce47de1

File tree

1 file changed

+52
-3
lines changed

1 file changed

+52
-3
lines changed

pom.xml

Lines changed: 52 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11

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">
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">
34
<modelVersion>4.0.0</modelVersion>
45
<groupId>de.taimos</groupId>
56
<artifactId>gpsd4java</artifactId>
@@ -13,7 +14,7 @@
1314
<version>7</version>
1415
</parent>
1516

16-
<url>http://gpsd4java.forge.hoegergroup.de/</url>
17+
<url>http://taimos.github.com/GPSd4Java/</url>
1718
<inceptionYear>2011</inceptionYear>
1819
<organization>
1920
<name>Taimos GmbH</name>
@@ -81,6 +82,14 @@
8182
<artifactId>maven-jar-plugin</artifactId>
8283
<version>2.3.2</version>
8384
</plugin>
85+
<plugin>
86+
<artifactId>maven-source-plugin</artifactId>
87+
<version>2.1.2</version>
88+
</plugin>
89+
<plugin>
90+
<artifactId>maven-javadoc-plugin</artifactId>
91+
<version>2.8.1</version>
92+
</plugin>
8493
<plugin>
8594
<artifactId>maven-assembly-plugin</artifactId>
8695
<version>2.2.1</version>
@@ -90,6 +99,10 @@
9099
<artifactId>buildnumber-maven-plugin</artifactId>
91100
<version>1.0</version>
92101
</plugin>
102+
<plugin>
103+
<artifactId>maven-gpg-plugin</artifactId>
104+
<version>1.4</version>
105+
</plugin>
93106
</plugins>
94107
</pluginManagement>
95108

@@ -103,7 +116,30 @@
103116
<showDeprecation>true</showDeprecation>
104117
</configuration>
105118
</plugin>
106-
119+
<plugin>
120+
<artifactId>maven-source-plugin</artifactId>
121+
<executions>
122+
<execution>
123+
<id>attach-sources</id>
124+
<phase>verify</phase>
125+
<goals>
126+
<goal>jar-no-fork</goal>
127+
</goals>
128+
</execution>
129+
</executions>
130+
</plugin>
131+
<plugin>
132+
<artifactId>maven-javadoc-plugin</artifactId>
133+
<executions>
134+
<execution>
135+
<id>attach-sources</id>
136+
<phase>verify</phase>
137+
<goals>
138+
<goal>jar</goal>
139+
</goals>
140+
</execution>
141+
</executions>
142+
</plugin>
107143
<plugin>
108144
<groupId>org.codehaus.mojo</groupId>
109145
<artifactId>buildnumber-maven-plugin</artifactId>
@@ -146,6 +182,19 @@
146182
</descriptorRefs>
147183
</configuration>
148184
</plugin>
185+
<plugin>
186+
<groupId>org.apache.maven.plugins</groupId>
187+
<artifactId>maven-gpg-plugin</artifactId>
188+
<executions>
189+
<execution>
190+
<id>sign-artifacts</id>
191+
<phase>verify</phase>
192+
<goals>
193+
<goal>sign</goal>
194+
</goals>
195+
</execution>
196+
</executions>
197+
</plugin>
149198
</plugins>
150199
</build>
151200
</project>

0 commit comments

Comments
 (0)