Maven Evangelism

Spring 1.2.7 POMs Missing

Details

  • Type: Bug Bug
  • Status: Closed Closed
  • Resolution: Fixed
  • Component/s: Missing POM
  • Labels:
    None
  • Group ID:
    org.springframework
  • Version:
    1.2.7

Description

All Spring 1.2.7 jars need POMs added. POMs should be duplicates of Spring 1.2.6 but with the following other MEV issues taken into account: http://jira.codehaus.org/browse/MEV-316 and http://jira.codehaus.org/browse/MEV-277

Issue Links

Activity

Hide
Stephen Duncan Jr added a comment -
Show
Stephen Duncan Jr added a comment - Added http://opensource2.atlassian.com/projects/spring/browse/SPR-1810 in Spring JIRA.
Hide
Stephen Duncan Jr added a comment -

I know it'd be advantageous to have the Spring folks manage the spring jars, etc., but considering the lack of movement on this issue, can't this be resolved without them as prior versions have?

Show
Stephen Duncan Jr added a comment - I know it'd be advantageous to have the Spring folks manage the spring jars, etc., but considering the lack of movement on this issue, can't this be resolved without them as prior versions have?
Hide
Carlos Sanchez added a comment -

ok, if you can provide them with that fixes and updated versions ( see http://cvs.sourceforge.net/viewcvs.py/springframework/spring/lib/readme.txt?r1=1.82&r2=1.82.2.5 ) I will upload them.

I just need a zip, tgz,... with the poms+md5+sha1 in the correct directory structure

Show
Carlos Sanchez added a comment - ok, if you can provide them with that fixes and updated versions ( see http://cvs.sourceforge.net/viewcvs.py/springframework/spring/lib/readme.txt?r1=1.82&r2=1.82.2.5 ) I will upload them. I just need a zip, tgz,... with the poms+md5+sha1 in the correct directory structure
Hide
Jared Bunting added a comment -

I've attached this zip with updated poms for 1.2.7. Basically I've done exactly what's in this issue - replace all spring 1.2.6 references with spring 1.2.7 added all of the optional tags recommended. If Stephen wants to look at what I've got here to see if it fits his requirements prior to the uploading, that would be great.

Show
Jared Bunting added a comment - I've attached this zip with updated poms for 1.2.7. Basically I've done exactly what's in this issue - replace all spring 1.2.6 references with spring 1.2.7 added all of the optional tags recommended. If Stephen wants to look at what I've got here to see if it fits his requirements prior to the uploading, that would be great.
Hide
Stephen Duncan Jr added a comment -

Jared, you still need to take into account updates to version numbers based on Carlos's link. If you tell me how to generate the md5&sha1 files, I can go through and do it, or I can tell you exactly which POMs need to change (after I search through and figure it out!), or you can figure those out too. Let me know. Thanks for your help so far!

Show
Stephen Duncan Jr added a comment - Jared, you still need to take into account updates to version numbers based on Carlos's link. If you tell me how to generate the md5&sha1 files, I can go through and do it, or I can tell you exactly which POMs need to change (after I search through and figure it out!), or you can figure those out too. Let me know. Thanks for your help so far!
Hide
Stephen Duncan Jr added a comment -

Changes to make, all in spring-parent, all version changes:

C3P0 0.9.0.4 is not available in the Maven repo. I'd recommend to leave it at C3P0 0.9.0.2 Carlos?

"easymock:easymock" change from "1.2_RC2_Java1.3" to "1.2_Java1.3t"
"ibatis:ibatis2-sqlmap" change from "2.1.5.582" to "2.1.7.597"
"commons-httpclient:commons-httpclient" change from "3.0-rc4" to "3.0"
"log4j:log4j" change from "1.2.9" to "1.2.13"
"ojb:db-ojb" change from "1.0.3" to "1.0.4"
"struts:struts" change from "1.2.7" to "1.2.8" (though 1.2.9 appears to the latest release)
"velocity-tools:velocity-tools-view" change from "1.1" to "1.2"
"velocity-tools:velocity-tools-generic" change from "1.1" to "1.2"

Show
Stephen Duncan Jr added a comment - Changes to make, all in spring-parent, all version changes: C3P0 0.9.0.4 is not available in the Maven repo. I'd recommend to leave it at C3P0 0.9.0.2 Carlos? "easymock:easymock" change from "1.2_RC2_Java1.3" to "1.2_Java1.3t" "ibatis:ibatis2-sqlmap" change from "2.1.5.582" to "2.1.7.597" "commons-httpclient:commons-httpclient" change from "3.0-rc4" to "3.0" "log4j:log4j" change from "1.2.9" to "1.2.13" "ojb:db-ojb" change from "1.0.3" to "1.0.4" "struts:struts" change from "1.2.7" to "1.2.8" (though 1.2.9 appears to the latest release) "velocity-tools:velocity-tools-view" change from "1.1" to "1.2" "velocity-tools:velocity-tools-generic" change from "1.1" to "1.2"
Hide
Stephen Duncan Jr added a comment -

Note that it should be (without the the 't' in the version #):

"easymock:easymock" change from "1.2_RC2_Java1.3" to "1.2_Java1.3"

Show
Stephen Duncan Jr added a comment - Note that it should be (without the the 't' in the version #): "easymock:easymock" change from "1.2_RC2_Java1.3" to "1.2_Java1.3"
Hide
Carlos Sanchez added a comment -

If it builds with C3P0 0.9.0.4 it has to depend on it. It needs to be uploaded

Show
Carlos Sanchez added a comment - If it builds with C3P0 0.9.0.4 it has to depend on it. It needs to be uploaded
Hide
Jared Bunting added a comment -

I can make these changes tomorrow, probably early afternoon. I used a basic ant script to generate the checksums - something like this...

<project>
<fileset id="poms" dir="${basedir}">
<include name="*/.pom"/>
</fileset>
<target name="checksum">
<checksum algorithm="md5">
<fileset refid="poms"/>
</checksum>
<checksum algorithm="sha1">
<fileset refid="poms"/>
</checksum>
</target>
</project>

Show
Jared Bunting added a comment - I can make these changes tomorrow, probably early afternoon. I used a basic ant script to generate the checksums - something like this... <project> <fileset id="poms" dir="${basedir}"> <include name="*/.pom"/> </fileset> <target name="checksum"> <checksum algorithm="md5"> <fileset refid="poms"/> </checksum> <checksum algorithm="sha1"> <fileset refid="poms"/> </checksum> </target> </project>
Hide
Jared Bunting added a comment -

I've made the version changes that you noted. I've also done the C3P0 change. Obviously, this won't be very productive until the 0.9.0.4 version is uploaded.

Show
Jared Bunting added a comment - I've made the version changes that you noted. I've also done the C3P0 change. Obviously, this won't be very productive until the 0.9.0.4 version is uploaded.
Hide
Stephen Duncan Jr added a comment -
Show
Stephen Duncan Jr added a comment - Well, I put in an issue at the c3p0 site to do the upload: http://sourceforge.net/tracker/index.php?func=detail&aid=1480831&group_id=25357&atid=383691
Hide
Oliver Siegmar added a comment -

spring-full 1.2.7 is still missing

Show
Oliver Siegmar added a comment - spring-full 1.2.7 is still missing

People

Vote (5)
Watch (6)

Dates

  • Created:
    Updated:
    Resolved: