Skip to content

Commit f650c28

Browse files
author
Karl M. Davis
committed
Updated the SCM and deployment details.
The POM is now setup to use the wagon-svn plugin to deploy directly to the Google Code SVN repository. In addition, the SCM information was set to point to the github repository.
1 parent cc62ca9 commit f650c28

File tree

1 file changed

+24
-14
lines changed

1 file changed

+24
-14
lines changed

ksoap2/ksoap2/pom.xml

+24-14
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,11 @@
1515
<url>http://code.google.com/p/ksoap2-android/</url>
1616
<inceptionYear>2002</inceptionYear>
1717

18-
<!--
1918
<scm>
20-
<connection>scm:git:TODO</connection>
21-
<developerConnection>scm:svn:TODO</developerConnection>
22-
<url>TODO</url>
19+
<connection>scm:git:git://github.com/karlmdavis/ksoap2-android.git</connection>
20+
<developerConnection>scm:git:[email protected]:karlmdavis/ksoap2-android.git</developerConnection>
21+
<url>http://github.com/karlmdavis/ksoap2-android/tree/master</url>
2322
</scm>
24-
-->
2523

2624
<issueManagement>
2725
<system>Google Code</system>
@@ -38,15 +36,12 @@
3836
<module>ksoap2-samples-axis</module>
3937
<module>ksoap2-servlet</module>
4038
</modules>
41-
39+
4240
<distributionManagement>
4341
<repository>
44-
<!-- Google Code does not have any Maven repository hosting.
45-
Instead, we'll deploy to a "m2-repo" sub-directory of a local SVN working copy, which can
46-
be committed to push it onto the intertubes. -->
47-
<id>karlmdavis_ksoap2-android.svn</id>
48-
<name>karlmdavis_ksoap2-android.svn</name>
49-
<url>file:///home/karl/workspaces/ksoap2/ksoap2-android.svn/m2-repo</url>
42+
<uniqueVersion>false</uniqueVersion>
43+
<id>googlecode</id>
44+
<url>svn:https://ksoap2-android.googlecode.com/svn/m2-repo</url>
5045
</repository>
5146
</distributionManagement>
5247
<repositories>
@@ -55,6 +50,11 @@
5550
<name>googlecode-ksoap2-android</name>
5651
<url>http://ksoap2-android.googlecode.com/svn/m2-repo</url>
5752
</repository>
53+
<repository>
54+
<id>maven2-repository.dev.java.net</id>
55+
<name>Java.net Repository for Maven</name>
56+
<url>http://download.java.net/maven/2/</url>
57+
</repository>
5858
</repositories>
5959
<pluginRepositories>
6060
<pluginRepository>
@@ -259,7 +259,7 @@
259259
</dependencyManagement>
260260
<dependencies>
261261
</dependencies>
262-
262+
263263
<build>
264264
<sourceDirectory>src/main/java</sourceDirectory>
265265
<testSourceDirectory>src/test/java</testSourceDirectory>
@@ -268,7 +268,10 @@
268268
<filtering>false</filtering>
269269
<directory>src/main/java</directory>
270270
<includes>
271-
<!-- This override of the defaults is necessary to ensure that *.jdo, *.html, etc. files are included in builds and jars. -->
271+
<!--
272+
This override of the defaults is necessary to ensure that *.jdo,
273+
*.html, etc. files are included in builds and jars.
274+
-->
272275
<include>**</include>
273276
</includes>
274277
<excludes>
@@ -284,6 +287,13 @@
284287
<directory>src/test/resources</directory>
285288
</testResource>
286289
</testResources>
290+
<extensions>
291+
<extension>
292+
<groupId>org.jvnet.wagon-svn</groupId>
293+
<artifactId>wagon-svn</artifactId>
294+
<version>1.8</version>
295+
</extension>
296+
</extensions>
287297
<pluginManagement>
288298
<plugins>
289299
<plugin>

0 commit comments

Comments
 (0)