On 19/11/08 12:35, Helder Magalhães wrote:
Please consider contributing improvements to bug reports (updated
attachments or patches, for example) if you need make some changes to
the information (which may slightly outdated).

I guess that I didn't ask the right question as most of what is required to 
deploy batik with maven is already provided. I just needed to use the maven 
target in the ant file. After running that I found the pom.xml files and the 
jar files in batik-1.8pre/maven/*/1.8pre/. Then with a little script (see 
below) I was able to deploy to my local maven repository. Does that seem right?

Stuart

#!/bin/sh -e
version=1.8pre
cd $HOME/eclipse/xml-batik/batik-${version}/maven
for i in *
do
        (
        cd $i/${version}
        mvn $args \
                -Durl=http://maven:8080/archiva/repository/internal \
                -DrepositoryId=archiva.internal \
                -Dfile=$i-${version}.jar \
                -DpomFile=$i-${version}.pom \
                -DgroupId=org.apache.xmlgraphics \
                -DartifactId=$i \
                -Dversion=$version \
                -DgeneratePom=false \
                deploy:deploy-file
        )
done

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to