jvanzyl 02/03/15 15:37:44
Added: src/install Copy of maven.iap build.xml deploy-installers.sh
Log:
Some stuff to help me out with the installer and the IA file itself
for safe keeping.
Revision Changes Path
No revision
No revision
No revision
1.1 jakarta-turbine-maven/src/install/build.xml
Index: build.xml
===================================================================
<?xml version="1.0"?>
<project name="maven" default="install" basedir=".">
<property file="${user.home}/build.properties"/>
<target name="install">
<!-- Need to do this right now because the Enterprise Version
of InstallAnywhere seems to have difficulty making
directories. Not bad for 2500 bucks. You probably need
the SuperEnterprise Version to get directories made
correctly. Qualtiy commercial software strikes again.
-->
<mkdir dir="${lib.repo}"/>
<copy todir="${lib.repo}">
<fileset dir=".">
<include name="*.jar"/>
</fileset>
</copy>
</target>
</project>
1.1 jakarta-turbine-maven/src/install/deploy-installers.sh
Index: deploy-installers.sh
===================================================================
#!/bin/sh
IDIR=~/ia/maven_Web_Installers/InstData
DEST=apache.org:~/public_html/maven
scp $IDIR/MacOSX/maven-install.sit $DEST
# Tweak the unix name as IA munges it.
scp $IDIR/Unix/Others/maveninstall.bin $DEST/maven-install.bin
scp $IDIR/Windows/NoVM/maven-install.exe $DEST
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>