Update of /cvsroot/appsunit/project/resources/ant
In directory sc8-pr-cvs11.sourceforge.net:/tmp/cvs-serv30878/resources/ant
Modified Files:
build.xml build.properties.sample
Log Message:
First succssful build, working checkstyle and PDM.
Index: build.properties.sample
===================================================================
RCS file: /cvsroot/appsunit/project/resources/ant/build.properties.sample,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** build.properties.sample 23 Sep 2006 13:06:06 -0000 1.1
--- build.properties.sample 23 Sep 2006 20:27:04 -0000 1.2
***************
*** 0 ****
--- 1,19 ----
+ # -----------------------------------------------------------------------------
+ # build.properties
+ #
+ # $Id$
+ # $Revision$
+ # $Date$
+ #
+ # -----------------------------------------------------------------------------
+
+ # the Oracle jdbc driver
+ db.driver=oracle.jdbc.OracleDriver
+
+ #
+ # the connection string to the apps database
+ #
+ # change this setting to match the connection
+ # parameters of your database
+ #
+ db.uri=jdbc:oracle:thin:user/password@server:port:sid
Index: build.xml
===================================================================
RCS file: /cvsroot/appsunit/project/resources/ant/build.xml,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** build.xml 23 Sep 2006 13:06:06 -0000 1.1
--- build.xml 23 Sep 2006 20:27:04 -0000 1.2
***************
*** 9,19 ****
</target>
! <target name="build">
</target>
! <target name="test">
</target>
! <target name="all">
</target>
</project>
--- 9,24 ----
</target>
! <target name="build"
! description="Compile the test code">
</target>
! <target name="test"
! description="Run the test scenarios">
</target>
!
!
! <target name="all" depends="init,build,test"
! description="Run all targets">
</target>
</project>
|