[svn.haxx.se] · SVN Dev · SVN Users · SVN Org · TSVN Dev · TSVN Users · Subclipse Dev · Subclipse Users · this month's index

Perl modules/scripts to aid in jarring web apps?

From: Bryan Simmons <bryan.simmons_at_gmail.com>
Date: 2004-09-19 02:46:27 CEST

Hey guys,

This is a post I made to the subclipse users mailing list. It occurs
to me now that perl may be more of what I'm looking for to solve my
problem:

Hi all,

I am not sure if svnant is the right tool for my system, so I thought I'd ask.
I have a rather large web application running in WebLogic/WebSphere.
This thing is
not actually my project, but the hosting of the app is. I get updates
and customizations to the
app from the developer and I keep a current extracted .ear of the app
in subversion to make
sure there is no ambiguity in the versions of jars in the ear. Also,
I sometimes have to clean up xml files from the vendor and need to
keep such things versioned for sanity.
My problem is this: I have more than one admin who updates the ear.
With subversion they can
do it remotely or on the server. The problem is that they may have to
extract a jar that is in the
ear to do an update. Here's the process they follow:

# jar xvf elms.ear
(this creates the entire first-level structure of jars and the war)
# mkdir elms_custom_jar
#cp elms_custom.jar elms_custom_jar
#cd elms_custom_jar
#jar xvf elms_custom.jar
#rm -f elms_custom.jar
#cd ..
#svn add elms_custom_jar; svn commit -m "Committing new extraction."
(this step only occurs if this jar was never extracted for update before)
(Next they would put the updates into the jar and commit again)
#cd elms_custom_jar
#jar uvf ../elms_custom.jar <path of whatever was updated in this jar>
#cd ..
#jar uvf elms.ear elms_custom.jar

THen the ear is ready to be redeployed.
What I want to do is allow a user to check this out to their machine,
update the ear structure or files and then commit. Then I would want
svnant, or some other tool, to judge by either svn props or date what
has been updated and rejar the affected jars and then the ear.

Is this possible or am I looking at a possible candidate for perl?

<end message>

So, what do you think? Before I go digging through SVN::Web, I
thought I'd ask. The only reason I figure Perl may be a better answer
is because of the bindings and pre-build pms to to handle subversion
integration. I may end up relying on propget or some other subversion
methods to allow for more intelligent jarring of checkedout projects.

Thanks for listening!

-- 
Regards,
Bryan Simmons
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
 Always code as if the guy who ends up maintaining your code will 
 be a violent psychopath who knows where you live.
   -- Rick Osborne
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@subversion.tigris.org
For additional commands, e-mail: users-help@subversion.tigris.org
Received on Sun Sep 19 02:48:25 2004

This is an archived mail posted to the Subversion Users mailing list.

This site is subject to the Apache Privacy Policy and the Apache Public Forum Archive Policy.