Subversion Repositories DevTools

Rev

Rev 4536 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
4466 dpurdie 1
$MAKELIB_PL     = "$ENV{ GBE_TOOLS }/makelib.pl";
2
$BUILDLIB_PL    = "$ENV{ GBE_TOOLS }/buildlib.pl";
229 dpurdie 3
require         "$BUILDLIB_PL";
4
require         "$MAKELIB_PL";
5
 
4543 dpurdie 6
# Build with 1.4
7
#   Its is the lowest common denominator for our build machines
8
#   Some of the database support jars require java 1.6
9
#   Magic happens within java and its calls loader
10
#   The search order in the manifest allows the 1.6 to pick up ojdbc6.jar 
11
#   but Java 1.4 to use classes12.jar
12
#
13
#   classes12.jar has reduced functionality including no support for 
14
#                 Proxy Athentication as used by the build system
15
#
16
BuildPlatforms  ( 'JAVA,--Version=1.4');
17
BuildName       ( 'jats_java 1.0.0000 cr' );
229 dpurdie 18
 
19
BuildInterface  ( 'interface' );
4543 dpurdie 20
BuildDescpkg    ();
21
BuildMake       ();
229 dpurdie 22