[JBoss-dev] CVS update: jnp/src/build build.xml

2001-12-29 Thread Scott M Stark

  User: starksm 
  Date: 01/12/29 01:00:46

  Modified:src/build Tag: Branch_2_4 build.xml
  Log:
  Change deltree to delete
  
  Revision  ChangesPath
  No   revision
  
  
  No   revision
  
  
  1.5.2.3   +2 -2  jnp/src/build/Attic/build.xml
  
  Index: build.xml
  ===
  RCS file: /cvsroot/jboss/jnp/src/build/Attic/build.xml,v
  retrieving revision 1.5.2.2
  retrieving revision 1.5.2.3
  diff -u -r1.5.2.2 -r1.5.2.3
  --- build.xml 2001/11/28 06:16:35 1.5.2.2
  +++ build.xml 2001/12/29 09:00:46 1.5.2.3
  @@ -199,8 +199,8 @@
 !-- Cleans up generated stuff   --
 !-- === --
 target name=clean
  -deltree dir=${build.dir}/
  -deltree dir=${dist.dir}/
  +delete dir=${build.dir}/
  +delete dir=${dist.dir}/
 /target
   
 !-- === --
  
  
  

___
Jboss-development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development



[JBoss-dev] CVS update: jnp/src/build build.xml

2001-11-27 Thread Scott M Stark

  User: starksm 
  Date: 01/11/27 22:16:35

  Modified:src/build Tag: Branch_2_4 build.xml
  Log:
  Add support for package version manifest headers
  
  Revision  ChangesPath
  No   revision
  
  
  No   revision
  
  
  1.5.2.2   +22 -4 jnp/src/build/Attic/build.xml
  
  Index: build.xml
  ===
  RCS file: /cvsroot/jboss/jnp/src/build/Attic/build.xml,v
  retrieving revision 1.5.2.1
  retrieving revision 1.5.2.2
  diff -u -r1.5.2.1 -r1.5.2.2
  --- build.xml 2001/09/07 23:17:44 1.5.2.1
  +++ build.xml 2001/11/28 06:16:35 1.5.2.2
  @@ -5,7 +5,7 @@
   !-- === --
   project name=JNP default=main basedir=../..
   
  -  property name=Name value=JNP/
  +  property name=Name value=JBossNS/
 property name=name value=jnp/
 property name=version value=1.2/
 property name=bin.dir value=${basedir}/bin/
  @@ -43,6 +43,18 @@
 target name=prepare
   mkdir dir=${build.dir}/
 /target
  +  target name=create-manifest
  +copy file=${etc.dir}/${manifest.file} todir=${build.dir} overwrite=true 
/
  +echo file=${build.dir}/${manifest.file}
  +   append=trueSpecification-Title: ${Name}-${version}
  +Specification-Version: ${version}
  +Specification-Vendor: JBoss Group, LLC
  +Implementation-Title: ${Name}-${release} CVSTag=${release-tag}
  +Implementation-Version: ${release}.${build.time}
  +Implementation-Vendor: JBoss Group, LLC
  +/echo
  +fixcrlf srcdir=${build.dir} includes=${manifest.file} eol=crlf /
  +  /target
   
 !-- === --
 !-- Compiles the source code--
  @@ -72,9 +84,12 @@
   /copy

   mkdir dir=${build.bin.dir}/
  +antcall target=create-manifest
  +   param name=manifest.file value=server.mf/
  +/antcall
   jar jarfile=${build.bin.dir}/jnpserver.jar
basedir=${build.classes.dir}
  - manifest=${etc.dir}/server.mf
  + manifest=${build.dir}/server.mf
includes=org/jnp/server/**,org/jnp/interfaces/**
   /
   
  @@ -85,13 +100,16 @@
   /
 
   mkdir dir=${build.lib.dir}/ext/
  +antcall target=create-manifest
  +   param name=manifest.file value=jnp.mf/
  +/antcall
   jar jarfile=${build.lib.dir}/ext/jnp-client.jar
basedir=${build.classes.dir}
  - manifest=${etc.dir}/jnp.mf
  + manifest=${build.dir}/jnp.mf
includes=org/jnp/interfaces/**,org/jnp/server/*Stub.class
   /
 /target
  -  
  +
 !-- === --
 !-- Creates the binary structure--
 !-- === --
  
  
  

___
Jboss-development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development



[JBoss-dev] CVS update: jnp/src/build build.xml

2001-09-07 Thread Scott M Stark

  User: starksm 
  Date: 01/09/07 16:17:44

  Modified:src/build Tag: Branch_2_4 build.xml
  Log:
  Add install and src-install targets to simplify building jnp into
  the jboss distribution.
  
  Revision  ChangesPath
  No   revision
  
  
  No   revision
  
  
  1.5.2.1   +14 -0 jnp/src/build/Attic/build.xml
  
  Index: build.xml
  ===
  RCS file: /cvsroot/jboss/jnp/src/build/Attic/build.xml,v
  retrieving revision 1.5
  retrieving revision 1.5.2.1
  diff -u -r1.5 -r1.5.2.1
  --- build.xml 2001/05/30 02:01:38 1.5
  +++ build.xml 2001/09/07 23:17:44 1.5.2.1
  @@ -24,6 +24,8 @@
 property name=build.classes.dir value=${build.dir}/classes/
 property name=build.javadocs.dir value=${build.dir}/docs/api/
 property name=dist.dir value=dist/
  +  !-- Assumes that jnp and jboss cvs dirs have the same parent dir --
  +  property name=jboss.dist value=../jboss/dist /
   
 path id=base.path
   pathelement location=${lib.dir}/jmxri.jar /
  @@ -110,6 +112,18 @@
  fileset dir=${src.lib.dir} /
  fileset dir=${build.lib.dir}/ext /
/copy
  +  /target
  +
  +  !-- Installs the jnp jars into the jboss.dist structure --
  +  target name=install depends=jar
  +copy file=${build.lib.dir}/ext/jnp-client.jar todir=${jboss.dist}/client /
  +copy file=${build.bin.dir}/jnpserver.jar todir=${jboss.dist}/lib/ext /
  +  /target
  +
  +  !-- Installs the jnp jars into the jboss.src structure --
  +  target name=src-install depends=jar
  +copy file=${build.lib.dir}/ext/jnp-client.jar 
todir=${jboss.dist}/../src/client /
  +copy file=${build.bin.dir}/jnpserver.jar todir=${jboss.dist}/../src/lib /
 /target
   
 !-- === --
  
  
  

___
Jboss-development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development



[JBoss-dev] CVS update: jnp/src/build build.xml

2001-05-29 Thread starksm

  User: starksm 
  Date: 01/05/29 19:01:38

  Modified:src/build build.xml
  Log:
  Add the junit jar for building the jnp test cases
  
  Revision  ChangesPath
  1.5   +1 -0  jnp/src/build/build.xml
  
  Index: build.xml
  ===
  RCS file: /cvsroot/jboss/jnp/src/build/build.xml,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- build.xml 2001/04/23 06:05:44 1.4
  +++ build.xml 2001/05/30 02:01:38 1.5
  @@ -28,6 +28,7 @@
 path id=base.path
   pathelement location=${lib.dir}/jmxri.jar /
   pathelement location=${build.classes.dir} /
  +pathelement location=${src.lib.dir}/junit.jar /
   pathelement location=${src.lib.dir}/log4j.jar /
 /path
   
  
  
  

___
Jboss-development mailing list
[EMAIL PROTECTED]
http://lists.sourceforge.net/lists/listinfo/jboss-development