Hacker News new | ask | show | jobs
by harrywye 5135 days ago
Oh, man. Seems like they are releasing a new version every other week. I should come up with a better way to "automatically" upgrade my build scripts (and, I have many of them) in some way.... Good new and bad news for me. :)
2 comments

would love to collab with you on your build scripts, hit me up at http://twitter.com/gregorynich
Not much of a build script, really. I used to (and, still do, for a limited purposes) use ant script to copy GAE jar files to war dir. (Now, Eclipse plugin seems to do that for me.) In any case, the relevant part is as follows (which used to have hard-coded SDK dir). I changed it last night to use "environment" var, GAESDK_HOME.

    ...
    <property environment="myenv" />
    <property name="gae.sdk.dir" value="${myenv.GAESDK_HOME}"/>
    ...
    <target name="copyGAEJars">
        <copy todir="${warLibDir}" overwrite="true" flatten="true">
		    <fileset dir ="${gae.sdk.dir}/lib/user">
			    <include name="**/*.jar" />
			</fileset>
		</copy>
    </target>
    ....
Updates are about once a month.