Author: adamw
Date: 2008-08-30 04:02:08 -0400 (Sat, 30 Aug 2008)
New Revision: 133
Modified:
trunk/
trunk/build.xml
Log:
Small build fix - externalizing the project.version property
Property changes on: trunk
___________________________________________________________________
Name: svn:ignore
- target
build
dist
doc
+ build.properties
target
build
dist
doc
Modified: trunk/build.xml
===================================================================
--- trunk/build.xml 2008-08-30 07:58:01 UTC (rev 132)
+++ trunk/build.xml 2008-08-30 08:02:08 UTC (rev 133)
@@ -2,8 +2,12 @@
<project name="versioning" default="build-32"
basedir=".">
<!-- Properties -->
+ <!-- Give user a chance to override without editing this file or typing -D -->
+ <!-- project.version should be set in this file -->
+ <property file="${basedir}/build.properties" />
+
<property name="project.name" value="envers"/>
- <property name="project.version" value="1.0.0.ga"/>
+ <property name="project.version" value="1.1.0.ga"/>
<property name="hibernate.32.version" value=""/>
<property name="hibernate.33.version"
value="-hibernate-3.3"/>
@@ -136,6 +140,8 @@
<javac classpathref="build.main32.classpath"
destdir="${build.main.dir}"
debug="true"
+ target="1.5"
+ source="1.5"
nowarn="on">
<src path="${src.main.dir}" />
</javac>
@@ -145,6 +151,8 @@
<javac classpathref="build.main32.classpath"
destdir="${build.main.dir}"
debug="true"
+ target="1.5"
+ source="1.5"
nowarn="on">
<src path="${src.main32.dir}" />
</javac>
@@ -154,6 +162,8 @@
<javac classpathref="build.main33.classpath"
destdir="${build.main.dir}"
debug="true"
+ target="1.5"
+ source="1.5"
nowarn="on">
<src path="${src.main33.dir}" />
</javac>
@@ -166,6 +176,8 @@
<javac classpathref="build.test32.classpath"
destdir="${build.test.dir}"
debug="true"
+ target="1.5"
+ source="1.5"
nowarn="on">
<src path="${src.test.dir}" />
</javac>
@@ -182,6 +194,8 @@
<javac classpathref="build.demo.classpath"
destdir="${build.demo.dir}"
debug="true"
+ target="1.5"
+ source="1.5"
nowarn="on">
<src path="${src.demo.dir}" />
</javac>
Show replies by date