Skip to content

Commit f64be3e

Browse files
committed
updated version
1 parent 50e279b commit f64be3e

File tree

5 files changed

+29
-60
lines changed

5 files changed

+29
-60
lines changed

JCL2/core/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>org.xeustechnologies</groupId>
77
<artifactId>jcl</artifactId>
8-
<version>2.4-SNAPSHOT</version>
8+
<version>2.5-SNAPSHOT</version>
99
</parent>
1010
<artifactId>jcl-core</artifactId>
1111
<name>JCL - Core</name>
@@ -102,7 +102,7 @@
102102
<dependency>
103103
<groupId>org.xeustechnologies</groupId>
104104
<artifactId>test-jcl</artifactId>
105-
<version>2.4-SNAPSHOT</version>
105+
<version>2.5-SNAPSHOT</version>
106106
<scope>test</scope>
107107
</dependency>
108108
</dependencies>

JCL2/pom.xml

Lines changed: 19 additions & 50 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<name>Jar Class Loader</name>
88
<url>http://jcloader.sourceforge.net
99
</url>
10-
<version>2.4-SNAPSHOT</version>
10+
<version>2.5-SNAPSHOT</version>
1111
<packaging>pom</packaging>
1212
<description>Jar Class Loader</description>
1313

@@ -29,6 +29,7 @@
2929
<skipTest>false</skipTest>
3030
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
3131
</properties>
32+
3233
<developers>
3334
<developer>
3435
<id>kzafar</id>
@@ -50,56 +51,14 @@
5051
</licenses>
5152
<scm>
5253
<connection>
53-
scm:svn:https://jcloader.svn.sourceforge.net/svnroot/jcloader/trunk/JCL2
54+
scm:git://github.com/kamranzafar/JCL.git
5455
</connection>
5556
<developerConnection>
56-
scm:svn:https://jcloader.svn.sourceforge.net/svnroot/jcloader/trunk/JCL2
57+
scm:git://github.com/kamranzafar/JCL.git
5758
</developerConnection>
58-
<url>https://jcloader.svn.sourceforge.net/svnroot/jcloader/trunk/JCL2
59+
<url>git://github.com/kamranzafar/JCL.git
5960
</url>
6061
</scm>
61-
<issueManagement>
62-
<system>sourceforge</system>
63-
<url>http://sourceforge.net/tracker/?group_id=177055
64-
</url>
65-
</issueManagement>
66-
<distributionManagement>
67-
<site>
68-
<id>sourceforge-jcl</id>
69-
<url>scp://shell.sourceforge.net/home/groups/j/jc/jcloader/htdocs
70-
</url>
71-
</site>
72-
</distributionManagement>
73-
<mailingLists>
74-
<mailingList>
75-
<name>JCL Development Mailing list</name>
76-
<subscribe>
77-
http://lists.sourceforge.net/mailman/listinfo/jcloader-development
78-
</subscribe>
79-
<unsubscribe>
80-
http://lists.sourceforge.net/mailman/listinfo/jcloader-development
81-
</unsubscribe>
82-
<archive>
83-
http://sourceforge.net/mailarchive/forum.php?forum_name=jcloader-development
84-
</archive>
85-
86-
</post>
87-
</mailingList>
88-
<mailingList>
89-
<name>JCL User Mailing list</name>
90-
<subscribe>
91-
http://lists.sourceforge.net/mailman/listinfo/jcloader-users
92-
</subscribe>
93-
<unsubscribe>
94-
http://lists.sourceforge.net/mailman/listinfo/jcloader-users
95-
</unsubscribe>
96-
<archive>
97-
http://sourceforge.net/mailarchive/forum.php?forum_name=jcloader-users
98-
</archive>
99-
100-
</post>
101-
</mailingList>
102-
</mailingLists>
10362
<organization>
10463
<name>Kamran Zafar</name>
10564
<url>http://kamranzafar.org</url>
@@ -113,9 +72,19 @@
11372
</extension>
11473
</extensions>
11574
<plugins>
116-
<!-- plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId>
117-
<executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals>
118-
<goal>sign</goal> </goals> </execution> </executions> </plugin -->
75+
<!-- UNCOMMENT FOR RELEASE plugin>
76+
<groupId>org.apache.maven.plugins</groupId>
77+
<artifactId>maven-gpg-plugin</artifactId>
78+
<executions>
79+
<execution>
80+
<id>sign-artifacts</id>
81+
<phase>verify</phase>
82+
<goals>
83+
<goal>sign</goal>
84+
</goals>
85+
</execution>
86+
</executions>
87+
</plugin-->
11988
<plugin>
12089
<groupId>org.apache.maven.plugins</groupId>
12190
<artifactId>maven-resources-plugin
@@ -193,7 +162,7 @@
193162
</reportSet>
194163
</reportSets>
195164
<configuration>
196-
<issueLinkTemplate>http://sourceforge.net/support/tracker.php?aid=%ISSUE% </issueLinkTemplate>
165+
<issueLinkTemplate>https://github.com/kamranzafar/JCL</issueLinkTemplate>
197166
</configuration>
198167
</plugin>
199168
<plugin>

JCL2/spring/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>org.xeustechnologies</groupId>
77
<artifactId>jcl</artifactId>
8-
<version>2.4-SNAPSHOT</version>
8+
<version>2.5-SNAPSHOT</version>
99
</parent>
1010

1111
<artifactId>jcl-spring</artifactId>
@@ -104,12 +104,12 @@
104104
<dependency>
105105
<groupId>org.xeustechnologies</groupId>
106106
<artifactId>jcl-core</artifactId>
107-
<version>2.4-SNAPSHOT</version>
107+
<version>2.5-SNAPSHOT</version>
108108
</dependency>
109109
<dependency>
110110
<groupId>org.xeustechnologies</groupId>
111111
<artifactId>test-jcl</artifactId>
112-
<version>2.4-SNAPSHOT</version>
112+
<version>2.5-SNAPSHOT</version>
113113
<scope>test</scope>
114114
</dependency>
115115
<dependency>

JCL2/test-jcl/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>org.xeustechnologies</groupId>
66
<artifactId>jcl</artifactId>
7-
<version>2.4-SNAPSHOT</version>
7+
<version>2.5-SNAPSHOT</version>
88
</parent>
99
<artifactId>test-jcl</artifactId>
1010
<name>JCL - Test JAR</name>

JCL2/test-web/pom.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>org.xeustechnologies</groupId>
77
<artifactId>jcl</artifactId>
8-
<version>2.4-SNAPSHOT</version>
8+
<version>2.5-SNAPSHOT</version>
99
</parent>
1010
<artifactId>jcltest</artifactId>
1111
<packaging>war</packaging>
@@ -79,17 +79,17 @@
7979
<dependency>
8080
<groupId>org.xeustechnologies</groupId>
8181
<artifactId>jcl-core</artifactId>
82-
<version>2.4-SNAPSHOT</version>
82+
<version>2.5-SNAPSHOT</version>
8383
</dependency>
8484
<dependency>
8585
<groupId>org.xeustechnologies</groupId>
8686
<artifactId>jcl-spring</artifactId>
87-
<version>2.4-SNAPSHOT</version>
87+
<version>2.5-SNAPSHOT</version>
8888
</dependency>
8989
<dependency>
9090
<groupId>org.xeustechnologies</groupId>
9191
<artifactId>test-jcl</artifactId>
92-
<version>2.4-SNAPSHOT</version>
92+
<version>2.5-SNAPSHOT</version>
9393
<scope>test</scope>
9494
</dependency>
9595
</dependencies>

0 commit comments

Comments
 (0)