[JBoss-dev] CVS update: tools/planet57/buildmagic/lib buildmagic-tasks.jar

2001-07-30 Thread Jason Dillon

  User: user57  
  Date: 01/07/30 19:29:13

  Modified:planet57/buildmagic/lib Tag: jboss_buildmagic
buildmagic-tasks.jar
  Log:
   o Updated some modules from HEAD
   o Converted most modules to new release style (except plugins and manual)
   o Most modules produce the correct binary structure.
   o short of the manual and valid testsuite jars the system will build now.
  
  Revision  ChangesPath
  No   revision
  
  
  No   revision
  
  
  1.1.1.1.2.10 +28 -43tools/planet57/buildmagic/lib/buildmagic-tasks.jar
  
Binary file
  
  

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



[JBoss-dev] CVS update: jbossmx build.xml config.xml

2001-07-30 Thread Jason Dillon

  User: user57  
  Date: 01/07/30 19:29:10

  Modified:.Tag: jboss_buildmagic build.xml config.xml
  Log:
   o Updated some modules from HEAD
   o Converted most modules to new release style (except plugins and manual)
   o Most modules produce the correct binary structure.
   o short of the manual and valid testsuite jars the system will build now.
  
  Revision  ChangesPath
  No   revision
  
  
  No   revision
  
  
  1.1.2.4   +91 -66jbossmx/Attic/build.xml
  
  Index: build.xml
  ===
  RCS file: /cvsroot/jboss/jbossmx/Attic/build.xml,v
  retrieving revision 1.1.2.3
  retrieving revision 1.1.2.4
  diff -u -r1.1.2.3 -r1.1.2.4
  --- build.xml 2001/07/29 04:57:40 1.1.2.3
  +++ build.xml 2001/07/31 02:29:10 1.1.2.4
  @@ -10,9 +10,9 @@
   !----
   !-- == --
   
  -!-- $Id: build.xml,v 1.1.2.3 2001/07/29 04:57:40 user57 Exp $ --
  +!-- $Id: build.xml,v 1.1.2.4 2001/07/31 02:29:10 user57 Exp $ --
   
  -project name=jboss-cluster default=main
  +project default=main
   
 !-- == --
 !-- Basic module configuration --
  @@ -195,7 +195,7 @@
|  documentation compiles.
   --
 target name=compile 
  -   depends=compile-classes
  +   depends=compile-classes, compile-rmi
  description=Compile all source files./
   
 !-- Compile all class files --
  @@ -221,6 +221,29 @@
   /javac
 /target
   
  +  !-- Compile RMI stubs --
  +  target name=compile-rmi depends=compile-classes
  +rmic base=${build.classes}
  +   verify=${rmic.verify}
  +   iiop=${rmic.iiop}
  +   iiopopts=${rmic.iiopops}
  +   idl=${rmic.idl}
  +   idlopts=${rmic.idlops}
  +   debug=${rmic.debug}
  +  stubVersion=${rmic.stubVersion}
  +  classpath refid=javac.classpath/
  +  include name=${rmic.includes}/
  +  exclude name=${rmic.excludes}/
  +
  +  !-- Need to get these classes to compile first
  +  include name=org/jbossmx/cluster/watchdog/agent/BaseAgent.class/
  +  include 
name=org/jbossmx/cluster/watchdog/mbean/WatchdogEventManager.class/
  +  include name=org/jbossmx/cluster/watchdog/util/MirroringService.class/
  +  include 
name=org/jbossmx/cluster/watchdog/util/MirrorServiceRemoteListener.class/
  +  --
  +/rmic
  +  /target
  +
   
 !-- == --
 !-- Build Jars --
  @@ -232,8 +255,8 @@
 target name=jars depends=compile description=Builds all jar files.
   mkdir dir=${build.jars}/
   
  -!-- Build the module jar --
  -jar jarfile=${build.jars}/${module.name}.jar
  +!-- Build the jbossmx.jar --
  +jar jarfile=${build.jars}/jbossmx.jar
 fileset dir=${build.classes}
   include name=**/
 /fileset
  @@ -251,7 +274,7 @@
|  This target should depend on other docs-* targets for each 
|  different type of docuementation that is to be generated.
   --
  -  target name=docs depends=docs-api
  +  target name=docs depends=docs-api, docs-examples
  description=Builds all documentation./
   
 !-- Javadocs is an exception, but provide a docs-api to conform. --
  @@ -296,29 +319,13 @@
 !-- group title=??? packages=*/ --
   /javadoc
 /target
  -
  -
  -  !-- == --
  -  !-- Release/Install file copying.  --
  -  !-- == --
  -
  -  !--
  - |  This target is a helper for release and install to consolidate the
  - |  task logic required to copy files.
  -   --
  -  target name=copy-files
  -!-- Copy the generated libraries --
  -mkdir dir=${to.lib}/
  -copy todir=${to.lib} filtering=no
  -  fileset dir=${from.lib}
  - include name=**/*/
  -  /fileset
  -/copy
   
  -!-- Copy the generated javadocs --
  -mkdir dir=${to.api}/
  -copy todir=${to.api} filtering=no
  -  fileset dir=${from.api}
  +  !-- Generate examples files --
  +  !-- Should really place these in a package, compile, then include source --
  +  target name=docs-examples depends=init
  +mkdir dir=${build.examples}/
  +copy todir=${build.examples} filtering=yes
  +  fileset dir=${source.examples}
include name=**/*/
 /fileset
   /copy
  @@ -329,48 +336,65 @@
 !-- Builds a release distribution. --
 !-- == --
   
  -  target name=release 
  - 

[JBoss-dev] CVS update: jbossmq build.xml config.xml

2001-07-30 Thread Jason Dillon

  User: user57  
  Date: 01/07/30 19:29:11

  Modified:.Tag: jboss_buildmagic build.xml config.xml
  Log:
   o Updated some modules from HEAD
   o Converted most modules to new release style (except plugins and manual)
   o Most modules produce the correct binary structure.
   o short of the manual and valid testsuite jars the system will build now.
  
  Revision  ChangesPath
  No   revision
  
  
  No   revision
  
  
  1.1.2.4   +147 -62   jbossmq/Attic/build.xml
  
  Index: build.xml
  ===
  RCS file: /cvsroot/jboss/jbossmq/Attic/build.xml,v
  retrieving revision 1.1.2.3
  retrieving revision 1.1.2.4
  diff -u -r1.1.2.3 -r1.1.2.4
  --- build.xml 2001/07/29 04:57:40 1.1.2.3
  +++ build.xml 2001/07/31 02:29:10 1.1.2.4
  @@ -10,9 +10,9 @@
   !----
   !-- == --
   
  -!-- $Id: build.xml,v 1.1.2.3 2001/07/29 04:57:40 user57 Exp $ --
  +!-- $Id: build.xml,v 1.1.2.4 2001/07/31 02:29:10 user57 Exp $ --
   
  -project name=jboss-messaging default=main
  +project default=main
   
 !-- == --
 !-- Basic module configuration --
  @@ -195,7 +195,7 @@
|  documentation compiles.
   --
 target name=compile 
  -   depends=compile-classes
  +   depends=compile-classes, compile-rmi, compile-resources, compile-etc
  description=Compile all source files./
   
 !-- Compile all class files --
  @@ -218,7 +218,46 @@
   /javac
 /target
   
  +  !-- Compile RMI stubs --
  +  target name=compile-rmi depends=compile-classes
  +rmic base=${build.classes}
  +   verify=${rmic.verify}
  +   iiop=${rmic.iiop}
  +   iiopopts=${rmic.iiopops}
  +   idl=${rmic.idl}
  +   idlopts=${rmic.idlops}
  +   debug=${rmic.debug}
  +  stubVersion=${rmic.stubVersion}
  +  classpath refid=javac.classpath/
  +  include name=${rmic.includes}/
  +  exclude name=${rmic.excludes}/
  +
  +  include name=org/jbossmq/il/rmi/RMIServer.class/
  +  include name=org/jbossmq/il/rmi/RMIClient.class/
  +/rmic
  +  /target
  +
  +  !-- Compile resource files --
  +  target name=compile-resources depends=init
  +mkdir dir=${build.resources}/
  +copy todir=${build.resources} filtering=yes
  +  fileset dir=${source.resources}
  + include name=**/*/
  +  /fileset
  +/copy
  +  /target
   
  +  !-- Compile etc files (manifests and such) --
  +  target name=compile-etc depends=init
  +mkdir dir=${build.etc}/
  +copy todir=${build.etc} filtering=yes
  +  fileset dir=${source.etc}
  + include name=**/*/
  +  /fileset
  +/copy
  +  /target
  +
  +
 !-- == --
 !-- Build Jars --
 !-- == --
  @@ -229,12 +268,24 @@
 target name=jars depends=compile description=Builds all jar files.
   mkdir dir=${build.jars}/
   
  -!-- Build the module jar --
  -jar jarfile=${build.jars}/${module.name}.jar
  +!-- Build jbossmq.jar --
  +jar jarfile=${build.jars}/jbossmq.jar
 fileset dir=${build.classes}
   include name=**/
 /fileset
   /jar
  +
  +!-- Build jbossmq-client.jar --
  +jar jarfile=${build.jars}/jbossmq-client.jar
  +  fileset dir=${build.classes}
  +include name=log4j.properties/
  +include name=org/jbossmq/referenceable/**/
  + include name=org/jbossmq/il/**/
  + include name=org/jbossmq/cluster/**/
  + include name=org/jbossmq/xml/**/
  + include name=org/jbossmq/selectors/**/
  +  /fileset
  +/jar
 /target
   
   
  @@ -248,7 +299,7 @@
|  This target should depend on other docs-* targets for each 
|  different type of docuementation that is to be generated.
   --
  -  target name=docs depends=docs-api
  +  target name=docs depends=docs-api, docs-static, docs-examples
  description=Builds all documentation./
   
 !-- Javadocs is an exception, but provide a docs-api to conform. --
  @@ -293,29 +344,23 @@
 !-- group title=??? packages=*/ --
   /javadoc
 /target
  -
  -
  -  !-- == --
  -  !-- Release/Install file copying.  --
  -  !-- == --
   
  -  !--
  - |  This target is a helper for release and install to consolidate the
  - |  task logic required to copy files.
  -   --
  -  target name=copy-files
  -!-- Copy the generated libraries --
  

[JBoss-dev] CVS update: jboss-j2ee build.xml

2001-07-30 Thread Jason Dillon

  User: user57  
  Date: 01/07/30 19:29:10

  Modified:.Tag: jboss_buildmagic build.xml
  Log:
   o Updated some modules from HEAD
   o Converted most modules to new release style (except plugins and manual)
   o Most modules produce the correct binary structure.
   o short of the manual and valid testsuite jars the system will build now.
  
  Revision  ChangesPath
  No   revision
  
  
  No   revision
  
  
  1.1.2.10  +1 -9  jboss-j2ee/Attic/build.xml
  
  Index: build.xml
  ===
  RCS file: /cvsroot/jboss/jboss-j2ee/Attic/build.xml,v
  retrieving revision 1.1.2.9
  retrieving revision 1.1.2.10
  diff -u -r1.1.2.9 -r1.1.2.10
  --- build.xml 2001/07/30 23:52:28 1.1.2.9
  +++ build.xml 2001/07/31 02:29:10 1.1.2.10
  @@ -10,7 +10,7 @@
   !----
   !-- == --
   
  -!-- $Id: build.xml,v 1.1.2.9 2001/07/30 23:52:28 user57 Exp $ --
  +!-- $Id: build.xml,v 1.1.2.10 2001/07/31 02:29:10 user57 Exp $ --
   
   project default=main
   
  @@ -404,14 +404,6 @@
 !-- == --
   
 target name=help
  -property name=projecthelp.header
  -  The ${module.Name} module.
  -/property
  -property name=projecthelp.footer![CDATA[
  --projecthelp for all targets
  --help for full options
  -]]/property
  -
   projecthelp
 header![CDATA[
 The ${module.Name} module.
  
  
  

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



[JBoss-dev] CVS update: jbosspool build.xml config.xml

2001-07-30 Thread Jason Dillon

  User: user57  
  Date: 01/07/30 19:29:11

  Modified:.Tag: jboss_buildmagic build.xml config.xml
  Log:
   o Updated some modules from HEAD
   o Converted most modules to new release style (except plugins and manual)
   o Most modules produce the correct binary structure.
   o short of the manual and valid testsuite jars the system will build now.
  
  Revision  ChangesPath
  No   revision
  
  
  No   revision
  
  
  1.1.2.5   +87 -73jbosspool/Attic/build.xml
  
  Index: build.xml
  ===
  RCS file: /cvsroot/jboss/jbosspool/Attic/build.xml,v
  retrieving revision 1.1.2.4
  retrieving revision 1.1.2.5
  diff -u -r1.1.2.4 -r1.1.2.5
  --- build.xml 2001/07/29 04:57:40 1.1.2.4
  +++ build.xml 2001/07/31 02:29:11 1.1.2.5
  @@ -10,9 +10,9 @@
   !----
   !-- == --
   
  -!-- $Id: build.xml,v 1.1.2.4 2001/07/29 04:57:40 user57 Exp $ --
  +!-- $Id: build.xml,v 1.1.2.5 2001/07/31 02:29:11 user57 Exp $ --
   
  -project name=jboss-pool default=main
  +project default=main
   
 !-- == --
 !-- Basic module configuration --
  @@ -195,7 +195,7 @@
|  documentation compiles.
   --
 target name=compile 
  -   depends=compile-classes
  +   depends=compile-classes, compile-resources
  description=Compile all source files./
   
 !-- Compile all class files --
  @@ -215,16 +215,18 @@
  classpath refid=javac.classpath/
  include name=${javac.includes}/
  exclude name=${javac.excludes}/
  -
  -   !-- Move both of these to plugins --
  -   !-- Looks like this needs to be updated for 0.9.7.0 --
  -   exclude name=org/jboss/tm/plugins/tyrex/**/
  -   exclude name=org/jboss/jdo/castor/**/
  -
  -   !-- This is currently contains outdated package references. --
  -   exclude name=test/**/
   /javac
 /target
  + 
  +  !-- Compile resource files --
  +  target name=compile-resources depends=init
  +mkdir dir=${build.resources}/
  +copy todir=${build.resources} filtering=yes
  +  fileset dir=${source.resources}
  + include name=**/*/
  +  /fileset
  +/copy
  +  /target
   
   
 !-- == --
  @@ -237,12 +239,33 @@
 target name=jars depends=compile description=Builds all jar files.
   mkdir dir=${build.jars}/
   
  -!-- Build the module jar --
  -jar jarfile=${build.jars}/${module.name}.jar
  +!-- Build jbosspool.jar --
  +jar jarfile=${build.jars}/jbosspool.jar
 fileset dir=${build.classes}
   include name=**/
 /fileset
   /jar
  +
  +!-- Build ra-libs.jar --
  +jar jarfile=${build.jars}/ra-libs.jar
  +  fileset dir=${build.classes}
  +include name=org/jboss/pool/*.class/
  +include name=org.jboss/pool/connector/*.class/
  +include name=org.jboss/pool/connector/jdbc/*.class/
  +include name=org.jboss/pool/cache/*.class/
  +include name=org.jboss/pool/jdbc/*.class/
  +  /fileset
  +/jar
  +
  +!-- Build jbosspool-jdbc.jar --
  +jar jarfile=${build.jars}/jbosspool-jdbc.jar
  +  fileset dir=${build.resources}/jdbc-rar
  +include name=**/*/
  +  /fileset
  +  fileset dir=${build.jars}
  +include name=ra-libs.jar/
  +  /fileset
  +/jar
 /target
   
   
  @@ -304,78 +327,68 @@
   
   
 !-- == --
  -  !-- Release/Install file copying.  --
  +  !-- Builds a release distribution. --
 !-- == --
   
  -  !--
  - |  This target is a helper for release and install to consolidate the
  - |  task logic required to copy files.
  -   --
  -  target name=copy-files
  -!-- Copy the generated libraries --
  -mkdir dir=${to.lib}/
  -copy todir=${to.lib} filtering=no
  -  fileset dir=${from.lib}
  - include name=**/*/
  +  target name=release depends=all
  +   description=Builds a release distribution.
  +!-- Copy the generated libraries (lib/ext) --
  +mkdir dir=${release.lib.ext}/
  +copy todir=${release.lib.ext} filtering=no
  +  fileset dir=${build.jars}
  + include name=jboss.jar/
 /fileset
   /copy
   
  -!-- Copy the generated javadocs --
  -mkdir dir=${to.api}/
  -copy todir=${to.api} filtering=no
  -  fileset dir=${from.api}
  +!-- Copy the generated deployment libraries (deploy/lib) --
  +mkdir dir=${release.deploy.lib}/
  +copy 

[JBoss-dev] CVS update: jbossmx/src/build build.bat build.sh build.xml

2001-07-30 Thread Jason Dillon

  User: user57  
  Date: 01/07/30 19:29:10

  Removed: src/build Tag: jboss_buildmagic build.bat build.sh build.xml
  Log:
   o Updated some modules from HEAD
   o Converted most modules to new release style (except plugins and manual)
   o Most modules produce the correct binary structure.
   o short of the manual and valid testsuite jars the system will build now.

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



[JBoss-dev] CVS update: jbossmq/src/client jbossmq-cluster.xml jndi.properties

2001-07-30 Thread Jason Dillon

  User: user57  
  Date: 01/07/30 19:29:11

  Removed: src/client Tag: jboss_buildmagic jbossmq-cluster.xml
jndi.properties
  Log:
   o Updated some modules from HEAD
   o Converted most modules to new release style (except plugins and manual)
   o Most modules produce the correct binary structure.
   o short of the manual and valid testsuite jars the system will build now.

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



[JBoss-dev] CVS update: build build.xml config.xml

2001-07-30 Thread Jason Dillon

  User: user57  
  Date: 01/07/30 19:29:10

  Modified:.Tag: jboss_buildmagic build.xml config.xml
  Log:
   o Updated some modules from HEAD
   o Converted most modules to new release style (except plugins and manual)
   o Most modules produce the correct binary structure.
   o short of the manual and valid testsuite jars the system will build now.
  
  Revision  ChangesPath
  No   revision
  
  
  No   revision
  
  
  1.2.2.13  +4 -4  build/build.xml
  
  Index: build.xml
  ===
  RCS file: /cvsroot/jboss/build/build.xml,v
  retrieving revision 1.2.2.12
  retrieving revision 1.2.2.13
  diff -u -r1.2.2.12 -r1.2.2.13
  --- build.xml 2001/07/30 23:52:28 1.2.2.12
  +++ build.xml 2001/07/31 02:29:09 1.2.2.13
  @@ -10,7 +10,7 @@
   !----
   !-- == --
   
  -!-- $Id: build.xml,v 1.2.2.12 2001/07/30 23:52:28 user57 Exp $ --
  +!-- $Id: build.xml,v 1.2.2.13 2001/07/31 02:29:09 user57 Exp $ --
   
   project default=main basedir=..
   
  @@ -409,9 +409,9 @@
 The JBoss project build control module.
   ]]/header
 footer![CDATA[
  --Dgroup=group   Specify the module group.
  --Dmodules=module[(,module)*   Specify the module list.
  -
  +-Dgroups=group[(,group)*  Specify the module group list.
  +-Dmodules=module[(,module)*   Specify the module list
  +  (overrides groups).
   -projecthelp for all targets
   -help for full options
   ]]/footer
  
  
  
  1.2.2.13  +3 -3  build/config.xml
  
  Index: config.xml
  ===
  RCS file: /cvsroot/jboss/build/config.xml,v
  retrieving revision 1.2.2.12
  retrieving revision 1.2.2.13
  diff -u -r1.2.2.12 -r1.2.2.13
  --- config.xml2001/07/30 23:52:28 1.2.2.12
  +++ config.xml2001/07/31 02:29:09 1.2.2.13
  @@ -7,7 +7,7 @@
   !----
   !-- == --
   
  -!-- $Id: config.xml,v 1.2.2.12 2001/07/30 23:52:28 user57 Exp $ --
  +!-- $Id: config.xml,v 1.2.2.13 2001/07/31 02:29:09 user57 Exp $ --
   
 !-- == --
 !-- Project Setup  --
  @@ -80,14 +80,14 @@
 !-- == --
   
 !-- The group to use by default --
  -  property name=group value=default/
  +  property name=groups value=default/
   
 !--
|  Sets up the module configuration.
   --
   
 target name=module-configuration-setup
  -moduleconfig property=modules selected=${group}
  +moduleconfig property=modules selected=${groups}
   
 !-- Standard modules --
  
  
  
  

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



[JBoss-dev] CVS update: jbossmq/src/etc/conf/default auth.conf jboss-auto.jcml jboss.conf jboss.dependencies jboss.jcml jboss.properties jndi.properties jnp.properties log4j.properties server.policy

2001-07-30 Thread Jason Dillon

  User: user57  
  Date: 01/07/30 19:29:11

  Removed: src/etc/conf/default Tag: jboss_buildmagic auth.conf
jboss-auto.jcml jboss.conf jboss.dependencies
jboss.jcml jboss.properties jndi.properties
jnp.properties log4j.properties server.policy
  Log:
   o Updated some modules from HEAD
   o Converted most modules to new release style (except plugins and manual)
   o Most modules produce the correct binary structure.
   o short of the manual and valid testsuite jars the system will build now.

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



[JBoss-dev] CVS update: jbosspool/src/build build.bat build.sh build.xml

2001-07-30 Thread Jason Dillon

  User: user57  
  Date: 01/07/30 19:29:11

  Removed: src/build Tag: jboss_buildmagic build.bat build.sh build.xml
  Log:
   o Updated some modules from HEAD
   o Converted most modules to new release style (except plugins and manual)
   o Most modules produce the correct binary structure.
   o short of the manual and valid testsuite jars the system will build now.

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



[JBoss-dev] CVS update: jbosscx build.xml config.xml

2001-07-30 Thread Jason Dillon

  User: user57  
  Date: 01/07/30 19:29:10

  Modified:.Tag: jboss_buildmagic build.xml config.xml
  Log:
   o Updated some modules from HEAD
   o Converted most modules to new release style (except plugins and manual)
   o Most modules produce the correct binary structure.
   o short of the manual and valid testsuite jars the system will build now.
  
  Revision  ChangesPath
  No   revision
  
  
  No   revision
  
  
  1.1.2.4   +47 -64jbosscx/Attic/build.xml
  
  Index: build.xml
  ===
  RCS file: /cvsroot/jboss/jbosscx/Attic/build.xml,v
  retrieving revision 1.1.2.3
  retrieving revision 1.1.2.4
  diff -u -r1.1.2.3 -r1.1.2.4
  --- build.xml 2001/07/29 04:57:40 1.1.2.3
  +++ build.xml 2001/07/31 02:29:10 1.1.2.4
  @@ -10,9 +10,9 @@
   !----
   !-- == --
   
  -!-- $Id: build.xml,v 1.1.2.3 2001/07/29 04:57:40 user57 Exp $ --
  +!-- $Id: build.xml,v 1.1.2.4 2001/07/31 02:29:10 user57 Exp $ --
   
  -project name=jboss-connector default=main
  +project default=main
   
 !-- == --
 !-- Basic module configuration --
  @@ -229,8 +229,8 @@
 target name=jars depends=compile description=Builds all jar files.
   mkdir dir=${build.jars}/
   
  -!-- Build the module jar --
  -jar jarfile=${build.jars}/${module.name}.jar
  +!-- Build jbosscx.jar --
  +jar jarfile=${build.jars}/jbosscx.jar
 fileset dir=${build.classes}
   include name=**/
 /fileset
  @@ -296,78 +296,60 @@
   
   
 !-- == --
  -  !-- Release/Install file copying.  --
  +  !-- Builds a release distribution. --
 !-- == --
   
  -  !--
  - |  This target is a helper for release and install to consolidate the
  - |  task logic required to copy files.
  -   --
  -  target name=copy-files
  -!-- Copy the generated libraries --
  -mkdir dir=${to.lib}/
  -copy todir=${to.lib} filtering=no
  -  fileset dir=${from.lib}
  - include name=**/*/
  +  target name=release depends=all
  +   description=Builds a release distribution.
  +!-- Copy the generated libraries (lib/ext) --
  +mkdir dir=${release.lib.ext}/
  +copy todir=${release.lib.ext} filtering=no
  +  fileset dir=${build.jars}
  + include name=jbosscx.jar/
 /fileset
   /copy
   
  -!-- Copy the generated javadocs --
  -mkdir dir=${to.api}/
  -copy todir=${to.api} filtering=no
  -  fileset dir=${from.api}
  +!-- Copy the generated javadocs (docs/api/module) --
  +mkdir dir=${release.module.api}/
  +copy todir=${release.module.api} filtering=no
  +  fileset dir=${build.api}
include name=**/*/
 /fileset
   /copy
 /target
  -
   
  -  !-- == --
  -  !-- Builds a release distribution. --
  -  !-- == --
  -
  -  target name=release 
  -   depends=all
  -   description=Builds a release distribution.
  -!-- Copy the files to release --
  -antcall target=copy-files
  -  param name=to.lib value=${release.lib}/
  -  param name=from.lib value=${build.jars}/
  -  param name=to.api value=${release.api}/
  -  param name=from.api value=${build.api}/
  -/antcall
  -
  -!-- Build a jar for the release --
  +  target name=release-archive-prepare depends=release
   mkdir dir=${module.release}/
  -mkdir dir=${module.output}/
  -jar jarfile=${module.output}/${module.name}-${build.id}.jar
  +property name=release.archive.basename
  +   value=${module.release}/${release.id}/
  +  /target
  +
  +  target name=release-zip depends=release-archive-prepare
  +   description=Builds a ZIP release distribution.
  +zip zipfile=${release.archive.basename}.zip
 fileset dir=${module.release}
  -include name=**/
  +include name=${release.id}/**/
 /fileset
  -/jar
  +/zip
 /target
   
  -
  -  !-- == --
  -  !-- Install release files into project output. --
  -  !-- == --
  +  target name=release-tar depends=release-archive-prepare
  +   description=Builds a TAR release distribution.
  +tar tarfile=${release.archive.basename}.tar longfile=gnu
  +  

[JBoss-dev] CVS update: jbosscx/src/build build.bat build.sh build.xml

2001-07-30 Thread Jason Dillon

  User: user57  
  Date: 01/07/30 19:29:10

  Removed: src/build Tag: jboss_buildmagic build.bat build.sh build.xml
  Log:
   o Updated some modules from HEAD
   o Converted most modules to new release style (except plugins and manual)
   o Most modules produce the correct binary structure.
   o short of the manual and valid testsuite jars the system will build now.

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



[JBoss-dev] CVS update: jboss build.xml

2001-07-30 Thread Jason Dillon

  User: user57  
  Date: 01/07/30 19:29:12

  Modified:.Tag: jboss_buildmagic build.xml
  Log:
   o Updated some modules from HEAD
   o Converted most modules to new release style (except plugins and manual)
   o Most modules produce the correct binary structure.
   o short of the manual and valid testsuite jars the system will build now.
  
  Revision  ChangesPath
  No   revision
  
  
  No   revision
  
  
  1.1.2.11  +22 -23jboss/Attic/build.xml
  
  Index: build.xml
  ===
  RCS file: /cvsroot/jboss/jboss/Attic/build.xml,v
  retrieving revision 1.1.2.10
  retrieving revision 1.1.2.11
  diff -u -r1.1.2.10 -r1.1.2.11
  --- build.xml 2001/07/30 23:52:29 1.1.2.10
  +++ build.xml 2001/07/31 02:29:12 1.1.2.11
  @@ -10,7 +10,7 @@
   !----
   !-- == --
   
  -!-- $Id: build.xml,v 1.1.2.10 2001/07/30 23:52:29 user57 Exp $ --
  +!-- $Id: build.xml,v 1.1.2.11 2001/07/31 02:29:12 user57 Exp $ --
   
   project default=main
   
  @@ -385,8 +385,8 @@
   jar jarfile=${build.jars}/deploy.jar
manifest=${build.etc}/deploy.mf
 fileset dir=${build.classes}
  - include name=org/jboss/jmx/interfaces/JMXAdaptor.class/
include name=org/jboss/jmx/client/Deployer.class/
  + include name=org/jboss/jmx/interfaces/JMXAdaptor.class/
include name=org/jboss/jmx/server/JMXAdaptorImpl_Stub.class/
include name=org/jboss/ejb/CacheKey.class/
include name=org/jboss/util/FastKey.class/
  @@ -397,8 +397,8 @@
   jar jarfile=${build.jars}/stop.jar
manifest=${build.etc}/stop.mf
 fileset dir=${build.classes}
  - include name=org/jboss/jmx/interfaces/JMXAdaptor.class/
include name=org/jboss/jmx/client/Stop.class/
  + include name=org/jboss/jmx/interfaces/JMXAdaptor.class/
include name=org/jboss/jmx/server/JMXAdaptorImpl_Stub.class/
include name=org/jboss/ejb/CacheKey.class/
include name=org/jboss/util/FastKey.class/
  @@ -428,6 +428,25 @@
 /fileset
   /jar
   
  +!-- Build jms-ra.rar --
  +jar jarfile=${build.jars}/jms-ra.rar
  +  fileset dir=${build.classes}
  +include name=org/jboss/jms/ra/**/
  +  /fileset
  +  fileset dir=${build.resources}/org/jboss/jms/ra/
  +include name=**/
  +  /fileset
  +/jar
  +
  +!-- HACK Build jboss-security.jar --
  +jar jarfile=${build.jars}/jboss-security.jar
  +  fileset dir=${build.classes}
  +include name=org/jboss/security/**/
  +  /fileset
  +/jar
  +
  +!-- The following might not be needed any more --
  +
   !-- Build jboss-metadata.jar --
   jar jarfile=${build.jars}/jboss-metadata.jar
 fileset dir=${build.classes}
  @@ -460,16 +479,6 @@
 /fileset
   /jar
   
  -!-- Build jms-ra.rar --
  -jar jarfile=${build.jars}/jms-ra.rar
  -  fileset dir=${build.classes}
  -include name=org/jboss/jms/ra/**/
  -  /fileset
  -  fileset dir=${build.resources}/org/jboss/jms/ra/
  -include name=**/
  -  /fileset
  -/jar
  -
   !-- Build jboss-castorjdo.jar --
   !-- This should move to an plugin module
   jar jarfile=${build.jars}/jboss-castorjdo.jar
  @@ -663,8 +672,6 @@
 /fileset
   /copy
   
  -!-- TODO: admin ? --
  -
   !-- TODO: dependency libraries --
   
 /target
  @@ -727,14 +734,6 @@
 !-- == --
   
 target name=help
  -property name=projecthelp.header
  -  The ${module.Name} module.
  -/property
  -property name=projecthelp.footer![CDATA[
  --projecthelp for all targets
  --help for full options
  -]]/property
  -
   projecthelp
 header![CDATA[
 The ${module.Name} module.
  
  
  

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



[JBoss-dev] CVS update: jbossmq/src/etc log.properties

2001-07-30 Thread Jason Dillon

  User: user57  
  Date: 01/07/30 19:29:11

  Removed: src/etc  Tag: jboss_buildmagic log.properties
  Log:
   o Updated some modules from HEAD
   o Converted most modules to new release style (except plugins and manual)
   o Most modules produce the correct binary structure.
   o short of the manual and valid testsuite jars the system will build now.

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



[JBoss-dev] CVS update: jbosstest build.xml config.xml

2001-07-30 Thread Jason Dillon

  User: user57  
  Date: 01/07/30 19:29:13

  Modified:.Tag: jboss_buildmagic build.xml config.xml
  Log:
   o Updated some modules from HEAD
   o Converted most modules to new release style (except plugins and manual)
   o Most modules produce the correct binary structure.
   o short of the manual and valid testsuite jars the system will build now.
  
  Revision  ChangesPath
  No   revision
  
  
  No   revision
  
  
  1.1.2.4   +81 -68jbosstest/Attic/build.xml
  
  Index: build.xml
  ===
  RCS file: /cvsroot/jboss/jbosstest/Attic/build.xml,v
  retrieving revision 1.1.2.3
  retrieving revision 1.1.2.4
  diff -u -r1.1.2.3 -r1.1.2.4
  --- build.xml 2001/07/29 04:57:41 1.1.2.3
  +++ build.xml 2001/07/31 02:29:12 1.1.2.4
  @@ -10,9 +10,9 @@
   !----
   !-- == --
   
  -!-- $Id: build.xml,v 1.1.2.3 2001/07/29 04:57:41 user57 Exp $ --
  +!-- $Id: build.xml,v 1.1.2.4 2001/07/31 02:29:12 user57 Exp $ --
   
  -project name=jboss-testsuite default=main
  +project default=main
   
 !-- == --
 !-- Basic module configuration --
  @@ -195,7 +195,7 @@
|  documentation compiles.
   --
 target name=compile 
  -   depends=compile-classes
  +   depends=compile-classes, compile-resources, compile-etc, compile-bin
  description=Compile all source files./
   
 !-- Compile all class files --
  @@ -221,7 +221,49 @@
   /javac
 /target
   
  +  !-- Compile resource files --
  +  target name=compile-resources depends=init
  +mkdir dir=${build.resources}/
  +copy todir=${build.resources} filtering=yes
  +  fileset dir=${source.resources}
  + include name=**/*/
  +  /fileset
  +/copy
  +  /target
  +
  +  !-- Compile etc files (manifests and such) --
  +  target name=compile-etc depends=init
  +mkdir dir=${build.etc}/
  +copy todir=${build.etc} filtering=yes
  +  fileset dir=${source.etc}
  + include name=**/*/
  +  /fileset
  +/copy
  +  /target
   
  +  !-- Compile bin scripts --
  +  target name=compile-bin depends=init
  +mkdir dir=${build.bin}/
  +copy todir=${build.bin} filtering=yes
  +  fileset dir=${source.bin}
  + include name=**/*/
  +  /fileset
  +/copy
  +
  +fixcrlf srcdir=${build.bin} cr=remove eof=remove
  +  includes=**/*.sh/
  +
  +fixcrlf srcdir=${build.bin} cr=add eof=remove
  +  includes=**/*.bat, **/*.cmd/
  +
  +chmod perm=+x
  +  fileset dir=${build.bin}
  + include name=**/*.sh/
  +  /fileset
  +/chmod
  +  /target
  +
  +
 !-- == --
 !-- Build Jars --
 !-- == --
  @@ -299,78 +341,48 @@
   
   
 !-- == --
  -  !-- Release/Install file copying.  --
  -  !-- == --
  -
  -  !--
  - |  This target is a helper for release and install to consolidate the
  - |  task logic required to copy files.
  -   --
  -  target name=copy-files
  -!-- Copy the generated libraries --
  -mkdir dir=${to.lib}/
  -copy todir=${to.lib} filtering=no
  -  fileset dir=${from.lib}
  - include name=**/*/
  -  /fileset
  -/copy
  -
  -!-- Copy the generated javadocs --
  -mkdir dir=${to.api}/
  -copy todir=${to.api} filtering=no
  -  fileset dir=${from.api}
  - include name=**/*/
  -  /fileset
  -/copy
  -  /target
  -
  -
  -  !-- == --
 !-- Builds a release distribution. --
 !-- == --
   
  -  target name=release 
  -   depends=all
  +  target name=release depends=all
  description=Builds a release distribution.
  -!-- Copy the files to release --
  -antcall target=copy-files
  -  param name=to.lib value=${release.lib}/
  -  param name=from.lib value=${build.jars}/
  -  param name=to.api value=${release.api}/
  -  param name=from.api value=${build.api}/
  -/antcall
  +
  +!-- where should this stuff be released to? --
   
  -!-- Build a jar for the release --
  +  /target
  +
  +  target name=release-archive-prepare depends=release
   mkdir dir=${module.release}/
  -mkdir dir=${module.output}/
  -jar 

[JBoss-dev] CVS update: admin build.xml config.xml

2001-07-30 Thread Jason Dillon

  User: user57  
  Date: 01/07/30 19:29:09

  Modified:.Tag: jboss_buildmagic build.xml config.xml
  Log:
   o Updated some modules from HEAD
   o Converted most modules to new release style (except plugins and manual)
   o Most modules produce the correct binary structure.
   o short of the manual and valid testsuite jars the system will build now.
  
  Revision  ChangesPath
  No   revision
  
  
  No   revision
  
  
  1.1.2.6   +141 -67   admin/Attic/build.xml
  
  Index: build.xml
  ===
  RCS file: /cvsroot/jboss/admin/Attic/build.xml,v
  retrieving revision 1.1.2.5
  retrieving revision 1.1.2.6
  diff -u -r1.1.2.5 -r1.1.2.6
  --- build.xml 2001/07/29 04:57:39 1.1.2.5
  +++ build.xml 2001/07/31 02:29:09 1.1.2.6
  @@ -10,9 +10,9 @@
   !----
   !-- == --
   
  -!-- $Id: build.xml,v 1.1.2.5 2001/07/29 04:57:39 user57 Exp $ --
  +!-- $Id: build.xml,v 1.1.2.6 2001/07/31 02:29:09 user57 Exp $ --
   
  -project name=jboss-admin default=main
  +project default=main
   
 !-- == --
 !-- Basic module configuration --
  @@ -195,7 +195,7 @@
|  documentation compiles.
   --
 target name=compile 
  -   depends=compile-bean-sources, compile-classes
  +   depends=compile-bean-sources, compile-classes, compile-etc, 
compile-resources, compile-bin
  description=Compile all source files./
   
 !-- Compile all class files --
  @@ -240,7 +240,55 @@
   /ejbdoclet
 /target
   
  +  !-- Compile resource files --
  +  target name=compile-resources depends=init
  +mkdir dir=${build.resources}/
  +copy todir=${build.resources} filtering=yes
  +  fileset dir=${source.resources}
  + include name=**/*/
  +  /fileset
  +/copy
  +  /target
  +
  +  !-- Compile etc files (manifests and such) --
  +  target name=compile-etc depends=init
  +mkdir dir=${build.etc}/
  +copy todir=${build.etc} filtering=yes
  +  fileset dir=${source.etc}
  + include name=**/*/
  +  /fileset
  +/copy
  +
  +!-- ??? --
  +copy file=${build.etc}/AdminServerBootstrap-jboss.xml
  +  tofile=${build.etc}/META-INF/jboss.xml/
  +  /target
  +
  +  !-- Compile bin scripts --
  +  target name=compile-bin depends=init
  +mkdir dir=${build.bin}/
  +copy todir=${build.bin} filtering=yes
  +  fileset dir=${source.bin}
  + include name=**/*/
  +  /fileset
  +/copy
  +
  +fixcrlf srcdir=${build.bin} cr=remove eof=remove
  +  includes=**/*.sh/
   
  +fixcrlf srcdir=${build.bin} cr=add eof=remove
  +  includes=**/*.bat, **/*.cmd/
  +
  +!-- need to create unix scripts !!!
  +chmod perm=+x
  +  fileset dir=${build.bin}
  + include name=**/*.sh/
  +  /fileset
  +/chmod
  +--
  +  /target
  +
  +
 !-- == --
 !-- Build Jars --
 !-- == --
  @@ -250,13 +298,43 @@
   --
 target name=jars depends=compile description=Builds all jar files.
   mkdir dir=${build.jars}/
  +
  +!-- Build monitor.jar --
  +jar jarfile=${build.jars}/monitor.jar 
  +  manifest=${build.etc}/monitor.mf
  +  fileset dir=${build.classes}
  +include name=org/hs/**/*.class/
  +include name=org/jboss/admin/*.class/
  +include name=org/jboss/admin/monitor/**/*.class/
  +  /fileset
  +  fileset dir=${build.resources}
  +include name=resources/images/*/
  +include name=resources/lang/*/
  +  /fileset
  +/jar
   
  -!-- Build the module jar --
  -jar jarfile=${build.jars}/${module.name}.jar
  +!-- Build SystemMonitor.jar --
  +jar jarfile=${build.jars}/SystemMonitor.jar
 fileset dir=${build.classes}
  -include name=**/
  +include name=org/jboss/admin/mbean/SystemMonitor*.class/
  +include name=org/jboss/admin/beans/SystemMonitorBean.class/
  +include name=org/jboss/admin/interfaces/SystemMonitor*.class/
 /fileset
   /jar
  +
  +!-- Build admin.jar --
  +jar jarfile=${build.jars}/admin.jar
  +  fileset dir=${build.classes}
  +include name=org/jboss/admin/interfaces/*.class/
  +include name=org/jboss/admin/beans/*.class/
  +include name=org/jboss/admin/mbeans/*.class/
  +  /fileset
  +  fileset dir=${build.etc}
  +include name=META-INF/*.xml/
  +  /fileset
  +/jar
  +
  +!-- TODO: re-add verification of admin.jar --
 /target
   
   
  @@ -318,76 

[JBoss-dev] CVS update: contrib/jetty/src/build build.bat build.sh build.xml

2001-07-30 Thread Jason Dillon

  User: user57  
  Date: 01/07/30 19:37:15

  Removed: jetty/src/build Tag: jboss_buildmagic build.bat build.sh
build.xml
  Log:
   o updated to use new release targets

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



[JBoss-dev] CVS update: contrib/jetty build.xml config.xml

2001-07-30 Thread Jason Dillon

  User: user57  
  Date: 01/07/30 19:37:15

  Modified:jettyTag: jboss_buildmagic build.xml config.xml
  Log:
   o updated to use new release targets
  
  Revision  ChangesPath
  No   revision
  
  
  No   revision
  
  
  1.1.2.5   +46 -64contrib/jetty/Attic/build.xml
  
  Index: build.xml
  ===
  RCS file: /cvsroot/jboss/contrib/jetty/Attic/build.xml,v
  retrieving revision 1.1.2.4
  retrieving revision 1.1.2.5
  diff -u -r1.1.2.4 -r1.1.2.5
  --- build.xml 2001/07/29 04:57:40 1.1.2.4
  +++ build.xml 2001/07/31 02:37:15 1.1.2.5
  @@ -10,9 +10,9 @@
   !----
   !-- == --
   
  -!-- $Id: build.xml,v 1.1.2.4 2001/07/29 04:57:40 user57 Exp $ --
  +!-- $Id: build.xml,v 1.1.2.5 2001/07/31 02:37:15 user57 Exp $ --
   
  -project name=jboss-plugins-jetty default=main
  +project default=main
   
 !-- == --
 !-- Basic module configuration --
  @@ -232,7 +232,7 @@
   !-- Build the module jar --
   jar jarfile=${build.jars}/${module.name}.jar
 fileset dir=${build.classes}
  -include name=**/
  +include name=**/*/
 /fileset
   /jar
 /target
  @@ -290,85 +290,66 @@
private=${javadoc.private}
use=${javadoc.use}
 verbose=${javadoc.verbose} 
  -  group title=JDBC Extension packages=javax.sql*/
  -  group title=J2EE packages=javax*/
  +  !-- group title=??? packages=*/ --
   /javadoc
 /target
   
   
 !-- == --
  -  !-- Release/Install file copying.  --
  +  !-- Builds a release distribution. --
 !-- == --
   
  -  !--
  - |  This target is a helper for release and install to consolidate the
  - |  task logic required to copy files.
  -   --
  -  target name=copy-files
  -!-- Copy the generated libraries --
  -mkdir dir=${to.lib}/
  -copy todir=${to.lib} filtering=no
  -  fileset dir=${from.lib}
  +  target name=release depends=all
  +   description=Builds a release distribution.
  +!-- Copy the generated libraries (lib/ext) --
  +mkdir dir=${release.lib.ext}/
  +copy todir=${release.lib.ext} filtering=no
  +  fileset dir=${build.jars}
include name=**/*/
 /fileset
   /copy
   
  -!-- Copy the generated javadocs --
  -mkdir dir=${to.api}/
  -copy todir=${to.api} filtering=no
  -  fileset dir=${from.api}
  +!-- Copy the generated javadocs (docs/api/module) --
  +mkdir dir=${release.module.api}/
  +copy todir=${release.module.api} filtering=no
  +  fileset dir=${build.api}
include name=**/*/
 /fileset
   /copy
 /target
  -
   
  -  !-- == --
  -  !-- Builds a release distribution. --
  -  !-- == --
  -
  -  target name=release 
  -   depends=all
  -   description=Builds a release distribution.
  -!-- Copy the files to release --
  -antcall target=copy-files
  -  param name=to.lib value=${release.lib}/
  -  param name=from.lib value=${build.jars}/
  -  param name=to.api value=${release.api}/
  -  param name=from.api value=${build.api}/
  -/antcall
  -
  -!-- Build a jar for the release --
  +  target name=release-archive-prepare depends=release
   mkdir dir=${module.release}/
  -mkdir dir=${module.output}/
  -jar jarfile=${module.output}/${module.name}-${build.id}.jar
  +property name=release.archive.basename
  +   value=${module.release}/${release.id}/
  +  /target
  +
  +  target name=release-zip depends=release-archive-prepare
  +   description=Builds a ZIP release distribution.
  +zip zipfile=${release.archive.basename}.zip
 fileset dir=${module.release}
  -include name=**/
  +include name=${release.id}/**/
 /fileset
  -/jar
  +/zip
 /target
  -
   
  -  !-- == --
  -  !-- Install release files into project output. --
  -  !-- == --
  +  target name=release-tar depends=release-archive-prepare
  +   description=Builds a TAR release distribution.
  +tar tarfile=${release.archive.basename}.tar longfile=gnu
  +  basedir=${module.release}
  +  includes=${release.id}/**
  +/tar
  

[JBoss-dev] CVS update: CVSROOT modules

2001-07-30 Thread Jason Dillon

  User: user57  
  Date: 01/07/30 20:00:07

  Modified:.modules
  Log:
   o removed jboss-all-plugins for windows testing, since the win32 cvs client
 does not seem to like it.
  
  Revision  ChangesPath
  1.26  +2 -2  CVSROOT/modules
  
  Index: modules
  ===
  RCS file: /cvsroot/jboss/CVSROOT/modules,v
  retrieving revision 1.25
  retrieving revision 1.26
  diff -u -r1.25 -r1.26
  --- modules   2001/07/28 06:18:56 1.25
  +++ modules   2001/07/31 03:00:07 1.26
  @@ -87,8 +87,8 @@
   
   jboss-all-d jboss-all \
_jboss_support \
  - jboss-all-modules \
  - jboss-all-plugins
  + jboss-all-modules
  +#jboss-all-plugins
   
   jboss-all-modules-a \
_jboss_build \
  
  
  

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



[JBoss-dev] CVS update: build/etc/empty - New directory

2001-07-30 Thread Jason Dillon

  User: user57  
  Date: 01/07/30 20:02:39

  build/etc/empty - New directory

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



[JBoss-dev] CVS update: CVSROOT modules

2001-07-30 Thread Jason Dillon

  User: user57  
  Date: 01/07/30 20:04:40

  Modified:.modules
  Log:
   o using real directories for jboss-all and jboss-all-plugins to try and
 get around a checkout problem with win32 and a tagging problem with UNIX
 when using CVSROOT/Emptydir (which should work).
  
  Revision  ChangesPath
  1.27  +4 -2  CVSROOT/modules
  
  Index: modules
  ===
  RCS file: /cvsroot/jboss/CVSROOT/modules,v
  retrieving revision 1.26
  retrieving revision 1.27
  diff -u -r1.26 -r1.27
  --- modules   2001/07/31 03:00:07 1.26
  +++ modules   2001/07/31 03:04:40 1.27
  @@ -86,9 +86,10 @@
   ##
   
   jboss-all-d jboss-all \
  + build/etc/root \
_jboss_support \
  - jboss-all-modules
  -#jboss-all-plugins
  + jboss-all-modules \
  + jboss-all-plugins
   
   jboss-all-modules-a \
_jboss_build \
  @@ -105,5 +106,6 @@
_jboss_manual
   
   jboss-all-plugins-d plugins \
  + build/etc/empty \
_plugins_tomcat \
_plugins_jetty
  
  
  

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



[JBoss-dev] CVS update: build config.xml

2001-07-30 Thread Jason Dillon

  User: user57  
  Date: 01/07/30 20:14:40

  Modified:.Tag: jboss_buildmagic config.xml
  Log:
   o added README.txt to explain the two directories under build/etc
   o configmodule.group.include now uses groups and modules.
  
  Revision  ChangesPath
  No   revision
  
  
  No   revision
  
  
  1.2.2.14  +19 -11build/config.xml
  
  Index: config.xml
  ===
  RCS file: /cvsroot/jboss/build/config.xml,v
  retrieving revision 1.2.2.13
  retrieving revision 1.2.2.14
  diff -u -r1.2.2.13 -r1.2.2.14
  --- config.xml2001/07/31 02:29:09 1.2.2.13
  +++ config.xml2001/07/31 03:14:40 1.2.2.14
  @@ -7,7 +7,7 @@
   !----
   !-- == --
   
  -!-- $Id: config.xml,v 1.2.2.13 2001/07/31 02:29:09 user57 Exp $ --
  +!-- $Id: config.xml,v 1.2.2.14 2001/07/31 03:14:40 user57 Exp $ --
   
 !-- == --
 !-- Project Setup  --
  @@ -112,42 +112,50 @@
 !-- Module groups --
   
 group name=core
  -include module=j2ee, naming, server/
  +include modules=j2ee, naming, server/
 /group
   
 group name=standard
  -include module=security, messaging, connector, pool/
  +include modules=security, messaging, connector, pool/
 /group
   
 group name=optional
  -include module=cluster, admin, testsuite/
  +include modules=cluster, admin, testsuite/
 /group
   
 group name=other
  -include module=manual/
  +include modules=manual/
 /group
   
  +  group name=standard-plugins
  +include modules=jetty, tomcat/
  +  /group
  +
  +  group name=optional-plugins
  +include modules=openjms/
  +  /group
  +
 !-- Module group groups --
   
 group name=default
  -include group=core, standard, optional/
  +include groups=core, standard, optional/
 /group
   
 group name=most
  -include group=core, standard/
  +include groups=core, standard/
 /group
   
 group name=minimal
  -include group=core/
  +include groups=core/
 /group
   
 group name=plugins
  -include group=standard-plugins, optional-plugins/
  +include groups=standard-plugins, optional-plugins/
 /group
   
 group name=everything
  -include group=core, standard, optional/
  -include group=standard-plugins, optional-plugins/
  +include groups=core, standard, optional/
  +include groups=standard-plugins, optional-plugins/
 /group
   
   /moduleconfig
  
  
  

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



[JBoss-dev] CVS update: tools/planet57/buildmagic/lib buildmagic-tasks.jar

2001-07-30 Thread Jason Dillon

  User: user57  
  Date: 01/07/30 21:22:38

  Modified:planet57/buildmagic/lib Tag: jboss_buildmagic
buildmagic-tasks.jar
  Log:
   o fix for header/footer display on win32
  
  Revision  ChangesPath
  No   revision
  
  
  No   revision
  
  
  1.1.1.1.2.12 +14 -21tools/planet57/buildmagic/lib/buildmagic-tasks.jar
  
Binary file
  
  

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



[JBoss-dev] CVS update: tools/planet57/buildmagic/lib buildmagic-tasks.jar

2001-07-30 Thread Jason Dillon

  User: user57  
  Date: 01/07/30 21:24:18

  Modified:planet57/buildmagic/lib Tag: jboss_buildmagic
buildmagic-tasks.jar
  Log:
   o hrm... windows... =|
  
  Revision  ChangesPath
  No   revision
  
  
  No   revision
  
  
  1.1.1.1.2.13 +10 -9 tools/planet57/buildmagic/lib/buildmagic-tasks.jar
  
Binary file
  
  

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



[JBoss-dev] CVS update: build config.xml

2001-07-30 Thread Jason Dillon

  User: user57  
  Date: 01/07/30 21:24:18

  Modified:.Tag: jboss_buildmagic config.xml
  Log:
   o hrm... windows... =|
  
  Revision  ChangesPath
  No   revision
  
  
  No   revision
  
  
  1.2.2.15  +2 -3  build/config.xml
  
  Index: config.xml
  ===
  RCS file: /cvsroot/jboss/build/config.xml,v
  retrieving revision 1.2.2.14
  retrieving revision 1.2.2.15
  diff -u -r1.2.2.14 -r1.2.2.15
  --- config.xml2001/07/31 03:14:40 1.2.2.14
  +++ config.xml2001/07/31 04:24:18 1.2.2.15
  @@ -7,7 +7,7 @@
   !----
   !-- == --
   
  -!-- $Id: config.xml,v 1.2.2.14 2001/07/31 03:14:40 user57 Exp $ --
  +!-- $Id: config.xml,v 1.2.2.15 2001/07/31 04:24:18 user57 Exp $ --
   
 !-- == --
 !-- Project Setup  --
  @@ -42,8 +42,7 @@
 property name=executemodules.footer![CDATA[
   ==
   ==  Finished with ${target} in module '${module}'.
  -==
  -]]/property
  +
==]]/property
   
 !-- Where release generated files will go --
 property name=release.id 
value=${project.name}-${project.version}-${build.id}/
  
  
  

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



[JBoss-dev] CVS update: jbossmx config.xml

2001-07-30 Thread Jason Dillon

  User: user57  
  Date: 01/07/30 22:05:59

  Modified:.Tag: jboss_buildmagic config.xml
  Log:
   o fixed up manual build system, still does not work, but uses common
 release targets.
  
  Revision  ChangesPath
  No   revision
  
  
  No   revision
  
  
  1.1.2.6   +1 -7  jbossmx/Attic/config.xml
  
  Index: config.xml
  ===
  RCS file: /cvsroot/jboss/jbossmx/Attic/config.xml,v
  retrieving revision 1.1.2.5
  retrieving revision 1.1.2.6
  diff -u -r1.1.2.5 -r1.1.2.6
  --- config.xml2001/07/31 02:29:10 1.1.2.5
  +++ config.xml2001/07/31 05:05:59 1.1.2.6
  @@ -7,7 +7,7 @@
   !----
   !-- == --
   
  -!-- $Id: config.xml,v 1.1.2.5 2001/07/31 02:29:10 user57 Exp $ --
  +!-- $Id: config.xml,v 1.1.2.6 2001/07/31 05:05:59 user57 Exp $ --
   
 !-- == --
 !-- Module Setup   --
  @@ -197,12 +197,6 @@
 property name=release.api value=${release.docs}/api/
 property name=release.module.docs value=${release.docs}/${module.name}/
 property name=release.module.api value=${release.api}/${module.name}/
  -
  -  !-- Not really sure why these are here --
  -  property name=release.admin value=${release.root}/admin/
  -  property name=release.admin.client value=${release.admin}/client/
  -  property name=release.admin.client.lib value=${release.client}/lib/
  -  property name=release.admin.components value=${release.admin}/components/
   
   
 !-- == --
  
  
  

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



[JBoss-dev] CVS update: jboss config.xml

2001-07-30 Thread Jason Dillon

  User: user57  
  Date: 01/07/30 22:06:00

  Modified:.Tag: jboss_buildmagic config.xml
  Log:
   o fixed up manual build system, still does not work, but uses common
 release targets.
  
  Revision  ChangesPath
  No   revision
  
  
  No   revision
  
  
  1.1.2.9   +1 -7  jboss/Attic/config.xml
  
  Index: config.xml
  ===
  RCS file: /cvsroot/jboss/jboss/Attic/config.xml,v
  retrieving revision 1.1.2.8
  retrieving revision 1.1.2.9
  diff -u -r1.1.2.8 -r1.1.2.9
  --- config.xml2001/07/30 23:52:29 1.1.2.8
  +++ config.xml2001/07/31 05:06:00 1.1.2.9
  @@ -7,7 +7,7 @@
   !----
   !-- == --
   
  -!-- $Id: config.xml,v 1.1.2.8 2001/07/30 23:52:29 user57 Exp $ --
  +!-- $Id: config.xml,v 1.1.2.9 2001/07/31 05:06:00 user57 Exp $ --
   
 !-- == --
 !-- Module Setup   --
  @@ -247,12 +247,6 @@
 property name=release.api value=${release.docs}/api/
 property name=release.module.docs value=${release.docs}/${module.name}/
 property name=release.module.api value=${release.api}/${module.name}/
  -
  -  !-- Not really sure why these are here --
  -  property name=release.admin value=${release.root}/admin/
  -  property name=release.admin.client value=${release.admin}/client/
  -  property name=release.admin.client.lib value=${release.client}/lib/
  -  property name=release.admin.components value=${release.admin}/components/
   
   
 !-- == --
  
  
  

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



[JBoss-dev] CVS update: contrib/jetty config.xml

2001-07-30 Thread Jason Dillon

  User: user57  
  Date: 01/07/30 22:06:00

  Modified:jettyTag: jboss_buildmagic config.xml
  Log:
   o fixed up manual build system, still does not work, but uses common
 release targets.
  
  Revision  ChangesPath
  No   revision
  
  
  No   revision
  
  
  1.1.2.4   +1 -7  contrib/jetty/Attic/config.xml
  
  Index: config.xml
  ===
  RCS file: /cvsroot/jboss/contrib/jetty/Attic/config.xml,v
  retrieving revision 1.1.2.3
  retrieving revision 1.1.2.4
  diff -u -r1.1.2.3 -r1.1.2.4
  --- config.xml2001/07/31 02:37:15 1.1.2.3
  +++ config.xml2001/07/31 05:06:00 1.1.2.4
  @@ -7,7 +7,7 @@
   !----
   !-- == --
   
  -!-- $Id: config.xml,v 1.1.2.3 2001/07/31 02:37:15 user57 Exp $ --
  +!-- $Id: config.xml,v 1.1.2.4 2001/07/31 05:06:00 user57 Exp $ --
   
 !-- == --
 !-- Module Setup   --
  @@ -175,12 +175,6 @@
 property name=release.api value=${release.docs}/api/
 property name=release.module.docs value=${release.docs}/${module.name}/
 property name=release.module.api value=${release.api}/${module.name}/
  -
  -  !-- Not really sure why these are here --
  -  property name=release.admin value=${release.root}/admin/
  -  property name=release.admin.client value=${release.admin}/client/
  -  property name=release.admin.client.lib value=${release.client}/lib/
  -  property name=release.admin.components value=${release.admin}/components/
   
   
 !-- == --
  
  
  

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



[JBoss-dev] CVS update: jbosscx config.xml

2001-07-30 Thread Jason Dillon

  User: user57  
  Date: 01/07/30 22:05:59

  Modified:.Tag: jboss_buildmagic config.xml
  Log:
   o fixed up manual build system, still does not work, but uses common
 release targets.
  
  Revision  ChangesPath
  No   revision
  
  
  No   revision
  
  
  1.1.2.4   +1 -7  jbosscx/Attic/config.xml
  
  Index: config.xml
  ===
  RCS file: /cvsroot/jboss/jbosscx/Attic/config.xml,v
  retrieving revision 1.1.2.3
  retrieving revision 1.1.2.4
  diff -u -r1.1.2.3 -r1.1.2.4
  --- config.xml2001/07/31 02:29:10 1.1.2.3
  +++ config.xml2001/07/31 05:05:59 1.1.2.4
  @@ -7,7 +7,7 @@
   !----
   !-- == --
   
  -!-- $Id: config.xml,v 1.1.2.3 2001/07/31 02:29:10 user57 Exp $ --
  +!-- $Id: config.xml,v 1.1.2.4 2001/07/31 05:05:59 user57 Exp $ --
   
 !-- == --
 !-- Module Setup   --
  @@ -174,12 +174,6 @@
 property name=release.api value=${release.docs}/api/
 property name=release.module.docs value=${release.docs}/${module.name}/
 property name=release.module.api value=${release.api}/${module.name}/
  -
  -  !-- Not really sure why these are here --
  -  property name=release.admin value=${release.root}/admin/
  -  property name=release.admin.client value=${release.admin}/client/
  -  property name=release.admin.client.lib value=${release.client}/lib/
  -  property name=release.admin.components value=${release.admin}/components/
   
   
 !-- == --
  
  
  

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



[JBoss-dev] CVS update: jbosspool config.xml

2001-07-30 Thread Jason Dillon

  User: user57  
  Date: 01/07/30 22:06:00

  Modified:.Tag: jboss_buildmagic config.xml
  Log:
   o fixed up manual build system, still does not work, but uses common
 release targets.
  
  Revision  ChangesPath
  No   revision
  
  
  No   revision
  
  
  1.1.2.4   +1 -7  jbosspool/Attic/config.xml
  
  Index: config.xml
  ===
  RCS file: /cvsroot/jboss/jbosspool/Attic/config.xml,v
  retrieving revision 1.1.2.3
  retrieving revision 1.1.2.4
  diff -u -r1.1.2.3 -r1.1.2.4
  --- config.xml2001/07/31 02:29:11 1.1.2.3
  +++ config.xml2001/07/31 05:06:00 1.1.2.4
  @@ -7,7 +7,7 @@
   !----
   !-- == --
   
  -!-- $Id: config.xml,v 1.1.2.3 2001/07/31 02:29:11 user57 Exp $ --
  +!-- $Id: config.xml,v 1.1.2.4 2001/07/31 05:06:00 user57 Exp $ --
   
 !-- == --
 !-- Module Setup   --
  @@ -200,12 +200,6 @@
 property name=release.api value=${release.docs}/api/
 property name=release.module.docs value=${release.docs}/${module.name}/
 property name=release.module.api value=${release.api}/${module.name}/
  -
  -  !-- Not really sure why these are here --
  -  property name=release.admin value=${release.root}/admin/
  -  property name=release.admin.client value=${release.admin}/client/
  -  property name=release.admin.client.lib value=${release.client}/lib/
  -  property name=release.admin.components value=${release.admin}/components/
   
   
 !-- == --
  
  
  

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



[JBoss-dev] CVS update: manual build.xml config.xml

2001-07-30 Thread Jason Dillon

  User: user57  
  Date: 01/07/30 22:05:59

  Modified:.Tag: jboss_buildmagic build.xml config.xml
  Log:
   o fixed up manual build system, still does not work, but uses common
 release targets.
  
  Revision  ChangesPath
  No   revision
  
  
  No   revision
  
  
  1.1.2.4   +40 -159   manual/Attic/build.xml
  
  Index: build.xml
  ===
  RCS file: /cvsroot/jboss/manual/Attic/build.xml,v
  retrieving revision 1.1.2.3
  retrieving revision 1.1.2.4
  diff -u -r1.1.2.3 -r1.1.2.4
  --- build.xml 2001/07/29 02:13:40 1.1.2.3
  +++ build.xml 2001/07/31 05:05:59 1.1.2.4
  @@ -10,9 +10,9 @@
   !----
   !-- == --
   
  -!-- $Id: build.xml,v 1.1.2.3 2001/07/29 02:13:40 user57 Exp $ --
  +!-- $Id: build.xml,v 1.1.2.4 2001/07/31 05:05:59 user57 Exp $ --
   
  -project name=jboss-manual default=main
  +project default=main
   
 !-- == --
 !-- Basic module configuration --
  @@ -195,39 +195,8 @@
|  documentation compiles.
   --
 target name=compile 
  -   depends=compile-classes
  description=Compile all source files./
   
  -  !-- Compile all class files --
  -  target name=compile-classes depends=init
  -mkdir dir=${build.classes}/
  -javac destdir=${build.classes}
  -   optimize=${javac.optimize}
  -target=${javac.target}
  -   debug=${javac.debug}
  -depend=${javac.depend}
  -verbose=${javac.verbose}
  -deprecation=${javac.deprecation}
  -includeAntRuntime=${javac.include.ant.runtime}
  -includeJavaRuntime=${javac.include.java.runtime}
  -failonerror=${javac.fail.onerror}
  -   src path=${source.java}/
  -   classpath refid=javac.classpath/
  -   include name=${javac.includes}/
  -   exclude name=${javac.excludes}/
  -/javac
  -  /target
  -
  -  !-- Compile resource files --
  -  target name=compile-resources depends=init
  -mkdir dir=${build.resources}/
  -copy todir=${build.resources} filtering=yes
  -  fileset dir=${source.resources}
  - include name=**/*/
  -  /fileset
  -/copy
  -  /target
  -
   
 !-- == --
 !-- Build Jars --
  @@ -237,24 +206,6 @@
|  Build all jar files.
   --
 target name=jars depends=compile description=Builds all jar files.
  -mkdir dir=${build.jars}/
  -
  -!-- Build the j2ee jar --
  -jar jarfile=${build.jars}/jboss-j2ee.jar
  -  fileset dir=${build.classes}
  -include name=**/
  -!-- do not include the bits that go into jdbc_ext --
  -exclude name=javax/sql/**/
  -  /fileset
  -/jar
  -
  -!-- Build the jdbc ext jar --
  -jar jarfile=${build.jars}/jboss-jdbc_ext.jar
  -  fileset dir=${build.classes}
  -!-- only include jdbc classes --
  -include name=javax/sql/**/
  -  /fileset
  -/jar
 /target
   
   
  @@ -268,54 +219,9 @@
|  This target should depend on other docs-* targets for each 
|  different type of docuementation that is to be generated.
   --
  -  target name=docs depends=docs-api
  +  target name=docs depends=html, printable-html, pdf
  description=Builds all documentation./
   
  -  !-- Javadocs is an exception, but provide a docs-api to conform. --
  -  target name=docs-api depends=javadocs/
  -
  -  !-- 
  - |  Check if we need to build javadocs 
  - |
  - |  Javadocs will only be generated if one or more .java source files
  - |  is newer than the generated index.html.
  ---
  -  target name=javadocs-check depends=init
  -!-- if index.html is newer than the sources we are up to date --
  -uptodate property=javadoc-generated-already
  -   targetfile=${build.api}/index.html
  -  srcfiles dir=${source.java} includes=**/*.java/
  -/uptodate
  -
  -!-- create the directory here to prevent install/release from failing --
  -mkdir dir=${build.api}/
  -  /target
  -
  -  !-- Generate Javadoc if we are out of date --
  -  target name=javadocs 
  -   depends=javadocs-check 
  -   unless=javadoc-generated-already
  -javadoc packagenames=${javadoc.packages}
  - sourcepath=${source.java}
  - destdir=${build.api}
  - classpathref=javadoc.classpath
  - windowtitle=${javadoc.windowtitle}
  -  splitindex=${javadoc.splitindex}
  - doctitle=${javadoc.doctitle}
  - author=${javadoc.author}
  - version=${javadoc.version}
  - 

[JBoss-dev] CVS update: jbosstest config.xml

2001-07-30 Thread Jason Dillon

  User: user57  
  Date: 01/07/30 22:06:00

  Modified:.Tag: jboss_buildmagic config.xml
  Log:
   o fixed up manual build system, still does not work, but uses common
 release targets.
  
  Revision  ChangesPath
  No   revision
  
  
  No   revision
  
  
  1.1.2.4   +1 -7  jbosstest/Attic/config.xml
  
  Index: config.xml
  ===
  RCS file: /cvsroot/jboss/jbosstest/Attic/config.xml,v
  retrieving revision 1.1.2.3
  retrieving revision 1.1.2.4
  diff -u -r1.1.2.3 -r1.1.2.4
  --- config.xml2001/07/31 02:29:12 1.1.2.3
  +++ config.xml2001/07/31 05:06:00 1.1.2.4
  @@ -7,7 +7,7 @@
   !----
   !-- == --
   
  -!-- $Id: config.xml,v 1.1.2.3 2001/07/31 02:29:12 user57 Exp $ --
  +!-- $Id: config.xml,v 1.1.2.4 2001/07/31 05:06:00 user57 Exp $ --
   
 !-- == --
 !-- Module Setup   --
  @@ -261,12 +261,6 @@
 property name=release.api value=${release.docs}/api/
 property name=release.module.docs value=${release.docs}/${module.name}/
 property name=release.module.api value=${release.api}/${module.name}/
  -
  -  !-- Not really sure why these are here --
  -  property name=release.admin value=${release.root}/admin/
  -  property name=release.admin.client value=${release.admin}/client/
  -  property name=release.admin.client.lib value=${release.client}/lib/
  -  property name=release.admin.components value=${release.admin}/components/
   
   
 !-- == --
  
  
  

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



[JBoss-dev] CVS update: jboss-j2ee config.xml

2001-07-30 Thread Jason Dillon

  User: user57  
  Date: 01/07/30 22:05:59

  Modified:.Tag: jboss_buildmagic config.xml
  Log:
   o fixed up manual build system, still does not work, but uses common
 release targets.
  
  Revision  ChangesPath
  No   revision
  
  
  No   revision
  
  
  1.1.2.6   +1 -7  jboss-j2ee/Attic/config.xml
  
  Index: config.xml
  ===
  RCS file: /cvsroot/jboss/jboss-j2ee/Attic/config.xml,v
  retrieving revision 1.1.2.5
  retrieving revision 1.1.2.6
  diff -u -r1.1.2.5 -r1.1.2.6
  --- config.xml2001/07/30 23:52:28 1.1.2.5
  +++ config.xml2001/07/31 05:05:59 1.1.2.6
  @@ -7,7 +7,7 @@
   !----
   !-- == --
   
  -!-- $Id: config.xml,v 1.1.2.5 2001/07/30 23:52:28 user57 Exp $ --
  +!-- $Id: config.xml,v 1.1.2.6 2001/07/31 05:05:59 user57 Exp $ --
   
 !-- == --
 !-- Module Setup   --
  @@ -121,12 +121,6 @@
 property name=release.api value=${release.docs}/api/
 property name=release.module.docs value=${release.docs}/${module.name}/
 property name=release.module.api value=${release.api}/${module.name}/
  -
  -  !-- Not really sure why these are here --
  -  property name=release.admin value=${release.root}/admin/
  -  property name=release.admin.client value=${release.admin}/client/
  -  property name=release.admin.client.lib value=${release.client}/lib/
  -  property name=release.admin.components value=${release.admin}/components/
   
   
 !-- == --
  
  
  

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



[JBoss-dev] CVS update: jbossmq config.xml

2001-07-30 Thread Jason Dillon

  User: user57  
  Date: 01/07/30 22:06:00

  Modified:.Tag: jboss_buildmagic config.xml
  Log:
   o fixed up manual build system, still does not work, but uses common
 release targets.
  
  Revision  ChangesPath
  No   revision
  
  
  No   revision
  
  
  1.1.2.5   +1 -14 jbossmq/Attic/config.xml
  
  Index: config.xml
  ===
  RCS file: /cvsroot/jboss/jbossmq/Attic/config.xml,v
  retrieving revision 1.1.2.4
  retrieving revision 1.1.2.5
  diff -u -r1.1.2.4 -r1.1.2.5
  --- config.xml2001/07/31 02:29:10 1.1.2.4
  +++ config.xml2001/07/31 05:06:00 1.1.2.5
  @@ -6,15 +6,8 @@
   !--  See terms of license at http://www.gnu.org.   --
   !----
   !-- == --
  -!----
  -!--  Module configuration. --
  -!----
  -!--Define configuration elements that are used by the module build --
  -!--system here.--
  -!----
  -!-- == --
   
  -!-- $Id: config.xml,v 1.1.2.4 2001/07/31 02:29:10 user57 Exp $ --
  +!-- $Id: config.xml,v 1.1.2.5 2001/07/31 05:06:00 user57 Exp $ --
   
 !-- == --
 !-- Module Setup   --
  @@ -237,12 +230,6 @@
 property name=release.api value=${release.docs}/api/
 property name=release.module.docs value=${release.docs}/${module.name}/
 property name=release.module.api value=${release.api}/${module.name}/
  -
  -  !-- Not really sure why these are here --
  -  property name=release.admin value=${release.root}/admin/
  -  property name=release.admin.client value=${release.admin}/client/
  -  property name=release.admin.client.lib value=${release.client}/lib/
  -  property name=release.admin.components value=${release.admin}/components/
   
   
 !-- == --
  
  
  

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



[JBoss-dev] CVS update: jnp config.xml

2001-07-30 Thread Jason Dillon

  User: user57  
  Date: 01/07/30 22:06:00

  Modified:.Tag: jboss_buildmagic config.xml
  Log:
   o fixed up manual build system, still does not work, but uses common
 release targets.
  
  Revision  ChangesPath
  No   revision
  
  
  No   revision
  
  
  1.1.2.6   +1 -7  jnp/Attic/config.xml
  
  Index: config.xml
  ===
  RCS file: /cvsroot/jboss/jnp/Attic/config.xml,v
  retrieving revision 1.1.2.5
  retrieving revision 1.1.2.6
  diff -u -r1.1.2.5 -r1.1.2.6
  --- config.xml2001/07/30 23:52:28 1.1.2.5
  +++ config.xml2001/07/31 05:06:00 1.1.2.6
  @@ -7,7 +7,7 @@
   !----
   !-- == --
   
  -!-- $Id: config.xml,v 1.1.2.5 2001/07/30 23:52:28 user57 Exp $ --
  +!-- $Id: config.xml,v 1.1.2.6 2001/07/31 05:06:00 user57 Exp $ --
   
 !-- == --
 !-- Module Setup   --
  @@ -142,12 +142,6 @@
 property name=release.api value=${release.docs}/api/
 property name=release.module.docs value=${release.docs}/${module.name}/
 property name=release.module.api value=${release.api}/${module.name}/
  -
  -  !-- Not really sure why these are here --
  -  property name=release.admin value=${release.root}/admin/
  -  property name=release.admin.client value=${release.admin}/client/
  -  property name=release.admin.client.lib value=${release.client}/lib/
  -  property name=release.admin.components value=${release.admin}/components/
   
   
 !-- == --
  
  
  

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



[JBoss-dev] CVS update: tools/planet57/buildmagic/lib buildmagic-tasks.jar

2001-07-30 Thread Jason Dillon

  User: user57  
  Date: 01/07/30 22:06:01

  Modified:planet57/buildmagic/lib Tag: jboss_buildmagic
buildmagic-tasks.jar
  Log:
   o fixed up manual build system, still does not work, but uses common
 release targets.
  
  Revision  ChangesPath
  No   revision
  
  
  No   revision
  
  
  1.1.1.1.2.14 +22 -10tools/planet57/buildmagic/lib/buildmagic-tasks.jar
  
Binary file
  
  

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



[JBoss-dev] CVS update: jbosstest/src/tasks/org/jboss/ant - New directory

2001-07-30 Thread Jason Dillon

  User: user57  
  Date: 01/07/30 22:28:28

  jbosstest/src/tasks/org/jboss/ant - New directory

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



[JBoss-dev] CVS update: jbosstest/src/tasks/org/jboss/ant/taskdefs - New directory

2001-07-30 Thread Jason Dillon

  User: user57  
  Date: 01/07/30 22:28:33

  jbosstest/src/tasks/org/jboss/ant/taskdefs - New directory

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



[JBoss-dev] CVS update: jbosstest/src/tasks/org - New directory

2001-07-30 Thread Jason Dillon

  User: user57  
  Date: 01/07/30 22:28:24

  jbosstest/src/tasks/org - New directory

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



[JBoss-dev] CVS update: jbosstest/src/tasks - New directory

2001-07-30 Thread Jason Dillon

  User: user57  
  Date: 01/07/30 22:28:20

  jbosstest/src/tasks - New directory

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



[JBoss-dev] CVS update: jbosstest/src/tasks/org/jboss - New directory

2001-07-30 Thread Jason Dillon

  User: user57  
  Date: 01/07/30 22:28:26

  jbosstest/src/tasks/org/jboss - New directory

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



[JBoss-dev] CVS update: jbosstest/src/main/org/jboss/ant/taskdefs ConcatenateFiles.java

2001-07-30 Thread Jason Dillon

  User: user57  
  Date: 01/07/30 22:32:27

  Removed: src/main/org/jboss/ant/taskdefs Tag: jboss_buildmagic
ConcatenateFiles.java
  Log:
   o compiling required ant extentions for testsuite module inside of
 bootstrap target.
   o moved ant extentions sources to src/tasks.

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



[JBoss-dev] CVS update: jbosstest/lib jboss-ant-addon.jar

2001-07-30 Thread Jason Dillon

  User: user57  
  Date: 01/07/30 22:32:27

  Removed: lib  Tag: jboss_buildmagic jboss-ant-addon.jar
  Log:
   o compiling required ant extentions for testsuite module inside of
 bootstrap target.
   o moved ant extentions sources to src/tasks.

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



[JBoss-dev] CVS update: jbosstest/src/tasks/org/jboss/ant/taskdefs ConcatenateFiles.java

2001-07-30 Thread Jason Dillon

  User: user57  
  Date: 01/07/30 22:32:27

  Added:   src/tasks/org/jboss/ant/taskdefs Tag: jboss_buildmagic
ConcatenateFiles.java
  Log:
   o compiling required ant extentions for testsuite module inside of
 bootstrap target.
   o moved ant extentions sources to src/tasks.
  
  Revision  ChangesPath
  No   revision
  
  
  No   revision
  
  
  1.1.2.1   +211 -0
jbosstest/src/tasks/org/jboss/ant/taskdefs/Attic/ConcatenateFiles.java
  
  
  
  

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



[JBoss-dev] CVS update: jbosstest build.xml config.xml

2001-07-30 Thread Jason Dillon

  User: user57  
  Date: 01/07/30 22:32:27

  Modified:.Tag: jboss_buildmagic build.xml config.xml
  Log:
   o compiling required ant extentions for testsuite module inside of
 bootstrap target.
   o moved ant extentions sources to src/tasks.
  
  Revision  ChangesPath
  No   revision
  
  
  No   revision
  
  
  1.1.2.5   +23 -4 jbosstest/Attic/build.xml
  
  Index: build.xml
  ===
  RCS file: /cvsroot/jboss/jbosstest/Attic/build.xml,v
  retrieving revision 1.1.2.4
  retrieving revision 1.1.2.5
  diff -u -r1.1.2.4 -r1.1.2.5
  --- build.xml 2001/07/31 02:29:12 1.1.2.4
  +++ build.xml 2001/07/31 05:32:27 1.1.2.5
  @@ -10,7 +10,7 @@
   !----
   !-- == --
   
  -!-- $Id: build.xml,v 1.1.2.4 2001/07/31 02:29:12 user57 Exp $ --
  +!-- $Id: build.xml,v 1.1.2.5 2001/07/31 05:32:27 user57 Exp $ --
   
   project default=main
   
  @@ -97,6 +97,28 @@
 target name=bootstrap 
  depends=bootstrap-init 
  unless=bootstraped-already
  +
  +mkdir dir=${local.task.output}/
  +javac destdir=${local.task.output}
  +   optimize=${javac.optimize}
  +target=${javac.target}
  +   debug=${javac.debug}
  +depend=${javac.depend}
  +verbose=${javac.verbose}
  +deprecation=${javac.deprecation}
  +includeAntRuntime=true
  +includeJavaRuntime=true
  +failonerror=${javac.fail.onerror}
  +   src path=${local.task.source}/
  +   include name=**/
  +/javac
  +jar jarfile=${local.task.jar}
  +  fileset dir=${local.task.output}
  +exclude name=*.jar/
  +include name=**/
  +  /fileset
  +/jar
  +
   property name=bootstraped-already value=true/
 /target
   
  @@ -215,9 +237,6 @@
  classpath refid=javac.classpath/
  include name=${javac.includes}/
  exclude name=${javac.excludes}/
  -
  -   !-- for now don't compile ant stuff --
  -   exclude name=org/jboss/ant/taskdefs/**/
   /javac
 /target
   
  
  
  
  1.1.2.5   +11 -8 jbosstest/Attic/config.xml
  
  Index: config.xml
  ===
  RCS file: /cvsroot/jboss/jbosstest/Attic/config.xml,v
  retrieving revision 1.1.2.4
  retrieving revision 1.1.2.5
  diff -u -r1.1.2.4 -r1.1.2.5
  --- config.xml2001/07/31 05:06:00 1.1.2.4
  +++ config.xml2001/07/31 05:32:27 1.1.2.5
  @@ -7,7 +7,7 @@
   !----
   !-- == --
   
  -!-- $Id: config.xml,v 1.1.2.4 2001/07/31 05:06:00 user57 Exp $ --
  +!-- $Id: config.xml,v 1.1.2.5 2001/07/31 05:32:27 user57 Exp $ --
   
 !-- == --
 !-- Module Setup   --
  @@ -23,13 +23,12 @@
 !-- Tool Setup --
 !-- == --
   
  -  !-- Local Tasks (should move to a bootstrap) --
  -  property name=local.tasks.root value=${module.root}/
  -  property name=local.tasks.lib value=${local.tasks.root}/lib/
  +  !-- Bootstrap Local Tasks --
  +  property name=local.task.source value=${module.source}/tasks/
  +  property name=local.task.output value=${module.output}/tasks/
  +  property name=local.task.jar value=${local.task.output}/tasks.jar/
 path id=local.task.classpath
  -fileset dir=${local.tasks.lib}
  -  include name=**/*.jar/
  -/fileset
  +pathelement path=${local.task.jar}/
 /path
   
   
  @@ -147,7 +146,7 @@
 property name=jboss.naming.root value=${project.root}/naming/output/
 property name=jboss.naming.lib value=${jboss.naming.root}/lib/
 path id=jboss.naming.classpath
  -pathelement path=${jboss.naming.lib}/jnpserver.jar/
  +pathelement path=${jboss.naming.lib}/jnp.jar/
 /path
   
 !-- Server --
  @@ -169,6 +168,7 @@
 property name=jboss.security.lib value=${jboss.security.root}/lib/
 path id=jboss.security.classpath
   pathelement path=${jboss.security.lib}/jbosssx.jar/
  +pathelement path=${jboss.security.lib}/jbosssx-client.jar/
   pathelement path=${jboss.security.lib}/jboss-jaas.jar/
 /path
   
  @@ -177,6 +177,7 @@
 property name=jboss.messaging.lib value=${jboss.messaging.root}/lib/
 path id=jboss.messaging.classpath
   pathelement path=${jboss.messaging.lib}/jbossmq.jar/
  +pathelement path=${jboss.messaging.lib}/jbossmq-client.jar/
 /path
   
 !-- The combined depedant module classpath --
  @@ -275,4 +276,6 @@
 !-- Executed at the end of the 

[JBoss-dev] CVS update: jbosstest/src/etc/stylesheets - New directory

2001-07-30 Thread Jason Dillon

  User: user57  
  Date: 01/07/30 22:36:08

  jbosstest/src/etc/stylesheets - New directory

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



[JBoss-dev] CVS update: jbosstest/src/build/stylesheets summary1.xsl summary2.xsl

2001-07-30 Thread Jason Dillon

  User: user57  
  Date: 01/07/30 23:13:36

  Removed: src/build/stylesheets Tag: jboss_buildmagic summary1.xsl
summary2.xsl
  Log:
   o using execmodules and configmodules tasks to control execution of
 testsuite subproject build files.  They still need there namesspace
 updated though.
   o moved the stylesheets from build/stylesheets to etc/stylesheets

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



[JBoss-dev] CVS update: jbosstest/docs index.html styles.css

2001-07-30 Thread Jason Dillon

  User: user57  
  Date: 01/07/30 23:13:36

  Removed: docs Tag: jboss_buildmagic index.html styles.css
  Log:
   o using execmodules and configmodules tasks to control execution of
 testsuite subproject build files.  They still need there namesspace
 updated though.
   o moved the stylesheets from build/stylesheets to etc/stylesheets

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



[JBoss-dev] CVS update: jbosstest/src/etc/stylesheets details1.xsl summary1.xsl summary2.xsl

2001-07-30 Thread Jason Dillon

  User: user57  
  Date: 01/07/30 23:13:36

  Added:   src/etc/stylesheets Tag: jboss_buildmagic details1.xsl
summary1.xsl summary2.xsl
  Log:
   o using execmodules and configmodules tasks to control execution of
 testsuite subproject build files.  They still need there namesspace
 updated though.
   o moved the stylesheets from build/stylesheets to etc/stylesheets
  
  Revision  ChangesPath
  No   revision
  
  
  No   revision
  
  
  1.1.2.1   +166 -0jbosstest/src/etc/stylesheets/Attic/details1.xsl
  
  
  
  
  1.1.2.1   +74 -0 jbosstest/src/etc/stylesheets/Attic/summary1.xsl
  
  
  
  
  1.1.2.1   +225 -0jbosstest/src/etc/stylesheets/Attic/summary2.xsl
  
  
  
  

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



[JBoss-dev] CVS update: tools/planet57/buildmagic/lib buildmagic-tasks.jar

2001-07-30 Thread Jason Dillon

  User: user57  
  Date: 01/07/30 23:13:36

  Modified:planet57/buildmagic/lib Tag: jboss_buildmagic
buildmagic-tasks.jar
  Log:
   o using execmodules and configmodules tasks to control execution of
 testsuite subproject build files.  They still need there namesspace
 updated though.
   o moved the stylesheets from build/stylesheets to etc/stylesheets
  
  Revision  ChangesPath
  No   revision
  
  
  No   revision
  
  
  1.1.1.1.2.15 +34 -49tools/planet57/buildmagic/lib/buildmagic-tasks.jar
  
Binary file
  
  

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



[JBoss-dev] CVS update: build build.xml

2001-07-30 Thread Jason Dillon

  User: user57  
  Date: 01/07/30 23:13:36

  Modified:.Tag: jboss_buildmagic build.xml
  Log:
   o using execmodules and configmodules tasks to control execution of
 testsuite subproject build files.  They still need there namesspace
 updated though.
   o moved the stylesheets from build/stylesheets to etc/stylesheets
  
  Revision  ChangesPath
  No   revision
  
  
  No   revision
  
  
  1.2.2.14  +17 -17build/build.xml
  
  Index: build.xml
  ===
  RCS file: /cvsroot/jboss/build/build.xml,v
  retrieving revision 1.2.2.13
  retrieving revision 1.2.2.14
  diff -u -r1.2.2.13 -r1.2.2.14
  --- build.xml 2001/07/31 02:29:09 1.2.2.13
  +++ build.xml 2001/07/31 06:13:36 1.2.2.14
  @@ -10,7 +10,7 @@
   !----
   !-- == --
   
  -!-- $Id: build.xml,v 1.2.2.13 2001/07/31 02:29:09 user57 Exp $ --
  +!-- $Id: build.xml,v 1.2.2.14 2001/07/31 06:13:36 user57 Exp $ --
   
   project default=main basedir=..
   
  @@ -235,7 +235,7 @@
   
 !-- Invoke the 'all' on all configured modules --
 target name=all-all depends=init
  -execmodules target=all modules=${modules} root=${project.root}
  +execmodules target=all modules=${modules} root=${project.root}/${module}
 skipmissing=${executemodules.skipmissing}
 header message=${executemodules.header}/
 footer message=${executemodules.footer}/
  @@ -244,7 +244,7 @@
   
 !-- Invoke the 'clean' on all configured modules --
 target name=all-clean depends=init
  -execmodules target=clean modules=${modules} root=${project.root}
  +execmodules target=clean modules=${modules} 
root=${project.root}/${module}
 skipmissing=${executemodules.skipmissing}
 header message=${executemodules.header}/
 footer message=${executemodules.footer}/
  @@ -253,7 +253,7 @@
   
 !-- Invoke the 'clobber' on all configured modules --
 target name=all-clobber depends=init
  -execmodules target=clobber modules=${modules} root=${project.root}
  +execmodules target=clobber modules=${modules} 
root=${project.root}/${module}
 skipmissing=${executemodules.skipmissing}
 header message=${executemodules.header}/
 footer message=${executemodules.footer}/
  @@ -262,7 +262,7 @@
   
 !-- Invoke the 'compile' on all configured modules --
 target name=all-compile depends=init
  -execmodules target=compile modules=${modules} root=${project.root}
  +execmodules target=compile modules=${modules} 
root=${project.root}/${module}
 skipmissing=${executemodules.skipmissing}
 header message=${executemodules.header}/
 footer message=${executemodules.footer}/
  @@ -271,7 +271,7 @@
   
 !-- Invoke the 'configure' on all configured modules --
 target name=all-configure depends=init
  -execmodules target=configure modules=${modules} root=${project.root}
  +execmodules target=configure modules=${modules} 
root=${project.root}/${module}
 skipmissing=${executemodules.skipmissing}
 header message=${executemodules.header}/
 footer message=${executemodules.footer}/
  @@ -280,7 +280,7 @@
   
 !-- Invoke the 'docs' on all configured modules --
 target name=all-docs depends=init
  -execmodules target=docs modules=${modules} root=${project.root}
  +execmodules target=docs modules=${modules} root=${project.root}/${module}
 skipmissing=${executemodules.skipmissing}
 header message=${executemodules.header}/
 footer message=${executemodules.footer}/
  @@ -289,7 +289,7 @@
   
 !-- Invoke the 'jars' on all configured modules --
 target name=all-jars depends=init
  -execmodules target=jars modules=${modules} root=${project.root}
  +execmodules target=jars modules=${modules} root=${project.root}/${module}
 skipmissing=${executemodules.skipmissing}
 header message=${executemodules.header}/
 footer message=${executemodules.footer}/
  @@ -298,7 +298,7 @@
   
 !-- Invoke the 'main' on all configured modules --
 target name=all-main depends=init
  -execmodules target=main modules=${modules} root=${project.root}
  +execmodules target=main modules=${modules} root=${project.root}/${module}
 skipmissing=${executemodules.skipmissing}
 header message=${executemodules.header}/
 footer message=${executemodules.footer}/
  @@ -307,7 +307,7 @@
   
 !-- Invoke the 'min' on all configured modules --
 target name=all-min depends=init
  -execmodules target=min modules=${modules} root=${project.root}
  +execmodules target=min modules=${modules} root=${project.root}/${module}
 

[JBoss-dev] CVS update: jbosstest/src/build build.bat build.sh build.xml

2001-07-30 Thread Jason Dillon

  User: user57  
  Date: 01/07/30 23:13:36

  Removed: src/build Tag: jboss_buildmagic build.bat build.sh build.xml
  Log:
   o using execmodules and configmodules tasks to control execution of
 testsuite subproject build files.  They still need there namesspace
 updated though.
   o moved the stylesheets from build/stylesheets to etc/stylesheets

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



[JBoss-dev] CVS update: jbosstest/src/bin jmx-test.sh mdbtest.bat mdbtest.sh mq-perf.bat mq-perf.sh mq-test.bat mq-test.sh

2001-07-30 Thread Jason Dillon

  User: user57  
  Date: 01/07/30 23:14:05

  Modified:src/bin  Tag: jboss_buildmagic mdbtest.bat mdbtest.sh
mq-perf.bat mq-perf.sh mq-test.bat mq-test.sh
  Added:   src/bin  Tag: jboss_buildmagic jmx-test.sh
  Log:
   o updated from HEAD
  
  Revision  ChangesPath
  No   revision
  
  
  No   revision
  
  
  1.3.2.1   +1 -1  jbosstest/src/bin/mdbtest.bat
  
  Index: mdbtest.bat
  ===
  RCS file: /cvsroot/jboss/jbosstest/src/bin/mdbtest.bat,v
  retrieving revision 1.3
  retrieving revision 1.3.2.1
  diff -u -r1.3 -r1.3.2.1
  --- mdbtest.bat   2001/06/22 22:30:02 1.3
  +++ mdbtest.bat   2001/07/31 06:14:05 1.3.2.1
  @@ -1 +1 @@
  -java -Djava.security.policy=jar:file:../lib/mdbtest.jar!/client.policy 
-Djava.security.manager -classpath 
../lib/oswego-concurrent.jar;../lib/mdbtest.jar;../lib/jbossmq-client.jar;../lib/jms.jar;../lib/jnp-client.jar
 junit.swingui.TestRunner org.jboss.test.mdb.test.Main %1 %2 %3 %4 %5 %6
  +java -Djava.security.policy=jar:file:../lib/mdbtest.jar!/client.policy 
-Djava.security.manager -classpath 
../lib/log4j.jar;../lib/oswego-concurrent.jar;../lib/mdbtest.jar;../lib/jbossmq-client.jar;../lib/jms.jar;../lib/jnp-client.jar
 junit.swingui.TestRunner org.jboss.test.mdb.test.Main %1 %2 %3 %4 %5 %6
  
  
  
  1.5.2.1   +1 -0  jbosstest/src/bin/mdbtest.sh
  
  Index: mdbtest.sh
  ===
  RCS file: /cvsroot/jboss/jbosstest/src/bin/mdbtest.sh,v
  retrieving revision 1.5
  retrieving revision 1.5.2.1
  diff -u -r1.5 -r1.5.2.1
  --- mdbtest.sh2001/07/04 21:33:03 1.5
  +++ mdbtest.sh2001/07/31 06:14:05 1.5.2.1
  @@ -1,6 +1,7 @@
   #!/bin/sh
   
   CP=../lib/oswego-concurrent.jar
  +CP=../lib/log4j.jar:$CP
   CP=../lib/mdbtest.jar:$CP
   CP=../lib/jbossmq-client.jar:$CP
   CP=../lib/jms.jar:$CP
  
  
  
  1.1.4.1   +1 -1  jbosstest/src/bin/mq-perf.bat
  
  Index: mq-perf.bat
  ===
  RCS file: /cvsroot/jboss/jbosstest/src/bin/mq-perf.bat,v
  retrieving revision 1.1
  retrieving revision 1.1.4.1
  diff -u -r1.1 -r1.1.4.1
  --- mq-perf.bat   2001/06/25 01:25:54 1.1
  +++ mq-perf.bat   2001/07/31 06:14:05 1.1.4.1
  @@ -1 +1 @@
  -java -classpath 
../lib/oswego-concurrent.jar;../lib/jbossmqtest.jar;../lib/jta-spec1_0_1.jar;../lib/jms.jar;../lib/jbossmq-client.jar
 junit.swingui.TestRunner org.jboss.test.jbossmq.perf.Main
  +java -classpath 
../lib/log4j.jar;../lib/oswego-concurrent.jar;../lib/jbossmqtest.jar;../lib/jta-spec1_0_1.jar;../lib/jms.jar;../lib/jbossmq-client.jar
 junit.swingui.TestRunner org.jboss.test.jbossmq.perf.Main
  
  
  
  1.1.4.1   +10 -1 jbosstest/src/bin/mq-perf.sh
  
  Index: mq-perf.sh
  ===
  RCS file: /cvsroot/jboss/jbosstest/src/bin/mq-perf.sh,v
  retrieving revision 1.1
  retrieving revision 1.1.4.1
  diff -u -r1.1 -r1.1.4.1
  --- mq-perf.sh2001/06/25 01:25:54 1.1
  +++ mq-perf.sh2001/07/31 06:14:05 1.1.4.1
  @@ -1,3 +1,12 @@
   #!/bin/sh
   
  -java -classpath 
../lib/oswego-concurrent.jar:../lib/jbossmqtest.jar:../lib/jta-spec1_0_1.jar:../lib/jms.jar:../lib/jbossmq-client.jar
 junit.swingui.TestRunner org.jboss.test.jbossmq.perf.Main
  +CP=../lib/log4j.jar
  +CP=$CP:../lib/oswego-concurrent.jar
  +CP=$CP:../lib/jbossmqtest.jar
  +CP=$CP:../lib/jta-spec1_0_1.jar
  +CP=$CP:../lib/jms.jar
  +CP=$CP:../lib/jbossmq-client.jar
  +
  +java -classpath $CP \
  +junit.swingui.TestRunner \
  +org.jboss.test.jbossmq.perf.Main $@
  
  
  
  1.1.4.1   +1 -1  jbosstest/src/bin/mq-test.bat
  
  Index: mq-test.bat
  ===
  RCS file: /cvsroot/jboss/jbosstest/src/bin/mq-test.bat,v
  retrieving revision 1.1
  retrieving revision 1.1.4.1
  diff -u -r1.1 -r1.1.4.1
  --- mq-test.bat   2001/06/25 01:25:54 1.1
  +++ mq-test.bat   2001/07/31 06:14:05 1.1.4.1
  @@ -1 +1 @@
  -java -classpath 
../lib/oswego-concurrent.jar;../lib/jbossmqtest.jar;../lib/jta-spec1_0_1.jar;../lib/jms.jar;../lib/jbossmq-client.jar
 junit.swingui.TestRunner org.jboss.test.jbossmq.test.Main
  +java -classpath 
../lib/log4j.jar;../lib/oswego-concurrent.jar;../lib/jbossmqtest.jar;../lib/jta-spec1_0_1.jar;../lib/jms.jar;../lib/jbossmq-client.jar
 junit.swingui.TestRunner org.jboss.test.jbossmq.test.Main
  
  
  
  1.2.4.1   +6 -5  jbosstest/src/bin/mq-test.sh
  
  Index: mq-test.sh
  ===
  RCS file: /cvsroot/jboss/jbosstest/src/bin/mq-test.sh,v
  retrieving revision 1.2
  retrieving revision 1.2.4.1
  diff -u -r1.2 -r1.2.4.1
  --- mq-test.sh2001/07/06 00:38:50 1.2
  +++ mq-test.sh2001/07/31 06:14:05 1.2.4.1
  @@ -1,10 +1,11 @@

[JBoss-dev] CVS update: jbosstest/src/main/org/jboss/test/jbossmq/test Main.java

2001-07-30 Thread Jason Dillon

  User: user57  
  Date: 01/07/30 23:14:05

  Modified:src/main/org/jboss/test/jbossmq/test Tag: jboss_buildmagic
Main.java
  Log:
   o updated from HEAD
  
  Revision  ChangesPath
  No   revision
  
  
  No   revision
  
  
  1.2.2.1   +2 -2  jbosstest/src/main/org/jboss/test/jbossmq/test/Main.java
  
  Index: Main.java
  ===
  RCS file: /cvsroot/jboss/jbosstest/src/main/org/jboss/test/jbossmq/test/Main.java,v
  retrieving revision 1.2
  retrieving revision 1.2.2.1
  diff -u -r1.2 -r1.2.2.1
  --- Main.java 2001/07/10 02:34:04 1.2
  +++ Main.java 2001/07/31 06:14:05 1.2.2.1
  @@ -33,8 +33,8 @@
  extends junit.framework.TestCase
   {
  // Provider specific
  -   static String TOPIC_FACTORY = TopicConnectionFactory;
  -   static String QUEUE_FACTORY = QueueConnectionFactory;
  +   static String TOPIC_FACTORY = ConnectionFactory;
  +   static String QUEUE_FACTORY = ConnectionFactory;

  static String TEST_QUEUE = queue/testQueue;
  static String TEST_TOPIC = topic/testTopic;
  
  
  

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



[JBoss-dev] CVS update: jbosstest/src/main/org/jboss/test/security/ejb EntityBeanImpl.java RunAsMDB.java

2001-07-30 Thread Jason Dillon

  User: user57  
  Date: 01/07/30 23:14:06

  Modified:src/main/org/jboss/test/security/ejb Tag: jboss_buildmagic
EntityBeanImpl.java RunAsMDB.java
  Log:
   o updated from HEAD
  
  Revision  ChangesPath
  No   revision
  
  
  No   revision
  
  
  1.4.2.1   +2 -24 
jbosstest/src/main/org/jboss/test/security/ejb/EntityBeanImpl.java
  
  Index: EntityBeanImpl.java
  ===
  RCS file: 
/cvsroot/jboss/jbosstest/src/main/org/jboss/test/security/ejb/EntityBeanImpl.java,v
  retrieving revision 1.4
  retrieving revision 1.4.2.1
  diff -u -r1.4 -r1.4.2.1
  --- EntityBeanImpl.java   2001/07/14 16:02:43 1.4
  +++ EntityBeanImpl.java   2001/07/31 06:14:06 1.4.2.1
  @@ -17,7 +17,7 @@
   using the echo method. 
   
   @author [EMAIL PROTECTED]
  -@version $Revision: 1.4 $
  +@version $Revision: 1.4.2.1 $
   */
   public class EntityBeanImpl implements EntityBean
   {
  @@ -73,32 +73,10 @@
  if( securityMgr == null )
 throw new EJBException(Failed to find security mgr under: 
java:comp/env/security/security-domain);
  System.out.println(Found SecurityManager: +securityMgr);
  -   /* I'm using this runtime introspection to determin if the security
  -manager supports a getActiveSubject() method because the 
  -org.jboss.security.SubjectSecurityManager interface is not part of
  -the standard client jars which are used to build the jbosstest suite.
  -Not legal EJB code, but this is test code.
  -*/
  -   Class securityMgrClass = securityMgr.getClass();
  -   Class[] parameterTypes = {};
  -   Method getActiveSubject = 
securityMgrClass.getDeclaredMethod(getActiveSubject, parameterTypes);
  -   Object[] args = {};
  -   Subject activeSubject = (Subject) getActiveSubject.invoke(securityMgr, 
args);
  +   Subject activeSubject = (Subject) 
ctx.lookup(java:comp/env/security/subject);
  System.out.println(ActiveSubject: +activeSubject);
  if( activeSubject == null )
 throw new EJBException(No ActiveSubject found);
  -}
  -catch(NoSuchMethodException e)
  -{
  -   // Ok, not a SubjectSecurityManager
  -}
  -catch(InvocationTargetException e)
  -{
  -   // Ok, not a SubjectSecurityManager
  -}
  -catch(IllegalAccessException e)
  -{
  -   // Ok, not a SubjectSecurityManager
   }
   catch(NamingException e)
   {
  
  
  
  1.2.2.1   +77 -77jbosstest/src/main/org/jboss/test/security/ejb/RunAsMDB.java
  
  Index: RunAsMDB.java
  ===
  RCS file: 
/cvsroot/jboss/jbosstest/src/main/org/jboss/test/security/ejb/RunAsMDB.java,v
  retrieving revision 1.2
  retrieving revision 1.2.2.1
  diff -u -r1.2 -r1.2.2.1
  --- RunAsMDB.java 2001/07/09 20:20:48 1.2
  +++ RunAsMDB.java 2001/07/31 06:14:06 1.2.2.1
  @@ -1,77 +1,77 @@
  -/*
  - * jBoss, the OpenSource EJB server
  - *
  - * Distributable under LGPL license.
  - * See terms of license at gnu.org.
  - */
  -package org.jboss.test.security.ejb;
  -
  -import javax.ejb.MessageDrivenBean;
  -import javax.ejb.MessageDrivenContext;
  -import javax.ejb.EJBException;
  -import javax.jms.Destination;
  -import javax.jms.MessageListener;
  -import javax.jms.Message;
  -import javax.naming.InitialContext;
  -import javax.naming.NamingException;
  -
  -import org.jboss.test.security.interfaces.Entity;
  -import org.jboss.test.security.interfaces.EntityHome;
  -
  -/** An MDB that takes the string from the msg passed to onMessage
  - and invokes the echo(String) method on an internal Entity using
  - the InternalRole assigned in the MDB descriptor run-as element.
  - 
  - @author [EMAIL PROTECTED]
  - @version $Revision: 1.2 $
  - */
  -public class RunAsMDB implements MessageDrivenBean, MessageListener
  -{
  -   private MessageDrivenContext ctx = null;
  -   private InitialContext iniCtx;
  -   
  -   public RunAsMDB()
  -   {
  -   }
  -
  -   public void setMessageDrivenContext(MessageDrivenContext ctx)
  -  throws EJBException
  -   {
  -  this.ctx = ctx;
  -  try
  -  {
  - iniCtx = new InitialContext();
  -  }
  -  catch(NamingException e)
  -  {
  - throw new EJBException(e);
  -  }
  -   }
  -   
  -   public void ejbCreate()
  -   {
  -   }
  -   
  -   public void ejbRemove()
  -   {
  -  ctx = null;
  -   }
  -
  -   public void onMessage(Message message)
  -   {
  -  try
  -  {
  - String arg = message.getStringProperty(arg);
  - EntityHome home = (EntityHome) iniCtx.lookup(java:comp/env/ejb/Entity);
  - Entity bean = home.findByPrimaryKey(arg);
  - String 

[JBoss-dev] CVS update: jbosstest/src/main/org/jboss/test/jmx/interfaces TestDataSource.java TestDataSourceHome.java

2001-07-30 Thread Jason Dillon

  User: user57  
  Date: 01/07/30 23:14:06

  Added:   src/main/org/jboss/test/jmx/interfaces Tag: jboss_buildmagic
TestDataSource.java TestDataSourceHome.java
  Log:
   o updated from HEAD
  
  Revision  ChangesPath
  No   revision
  
  
  No   revision
  
  
  1.1.2.1   +1 -1  
jbosstest/src/main/org/jboss/test/jmx/interfaces/TestDataSource.java
  
  Index: TestDataSource.java
  ===
  RCS file: 
/cvsroot/jboss/jbosstest/src/main/org/jboss/test/jmx/interfaces/TestDataSource.java,v
  retrieving revision 1.1
  retrieving revision 1.1.2.1
  diff -u -r1.1 -r1.1.2.1
  --- TestDataSource.java   2001/07/27 19:32:03 1.1
  +++ TestDataSource.java   2001/07/31 06:14:06 1.1.2.1
  @@ -11,8 +11,8 @@
   /**
*  
*   @see related
  - *   @author $Author: d_jencks $
  - *   @version $Revision: 1.1 $
  + *   @author $Author: user57 $
  + *   @version $Revision: 1.1.2.1 $
*/
   public interface TestDataSource
  extends EJBObject
  
  
  
  1.1.2.1   +1 -1  
jbosstest/src/main/org/jboss/test/jmx/interfaces/TestDataSourceHome.java
  
  Index: TestDataSourceHome.java
  ===
  RCS file: 
/cvsroot/jboss/jbosstest/src/main/org/jboss/test/jmx/interfaces/TestDataSourceHome.java,v
  retrieving revision 1.1
  retrieving revision 1.1.2.1
  diff -u -r1.1 -r1.1.2.1
  --- TestDataSourceHome.java   2001/07/27 19:32:03 1.1
  +++ TestDataSourceHome.java   2001/07/31 06:14:06 1.1.2.1
  @@ -10,8 +10,8 @@
   /**
*  
*   @see related
  - *   @author $Author: d_jencks $
  - *   @version $Revision: 1.1 $
  + *   @author $Author: user57 $
  + *   @version $Revision: 1.1.2.1 $
*/
   public interface TestDataSourceHome
  extends EJBHome
  
  
  

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



[JBoss-dev] CVS update: jbosstest/src/build/stylesheets details1.xsl

2001-07-30 Thread Jason Dillon

  User: user57  
  Date: 01/07/30 23:14:05

  Added:   src/build/stylesheets Tag: jboss_buildmagic details1.xsl
  Log:
   o updated from HEAD
  
  Revision  ChangesPath
  No   revision
  
  
  No   revision
  
  
  1.1.2.1   +0 -0  jbosstest/src/build/stylesheets/details1.xsl
  
  Index: details1.xsl
  ===
  RCS file: /cvsroot/jboss/jbosstest/src/build/stylesheets/details1.xsl,v
  retrieving revision 1.1
  retrieving revision 1.1.2.1
  diff -u -r1.1 -r1.1.2.1
  
  
  

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



[JBoss-dev] CVS update: jbosstest/src/main/org/jboss/test/jmx/ejb TestDataSourceBean.java

2001-07-30 Thread Jason Dillon

  User: user57  
  Date: 01/07/30 23:14:06

  Added:   src/main/org/jboss/test/jmx/ejb Tag: jboss_buildmagic
TestDataSourceBean.java
  Log:
   o updated from HEAD
  
  Revision  ChangesPath
  No   revision
  
  
  No   revision
  
  
  1.1.2.1   +0 -0  
jbosstest/src/main/org/jboss/test/jmx/ejb/TestDataSourceBean.java
  
  Index: TestDataSourceBean.java
  ===
  RCS file: 
/cvsroot/jboss/jbosstest/src/main/org/jboss/test/jmx/ejb/TestDataSourceBean.java,v
  retrieving revision 1.1
  retrieving revision 1.1.2.1
  diff -u -r1.1 -r1.1.2.1
  
  
  

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



[JBoss-dev] CVS update: jbosstest/src/build/subprojects build-jmx.xml

2001-07-30 Thread Jason Dillon

  User: user57  
  Date: 01/07/30 23:14:05

  Added:   src/build/subprojects Tag: jboss_buildmagic build-jmx.xml
  Log:
   o updated from HEAD
  
  Revision  ChangesPath
  No   revision
  
  
  No   revision
  
  
  1.2.2.1   +0 -0  jbosstest/src/build/subprojects/build-jmx.xml
  
  Index: build-jmx.xml
  ===
  RCS file: /cvsroot/jboss/jbosstest/src/build/subprojects/build-jmx.xml,v
  retrieving revision 1.2
  retrieving revision 1.2.2.1
  diff -u -r1.2 -r1.2.2.1
  
  
  

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



[JBoss-dev] CVS update: jbosstest/src/main/org/jboss/test/mdb/test Main.java

2001-07-30 Thread Jason Dillon

  User: user57  
  Date: 01/07/30 23:14:06

  Modified:src/main/org/jboss/test/mdb/test Tag: jboss_buildmagic
Main.java
  Log:
   o updated from HEAD
  
  Revision  ChangesPath
  No   revision
  
  
  No   revision
  
  
  1.8.2.1   +3 -3  jbosstest/src/main/org/jboss/test/mdb/test/Main.java
  
  Index: Main.java
  ===
  RCS file: /cvsroot/jboss/jbosstest/src/main/org/jboss/test/mdb/test/Main.java,v
  retrieving revision 1.8
  retrieving revision 1.8.2.1
  diff -u -r1.8 -r1.8.2.1
  --- Main.java 2001/07/10 02:04:58 1.8
  +++ Main.java 2001/07/31 06:14:06 1.8.2.1
  @@ -50,7 +50,7 @@
*
* @author  a href=mailto:[EMAIL PROTECTED];Peter Antman/a
* @author  a href=mailto:[EMAIL PROTECTED];Jason Dillon/a
  - * @version pre$Revision: 1.8 $/pre
  + * @version pre$Revision: 1.8.2.1 $/pre
*/
   public class Main
  extends TestCase
  @@ -59,8 +59,8 @@
  static boolean deployed = false;
   
  // Provider specific
  -   static String TOPIC_FACTORY = TopicConnectionFactory;
  -   static String QUEUE_FACTORY = QueueConnectionFactory;
  +   static String TOPIC_FACTORY = ConnectionFactory;
  +   static String QUEUE_FACTORY = ConnectionFactory;
   
  QueueConnection queueConnection;
  TopicConnection topicConnection;
  
  
  

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



[JBoss-dev] CVS update: jbosstest/src/resources/jmx/META-INF ejb-jar.xml jboss.xml

2001-07-30 Thread Jason Dillon

  User: user57  
  Date: 01/07/30 23:14:07

  Added:   src/resources/jmx/META-INF Tag: jboss_buildmagic ejb-jar.xml
jboss.xml
  Log:
   o updated from HEAD
  
  Revision  ChangesPath
  No   revision
  
  
  No   revision
  
  
  1.1.2.1   +0 -0  jbosstest/src/resources/jmx/META-INF/ejb-jar.xml
  
  Index: ejb-jar.xml
  ===
  RCS file: /cvsroot/jboss/jbosstest/src/resources/jmx/META-INF/ejb-jar.xml,v
  retrieving revision 1.1
  retrieving revision 1.1.2.1
  diff -u -r1.1 -r1.1.2.1
  
  
  
  1.1.2.1   +0 -0  jbosstest/src/resources/jmx/META-INF/jboss.xml
  
  Index: jboss.xml
  ===
  RCS file: /cvsroot/jboss/jbosstest/src/resources/jmx/META-INF/jboss.xml,v
  retrieving revision 1.1
  retrieving revision 1.1.2.1
  diff -u -r1.1 -r1.1.2.1
  
  
  

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



[JBoss-dev] CVS update: jbosstest/src/main/org/jboss/test/perf/test Setup.java

2001-07-30 Thread Jason Dillon

  User: user57  
  Date: 01/07/30 23:14:06

  Modified:src/main/org/jboss/test/perf/test Tag: jboss_buildmagic
Setup.java
  Log:
   o updated from HEAD
  
  Revision  ChangesPath
  No   revision
  
  
  No   revision
  
  
  1.2.4.1   +17 -1 jbosstest/src/main/org/jboss/test/perf/test/Setup.java
  
  Index: Setup.java
  ===
  RCS file: /cvsroot/jboss/jbosstest/src/main/org/jboss/test/perf/test/Setup.java,v
  retrieving revision 1.2
  retrieving revision 1.2.4.1
  diff -u -r1.2 -r1.2.4.1
  --- Setup.java2001/07/14 16:02:42 1.2
  +++ Setup.java2001/07/31 06:14:06 1.2.4.1
  @@ -1,8 +1,10 @@
   package org.jboss.test.perf.test;
   
   import java.io.IOException;
  +import java.net.InetAddress;
   import java.rmi.RemoteException;
   import javax.ejb.CreateException;
  +import javax.management.ObjectName;
   import javax.naming.InitialContext;
   import javax.naming.NamingException;
   import javax.rmi.PortableRemoteObject;
  @@ -11,6 +13,7 @@
   import junit.extensions.TestSetup;
   import junit.framework.TestSuite;
   
  +import org.jboss.jmx.interfaces.RMIConnector;
   import org.jboss.test.perf.interfaces.Entity;
   import org.jboss.test.perf.interfaces.EntityPK;
   import org.jboss.test.perf.interfaces.Entity2PK;
  @@ -23,7 +26,7 @@
   /** Setup utility class.

@author [EMAIL PROTECTED]
  - @version $Revision: 1.2 $
  + @version $Revision: 1.2.4.1 $
*/
   public class Setup extends TestSetup 
   {
  @@ -102,8 +105,21 @@
home.remove(new Entity2PK(n, String+n, new Double(n)));
  }
   
  +   private void flushAuthCache() throws Exception
  +   {
  +  String serverName = InetAddress.getLocalHost().getHostName();
  +  String connectorName = jmx: +serverName+ :rmi;
  +  RMIConnector server = (RMIConnector) new 
InitialContext().lookup(connectorName);
  +  ObjectName jaasMgr = new ObjectName(Security:name=JaasSecurityManager);
  +  // Ask the deployer for the getWarDeployerName
  +  Object[] params = {other};
  +  String[] signature = {java.lang.String};
  +  String warDeployerName = (String) server.invoke(jaasMgr,
  + flushAuthenticationCache, params, signature);
  +   }
  private void login() throws Exception
  {
  +  flushAuthCache();
 String username = jduke;
 char[] password = theduke.toCharArray();
 AppCallbackHandler handler = new AppCallbackHandler(username, password);
  
  
  

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



[JBoss-dev] CVS update: jbosstest/src/main/org/jboss/test/cts/jms ContainerMBox.java MsgSender.java

2001-07-30 Thread Jason Dillon

  User: user57  
  Date: 01/07/30 23:14:05

  Modified:src/main/org/jboss/test/cts/jms Tag: jboss_buildmagic
ContainerMBox.java MsgSender.java
  Log:
   o updated from HEAD
  
  Revision  ChangesPath
  No   revision
  
  
  No   revision
  
  
  1.1.6.1   +1 -1  jbosstest/src/main/org/jboss/test/cts/jms/ContainerMBox.java
  
  Index: ContainerMBox.java
  ===
  RCS file: 
/cvsroot/jboss/jbosstest/src/main/org/jboss/test/cts/jms/ContainerMBox.java,v
  retrieving revision 1.1
  retrieving revision 1.1.6.1
  diff -u -r1.1 -r1.1.6.1
  --- ContainerMBox.java2001/03/02 03:11:28 1.1
  +++ ContainerMBox.java2001/07/31 06:14:05 1.1.6.1
  @@ -9,7 +9,7 @@
   public class ContainerMBox
 implements MessageListener
   {
  -  public final static String JMS_FACTORY=QueueConnectionFactory;
  +  public final static String JMS_FACTORY=ConnectionFactory;
 public final static String QUEUE=queue/testQueue;
   
 private QueueConnectionFactory qconFactory;
  
  
  
  1.2.2.1   +1 -1  jbosstest/src/main/org/jboss/test/cts/jms/MsgSender.java
  
  Index: MsgSender.java
  ===
  RCS file: /cvsroot/jboss/jbosstest/src/main/org/jboss/test/cts/jms/MsgSender.java,v
  retrieving revision 1.2
  retrieving revision 1.2.2.1
  diff -u -r1.2 -r1.2.2.1
  --- MsgSender.java2001/06/26 02:40:11 1.2
  +++ MsgSender.java2001/07/31 06:14:05 1.2.2.1
  @@ -8,7 +8,7 @@
   
   public class MsgSender
   {
  -  public final static String JMS_FACTORY=QueueConnectionFactory;
  +  public final static String JMS_FACTORY=ConnectionFactory;
 public final static String QUEUE=queue/testQueue;
   
 private QueueConnectionFactory qconFactory;
  
  
  

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



[JBoss-dev] CVS update: jbosstest/src/main/org/jboss/test/security/test TestEJBSpec.java

2001-07-30 Thread Jason Dillon

  User: user57  
  Date: 01/07/30 23:14:06

  Modified:src/main/org/jboss/test/security/test Tag: jboss_buildmagic
TestEJBSpec.java
  Log:
   o updated from HEAD
  
  Revision  ChangesPath
  No   revision
  
  
  No   revision
  
  
  1.10.2.1  +39 -14jbosstest/src/main/org/jboss/test/security/test/TestEJBSpec.java
  
  Index: TestEJBSpec.java
  ===
  RCS file: 
/cvsroot/jboss/jbosstest/src/main/org/jboss/test/security/test/TestEJBSpec.java,v
  retrieving revision 1.10
  retrieving revision 1.10.2.1
  diff -u -r1.10 -r1.10.2.1
  --- TestEJBSpec.java  2001/07/14 16:02:43 1.10
  +++ TestEJBSpec.java  2001/07/31 06:14:06 1.10.2.1
  @@ -1,8 +1,10 @@
   package org.jboss.test.security.test;
   
   import java.io.IOException;
  +import java.net.InetAddress;
   import java.rmi.RemoteException;
   import javax.ejb.CreateException;
  +import javax.management.ObjectName;
   import javax.naming.InitialContext;
   import javax.naming.NamingException;
   import javax.rmi.PortableRemoteObject;
  @@ -19,10 +21,12 @@
   import org.jboss.test.security.interfaces.StatelessSession;
   import org.jboss.test.security.interfaces.StatelessSessionHome;
   
  +import junit.extensions.TestSetup;
   import junit.framework.Test;
   import junit.framework.TestCase;
   import junit.framework.TestSuite;
   
  +import org.jboss.jmx.interfaces.RMIConnector;
   import org.jboss.test.util.AppCallbackHandler;
   import org.jboss.test.util.Deploy;
   
  @@ -30,14 +34,14 @@
deployment unit. These test the basic role based access model.

@author [EMAIL PROTECTED]
  - @version $Revision: 1.10 $
  + @version $Revision: 1.10.2.1 $
*/
   public class TestEJBSpec
  extends TestCase
   {
  static String username = scott;
  static char[] password = echoman.toCharArray();
  -   static String QUEUE_FACTORY = QueueConnectionFactory;
  +   static String QUEUE_FACTORY = ConnectionFactory;
  
  LoginContext lc;
  boolean loggedIn;
  @@ -293,21 +297,42 @@
 }
  }
   
  +   private static void flushAuthCache() throws Exception
  +   {
  +  String serverName = InetAddress.getLocalHost().getHostName();
  +  String connectorName = jmx: +serverName+ :rmi;
  +  RMIConnector server = (RMIConnector) new 
InitialContext().lookup(connectorName);
  +  ObjectName jaasMgr = new ObjectName(Security:name=JaasSecurityManager);
  +  // Ask the deployer for the getWarDeployerName
  +  Object[] params = {other};
  +  String[] signature = {java.lang.String};
  +  String warDeployerName = (String) server.invoke(jaasMgr,
  + flushAuthenticationCache, params, signature);
  +   }
  +
  /**
   * Setup the test suite.
   */
  -   public static Test suite() {
  +   public static Test suite()
  +   {
 TestSuite suite = new TestSuite();
  -
  -  // add a test case to deploy our support applications
  -  String filename = security-spec.jar;
  -  suite.addTest(new Deploy.Deployer(filename));
  - 
 suite.addTest(new TestSuite(TestEJBSpec.class));
  -  
  -  // add a test case to undeploy our support applications
  -  suite.addTest(new Deploy.Undeployer(filename));
  -  
  -  return suite;
  -   }
  +
  +  final String filename = security-spec.jar;
  +
  +  // Create an initializer for the test suite
  +  TestSetup wrapper= new TestSetup(suite)
  +  {
  +  protected void setUp() throws Exception
  +  {
  + Deploy.deploy(filename);
  + flushAuthCache();
  +  }
  +  protected void tearDown() throws Exception
  +  {
  + Deploy.undeploy(filename);
  +  }
  +  };
  +  return wrapper;
  +   } 
   }
  
  
  

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



[JBoss-dev] CVS update: jbosstest/src/resources/naming/META-INF jboss.xml

2001-07-30 Thread Jason Dillon

  User: user57  
  Date: 01/07/30 23:14:07

  Modified:src/resources/naming/META-INF Tag: jboss_buildmagic
jboss.xml
  Log:
   o updated from HEAD
  
  Revision  ChangesPath
  No   revision
  
  
  No   revision
  
  
  1.4.4.1   +1 -1  jbosstest/src/resources/naming/META-INF/jboss.xml
  
  Index: jboss.xml
  ===
  RCS file: /cvsroot/jboss/jbosstest/src/resources/naming/META-INF/jboss.xml,v
  retrieving revision 1.4
  retrieving revision 1.4.4.1
  diff -u -r1.4 -r1.4.4.1
  --- jboss.xml 2001/06/10 20:49:28 1.4
  +++ jboss.xml 2001/07/31 06:14:07 1.4.4.1
  @@ -25,7 +25,7 @@
   !-- Use the abbreviated form of the mapping --
   resource-ref
   res-ref-namejms/QueFactory/res-ref-name
  -jndi-nameQueueConnectionFactory/jndi-name
  +jndi-nameConnectionFactory/jndi-name
   /resource-ref
   !-- Use the abbreviated form of the mapping --
   resource-ref
  
  
  

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



[JBoss-dev] CVS update: jbosstest/src/resources/jmx client.policy jndi.properties

2001-07-30 Thread Jason Dillon

  User: user57  
  Date: 01/07/30 23:14:06

  Added:   src/resources/jmx Tag: jboss_buildmagic client.policy
jndi.properties
  Log:
   o updated from HEAD
  
  Revision  ChangesPath
  No   revision
  
  
  No   revision
  
  
  1.1.2.1   +0 -0  jbosstest/src/resources/jmx/client.policy
  
  Index: client.policy
  ===
  RCS file: /cvsroot/jboss/jbosstest/src/resources/jmx/client.policy,v
  retrieving revision 1.1
  retrieving revision 1.1.2.1
  diff -u -r1.1 -r1.1.2.1
  
  
  
  1.1.2.1   +0 -0  jbosstest/src/resources/jmx/jndi.properties
  
  Index: jndi.properties
  ===
  RCS file: /cvsroot/jboss/jbosstest/src/resources/jmx/jndi.properties,v
  retrieving revision 1.1
  retrieving revision 1.1.2.1
  diff -u -r1.1 -r1.1.2.1
  
  
  

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



[JBoss-dev] CVS update: jbosstest/src/main/org/jboss/test/web/test TestWebIntegration.java

2001-07-30 Thread Jason Dillon

  User: user57  
  Date: 01/07/30 23:14:06

  Modified:src/main/org/jboss/test/web/test Tag: jboss_buildmagic
TestWebIntegration.java
  Log:
   o updated from HEAD
  
  Revision  ChangesPath
  No   revision
  
  
  No   revision
  
  
  1.9.2.1   +6 -1  
jbosstest/src/main/org/jboss/test/web/test/TestWebIntegration.java
  
  Index: TestWebIntegration.java
  ===
  RCS file: 
/cvsroot/jboss/jbosstest/src/main/org/jboss/test/web/test/TestWebIntegration.java,v
  retrieving revision 1.9
  retrieving revision 1.9.2.1
  diff -u -r1.9 -r1.9.2.1
  --- TestWebIntegration.java   2001/07/10 02:34:05 1.9
  +++ TestWebIntegration.java   2001/07/31 06:14:06 1.9.2.1
  @@ -26,7 +26,7 @@
   with a role of 'AuthorizedUser' in the servlet container.
   
   @author [EMAIL PROTECTED]
  -@version $Revision: 1.9 $
  +@version $Revision: 1.9.2.1 $
   */
   public class TestWebIntegration extends TestCase
   {
  @@ -76,6 +76,11 @@
   e.printStackTrace();
   fail(Failed to deploy jbosstest-web.ear);
   }
  +// Flush the security domain cache to avoid conflicts with other 
testcases
  +ObjectName jaasMgr = new 
ObjectName(Security:name=JaasSecurityManager);
  +params = new Object[]{other};
  +signature = new String[]{java.lang.String};
  +server.invoke(jaasMgr, flushAuthenticationCache, params, 
signature);  
   }
   else
   {
  
  
  

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



[JBoss-dev] CVS update: jbosstest build.xml config.xml

2001-07-30 Thread Jason Dillon

  User: user57  
  Date: 01/07/30 23:13:36

  Modified:.Tag: jboss_buildmagic build.xml config.xml
  Log:
   o using execmodules and configmodules tasks to control execution of
 testsuite subproject build files.  They still need there namesspace
 updated though.
   o moved the stylesheets from build/stylesheets to etc/stylesheets
  
  Revision  ChangesPath
  No   revision
  
  
  No   revision
  
  
  1.1.2.6   +15 -1 jbosstest/Attic/build.xml
  
  Index: build.xml
  ===
  RCS file: /cvsroot/jboss/jbosstest/Attic/build.xml,v
  retrieving revision 1.1.2.5
  retrieving revision 1.1.2.6
  diff -u -r1.1.2.5 -r1.1.2.6
  --- build.xml 2001/07/31 05:32:27 1.1.2.5
  +++ build.xml 2001/07/31 06:13:36 1.1.2.6
  @@ -10,7 +10,7 @@
   !----
   !-- == --
   
  -!-- $Id: build.xml,v 1.1.2.5 2001/07/31 05:32:27 user57 Exp $ --
  +!-- $Id: build.xml,v 1.1.2.6 2001/07/31 06:13:36 user57 Exp $ --
   
   project default=main
   
  @@ -280,6 +280,20 @@
include name=**/*.sh/
 /fileset
   /chmod
  +  /target
  +
  +  !-- Execute test build files --
  +  target name=compile-tests depends=init
  +property name=testsuite.modules
  +   value=bank, bench, bmp/
  +
  +execmodules modules=${testsuite.modules} 
  +  antfile=build-${module}.xml
  +  root=${module.root}/src/build/subprojects
  +  skipmissing=${testsuite.executemodules.skipmissing}
  +  header message=${testsuite.executemodules.header}/
  +  footer message=${testsuite.executemodules.footer}/
  +/execmodules
 /target
   
   
  
  
  
  1.1.2.6   +64 -1 jbosstest/Attic/config.xml
  
  Index: config.xml
  ===
  RCS file: /cvsroot/jboss/jbosstest/Attic/config.xml,v
  retrieving revision 1.1.2.5
  retrieving revision 1.1.2.6
  diff -u -r1.1.2.5 -r1.1.2.6
  --- config.xml2001/07/31 05:32:27 1.1.2.5
  +++ config.xml2001/07/31 06:13:36 1.1.2.6
  @@ -7,7 +7,7 @@
   !----
   !-- == --
   
  -!-- $Id: config.xml,v 1.1.2.5 2001/07/31 05:32:27 user57 Exp $ --
  +!-- $Id: config.xml,v 1.1.2.6 2001/07/31 06:13:36 user57 Exp $ --
   
 !-- == --
 !-- Module Setup   --
  @@ -262,6 +262,69 @@
 property name=release.api value=${release.docs}/api/
 property name=release.module.docs value=${release.docs}/${module.name}/
 property name=release.module.api value=${release.api}/${module.name}/
  +
  +
  +  !-- == --
  +  !-- Modules Setup  --
  +  !-- == --
  +
  +  !-- Skip any missing modules and issue a warning --
  +  property name=testsuite.executemodules.skipmissing value=true/
  +
  +  !-- Define the header and footer displayed during each module execution --
  +  property name=testsuite.executemodules.header![CDATA[
  +== 
  +==  Executing ${target} in module '${module}'...
  +==]]/property
  +
  +  property name=testsuite.executemodules.footer![CDATA[
  +==
  +==  Finished with ${target} in module '${module}'.
  +==
  +]]/property
  +
  +  !-- The group to use by default --
  +  property name=testsuite.groups value=default/
  +
  +  target name=module-configuration-setup
  +moduleconfig property=testsuite.modules selected=${testsuite.groups}
  +
  +  !-- Modules --
  +
  +  module name=bank/
  +  module name=bench/
  +  module name=bmp/
  +  module name=cts/
  +  module name=dbtest/
  +  module name=hello/
  +  module name=idgen/
  +  module name=jbossmq/
  +  module name=jmsra/
  +  module name=jrmp/
  +  module name=load/
  +  module name=lock/
  +  module name=logging/
  +  module name=mdb/
  +  module name=naming/
  +  module name=perf/
  +  module name=readahead/
  +  module name=security/
  +  module name=testbean/
  +  module name=threading/
  +  module name=web/
  +  module name=xa/
  +
  +  !-- Module groups --
  +
  +  group name=default
  +include modules=bank, bench, bmp, cts, dbtest, hello/
  +include modules=jbossmq, jmsra, jrmp, load, lock, logging/
  +include modules=mdb, naming, perf, 

[JBoss-dev] CVS update: jbosstest/src/build/stylesheets details1.xsl

2001-07-30 Thread Jason Dillon

  User: user57  
  Date: 01/07/30 23:22:06

  Removed: src/build/stylesheets Tag: jboss_buildmagic details1.xsl
  Log:
   o moving src/build/subprojects to etc/

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



[JBoss-dev] CVS update: jbosstest/src/build/subprojects build-bank.xml build-bench.xml build-bmp.xml build-cts.xml build-dbtest.xml build-hello.xml build-idgen.xml build-jbossmq.xml build-jmsra.xml build-jmx.xml build-jrmp.xml build-load.xml build-lock.xml build-logging.xml build-mdb.xml build-naming.xml build-perf.xml build-readahead.xml build-security.xml build-testbean.xml build-threading.xml build-web.xml build-xa.xml

2001-07-30 Thread Jason Dillon

  User: user57  
  Date: 01/07/30 23:22:06

  Removed: src/build/subprojects Tag: jboss_buildmagic build-bank.xml
build-bench.xml build-bmp.xml build-cts.xml
build-dbtest.xml build-hello.xml build-idgen.xml
build-jbossmq.xml build-jmsra.xml build-jmx.xml
build-jrmp.xml build-load.xml build-lock.xml
build-logging.xml build-mdb.xml build-naming.xml
build-perf.xml build-readahead.xml
build-security.xml build-testbean.xml
build-threading.xml build-web.xml build-xa.xml
  Log:
   o moving src/build/subprojects to etc/

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



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

2001-07-31 Thread Jason Dillon

  User: user57  
  Date: 01/07/30 23:23:40

  Removed: src/build Tag: jboss_buildmagic run_tests.xml
  Log:
   o this will be merged into build.xml or put in the top level with the rest
 of the build files.

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



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

2001-07-31 Thread Jason Dillon

  User: user57  
  Date: 01/07/30 23:14:05

  Modified:src/build Tag: jboss_buildmagic run_tests.xml
  Log:
   o updated from HEAD
  
  Revision  ChangesPath
  No   revision
  
  
  No   revision
  
  
  1.25.2.1  +19 -1 jbosstest/src/build/run_tests.xml
  
  Index: run_tests.xml
  ===
  RCS file: /cvsroot/jboss/jbosstest/src/build/run_tests.xml,v
  retrieving revision 1.25
  retrieving revision 1.25.2.1
  diff -u -r1.25 -r1.25.2.1
  --- run_tests.xml 2001/07/25 12:46:19 1.25
  +++ run_tests.xml 2001/07/31 06:14:05 1.25.2.1
  @@ -2,7 +2,7 @@
   
   !-- An ant build file for running the test code against a
   JBoss server dist
  -$Revision: 1.25 $
  +$Revision: 1.25.2.1 $
   --
   project name=JBossUnitTests default=run-tests basedir=../../
   
  @@ -427,6 +427,24 @@
   style basedir=${test.results.dir} destdir=${test.results.dir}
  extension=.html style=summary2.xsl
  includes=TEST-all-test-results.xml
  +   param name=thedate expression=${TIMENOW}/
  +   param name=java_version expression=${java.version}/
  +   param name=java_vendor expression=${java.vendor}/
  +   param name=java_vm_specification_version 
expression=${java.vm.specification.version}/
  +   param name=java_vm_version expression=${java.vm.version}/
  +   param name=java_vm_name expression=${java.vm.name}/
  +   param name=java_vm_info expression=${java.vm.info}/
  +   param name=java_specification_version 
expression=${java.specification.version}/
  +   param name=java_class_version expression=${java.class.version}/
  +   param name=os_name expression=${os.name}/
  +   param name=os_arch expression=${os.arch}/
  +   param name=os_version expression=${os.version}/
  +/style
  +
  +style basedir=${test.results.dir} destdir=${test.results.dir}
  +   extension=.html style=details1.xsl
  +   out=${test.results.dir}/detailed-results.html
  +   in=${test.results.dir}/TEST-all-test-results.xml
  param name=thedate expression=${TIMENOW}/
  param name=java_version expression=${java.version}/
  param name=java_vendor expression=${java.vendor}/
  
  
  

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



[JBoss-dev] CVS update: jbosstest/src/main/org/jboss/test/jmsra/test RaQueueTest.java RaTopicTest.java

2001-07-31 Thread Jason Dillon

  User: user57  
  Date: 01/07/30 23:14:05

  Modified:src/main/org/jboss/test/jmsra/test Tag: jboss_buildmagic
RaQueueTest.java RaTopicTest.java
  Log:
   o updated from HEAD
  
  Revision  ChangesPath
  No   revision
  
  
  No   revision
  
  
  1.1.4.1   +1 -1  jbosstest/src/main/org/jboss/test/jmsra/test/RaQueueTest.java
  
  Index: RaQueueTest.java
  ===
  RCS file: 
/cvsroot/jboss/jbosstest/src/main/org/jboss/test/jmsra/test/RaQueueTest.java,v
  retrieving revision 1.1
  retrieving revision 1.1.4.1
  diff -u -r1.1 -r1.1.4.1
  --- RaQueueTest.java  2001/07/04 01:27:34 1.1
  +++ RaQueueTest.java  2001/07/31 06:14:05 1.1.4.1
  @@ -33,12 +33,12 @@
*
* @author  a href=mailto:[EMAIL PROTECTED];Peter Antman/a
* @author  a href=mailto:[EMAIL PROTECTED];Jason Dillon/a
  - * @version $Revision: 1.1 $
  + * @version $Revision: 1.1.4.1 $
*/
   public class RaQueueTest
   extends RaTest
   {
  -private static final String QUEUE_FACTORY = QueueConnectionFactory;
  +private static final String QUEUE_FACTORY = ConnectionFactory;
   private static final String QUEUE = queue/testQueue;
   private static final String JNDI = TxPublisher;
   
  
  
  
  1.1.4.1   +1 -1  jbosstest/src/main/org/jboss/test/jmsra/test/RaTopicTest.java
  
  Index: RaTopicTest.java
  ===
  RCS file: 
/cvsroot/jboss/jbosstest/src/main/org/jboss/test/jmsra/test/RaTopicTest.java,v
  retrieving revision 1.1
  retrieving revision 1.1.4.1
  diff -u -r1.1 -r1.1.4.1
  --- RaTopicTest.java  2001/07/04 01:27:34 1.1
  +++ RaTopicTest.java  2001/07/31 06:14:05 1.1.4.1
  @@ -33,12 +33,12 @@
*
* @author  a href=mailto:[EMAIL PROTECTED];Peter Antman/a
* @author  a href=mailto:[EMAIL PROTECTED];Jason Dillon/a
  - * @version $Revision: 1.1 $
  + * @version $Revision: 1.1.4.1 $
*/
   public class RaTopicTest
   extends RaTest
   {
  -private static final String TOPIC_FACTORY = TopicConnectionFactory;
  +private static final String TOPIC_FACTORY = ConnectionFactory;
   private static final String TOPIC = topic/testTopic;
   private static final String JNDI = TxTopicPublisher;
   
  
  
  

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



[JBoss-dev] CVS update: jbosstest/src/main/org/jboss/test/jbossmq/perf Main.java

2001-07-31 Thread Jason Dillon

  User: user57  
  Date: 01/07/30 23:14:05

  Modified:src/main/org/jboss/test/jbossmq/perf Tag: jboss_buildmagic
Main.java
  Log:
   o updated from HEAD
  
  Revision  ChangesPath
  No   revision
  
  
  No   revision
  
  
  1.1.2.1   +2 -2  jbosstest/src/main/org/jboss/test/jbossmq/perf/Main.java
  
  Index: Main.java
  ===
  RCS file: /cvsroot/jboss/jbosstest/src/main/org/jboss/test/jbossmq/perf/Main.java,v
  retrieving revision 1.1
  retrieving revision 1.1.2.1
  diff -u -r1.1 -r1.1.2.1
  --- Main.java 2001/06/25 01:25:54 1.1
  +++ Main.java 2001/07/31 06:14:05 1.1.2.1
  @@ -33,8 +33,8 @@
   public class Main  extends junit.framework.TestCase {

// Provider specific
  - static String TOPIC_FACTORY = TopicConnectionFactory;
  - static String QUEUE_FACTORY = QueueConnectionFactory;
  + static String TOPIC_FACTORY = ConnectionFactory;
  + static String QUEUE_FACTORY = ConnectionFactory;

static String TEST_QUEUE = queue/testQueue;
static String TEST_TOPIC = topic/testTopic;
  
  
  

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



[JBoss-dev] CVS update: jbosstest build.xml

2001-07-31 Thread Jason Dillon

  User: user57  
  Date: 01/07/30 23:44:55

  Modified:.Tag: jboss_buildmagic build.xml
  Log:
   o added release-dependencies to modules which depend on libraries.  Most of
 the work is done by the server module, since it depends on most of them,
 should probably add the same bits to each module, but I need to find a
 more automatic way to do this first.
  
  Revision  ChangesPath
  No   revision
  
  
  No   revision
  
  
  1.1.2.7   +2 -3  jbosstest/Attic/build.xml
  
  Index: build.xml
  ===
  RCS file: /cvsroot/jboss/jbosstest/Attic/build.xml,v
  retrieving revision 1.1.2.6
  retrieving revision 1.1.2.7
  diff -u -r1.1.2.6 -r1.1.2.7
  --- build.xml 2001/07/31 06:13:36 1.1.2.6
  +++ build.xml 2001/07/31 06:44:55 1.1.2.7
  @@ -10,7 +10,7 @@
   !----
   !-- == --
   
  -!-- $Id: build.xml,v 1.1.2.6 2001/07/31 06:13:36 user57 Exp $ --
  +!-- $Id: build.xml,v 1.1.2.7 2001/07/31 06:44:55 user57 Exp $ --
   
   project default=main
   
  @@ -288,8 +288,7 @@
  value=bank, bench, bmp/
   
   execmodules modules=${testsuite.modules} 
  -  antfile=build-${module}.xml
  -  root=${module.root}/src/build/subprojects
  +  root=${module.root}/etc antfile=build-${module}.xml
 skipmissing=${testsuite.executemodules.skipmissing}
 header message=${testsuite.executemodules.header}/
 footer message=${testsuite.executemodules.footer}/
  
  
  

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



[JBoss-dev] CVS update: jbosssx build.xml

2001-07-31 Thread Jason Dillon

  User: user57  
  Date: 01/07/30 23:44:55

  Modified:.Tag: jboss_buildmagic build.xml
  Log:
   o added release-dependencies to modules which depend on libraries.  Most of
 the work is done by the server module, since it depends on most of them,
 should probably add the same bits to each module, but I need to find a
 more automatic way to do this first.
  
  Revision  ChangesPath
  No   revision
  
  
  No   revision
  
  
  1.1.2.5   +13 -2 jbosssx/Attic/build.xml
  
  Index: build.xml
  ===
  RCS file: /cvsroot/jboss/jbosssx/Attic/build.xml,v
  retrieving revision 1.1.2.4
  retrieving revision 1.1.2.5
  diff -u -r1.1.2.4 -r1.1.2.5
  --- build.xml 2001/07/31 02:29:11 1.1.2.4
  +++ build.xml 2001/07/31 06:44:55 1.1.2.5
  @@ -10,7 +10,7 @@
   !----
   !-- == --
   
  -!-- $Id: build.xml,v 1.1.2.4 2001/07/31 02:29:11 user57 Exp $ --
  +!-- $Id: build.xml,v 1.1.2.5 2001/07/31 06:44:55 user57 Exp $ --
   
   project default=main
   
  @@ -426,7 +426,7 @@
 !-- Builds a release distribution. --
 !-- == --
   
  -  target name=release depends=all
  +  target name=release depends=all, release-dependencies
  description=Builds a release distribution.
   !-- Copy the generated libraries (lib) --
   mkdir dir=${release.lib}/
  @@ -471,6 +471,17 @@
 /fileset
   /copy
 /target
  +
  +  target name=release-dependencies depends=init
  +mkdir dir=${release.lib.ext}/
  +
  +copy todir=${release.lib.ext} filtering=no
  +  fileset dir=${sun.jsse.lib}
  +include name=*.jar/
  +  /fileset
  +/copy
  +  /target
  +
   
 target name=release-archive-prepare depends=release
   mkdir dir=${module.release}/
  
  
  

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



[JBoss-dev] CVS update: jboss build.xml

2001-07-31 Thread Jason Dillon

  User: user57  
  Date: 01/07/30 23:44:55

  Modified:.Tag: jboss_buildmagic build.xml
  Log:
   o added release-dependencies to modules which depend on libraries.  Most of
 the work is done by the server module, since it depends on most of them,
 should probably add the same bits to each module, but I need to find a
 more automatic way to do this first.
  
  Revision  ChangesPath
  No   revision
  
  
  No   revision
  
  
  1.1.2.12  +46 -3 jboss/Attic/build.xml
  
  Index: build.xml
  ===
  RCS file: /cvsroot/jboss/jboss/Attic/build.xml,v
  retrieving revision 1.1.2.11
  retrieving revision 1.1.2.12
  diff -u -r1.1.2.11 -r1.1.2.12
  --- build.xml 2001/07/31 02:29:12 1.1.2.11
  +++ build.xml 2001/07/31 06:44:55 1.1.2.12
  @@ -10,7 +10,7 @@
   !----
   !-- == --
   
  -!-- $Id: build.xml,v 1.1.2.11 2001/07/31 02:29:12 user57 Exp $ --
  +!-- $Id: build.xml,v 1.1.2.12 2001/07/31 06:44:55 user57 Exp $ --
   
   project default=main
   
  @@ -562,7 +562,7 @@
 !-- Builds a release distribution. --
 !-- == --
   
  -  target name=release depends=all
  +  target name=release depends=all, release-dependencies
  description=Builds a release distribution.
   !-- Copy the generated libraries (lib/ext) --
   mkdir dir=${release.lib.ext}/
  @@ -671,9 +671,52 @@
include name=tmp.properties/
 /fileset
   /copy
  +  /target
   
  -!-- TODO: dependency libraries --
  +  target name=release-dependencies depends=init
  +mkdir dir=${release.lib.ext}/
   
  +copy todir=${release.lib} filtering=no
  +  fileset dir=${sun.jmx.lib}
  +include name=jmxri.jar/
  +  /fileset
  +  fileset dir=${sun.jaxp.lib}
  +include name=*.jar/
  +  /fileset
  +  fileset dir=${sun.jaas.lib}
  +include name=jaas.jar/
  +  /fileset
  +/copy
  +
  +copy todir=${release.lib.ext} filtering=no
  +  fileset dir=${sun.jndi.lib}
  +include name=jndi.jar/
  +  /fileset
  +  fileset dir=${sun.jmx.lib}
  +include name=jmxtools.jar/
  +  /fileset
  +  fileset dir=${sun.jaf.lib}
  +include name=activation.jar/
  +  /fileset
  +  fileset dir=${sun.javamail.lib}
  +include name=mail.jar/
  +  /fileset
  +  fileset dir=${sun.jts.lib}
  +include name=jts.jar/
  +  /fileset
  +  fileset dir=${apache.log4j.lib}
  +include name=log4j.jar/
  +  /fileset
  +  fileset dir=${oswego.concurrent.lib}
  +include name=concurrent.jar/
  +  /fileset
  +  fileset dir=${gjt.jpl-util.lib}
  +include name=jpl-util.jar/
  +  /fileset
  +  fileset dir=${hsql.hsql.lib}
  +include name=hsql.jar/
  +  /fileset
  +/copy
 /target
   
 target name=release-archive-prepare depends=release
  
  
  

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



[JBoss-dev] CVS update: jbossmq build.xml

2001-07-31 Thread Jason Dillon

  User: user57  
  Date: 01/07/30 23:44:55

  Modified:.Tag: jboss_buildmagic build.xml
  Log:
   o added release-dependencies to modules which depend on libraries.  Most of
 the work is done by the server module, since it depends on most of them,
 should probably add the same bits to each module, but I need to find a
 more automatic way to do this first.
  
  Revision  ChangesPath
  No   revision
  
  
  No   revision
  
  
  1.1.2.5   +12 -2 jbossmq/Attic/build.xml
  
  Index: build.xml
  ===
  RCS file: /cvsroot/jboss/jbossmq/Attic/build.xml,v
  retrieving revision 1.1.2.4
  retrieving revision 1.1.2.5
  diff -u -r1.1.2.4 -r1.1.2.5
  --- build.xml 2001/07/31 02:29:10 1.1.2.4
  +++ build.xml 2001/07/31 06:44:55 1.1.2.5
  @@ -10,7 +10,7 @@
   !----
   !-- == --
   
  -!-- $Id: build.xml,v 1.1.2.4 2001/07/31 02:29:10 user57 Exp $ --
  +!-- $Id: build.xml,v 1.1.2.5 2001/07/31 06:44:55 user57 Exp $ --
   
   project default=main
   
  @@ -371,7 +371,7 @@
 !-- Builds a release distribution. --
 !-- == --
   
  -  target name=release depends=all
  +  target name=release depends=all, release-dependencies
  description=Builds a release distribution.
   !-- Copy the generated libraries (lib/ext) --
   mkdir dir=${release.lib.ext}/
  @@ -418,6 +418,16 @@
   
   !-- Setup the database directory (db) --
   mkdir dir=${release.db}/jbossmq/
  +  /target
  +
  +  target name=release-dependencies depends=init
  +mkdir dir=${release.lib.ext}/
  +
  +copy todir=${release.lib.ext} filtering=no
  +  fileset dir=${gnu.regexp.lib}
  +include name=*.jar/
  +  /fileset
  +/copy
 /target
   
 target name=release-archive-prepare depends=release
  
  
  

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



[JBoss-dev] CVS update: build config.xml

2001-07-31 Thread Jason Dillon

  User: user57  
  Date: 01/07/31 00:07:57

  Modified:.Tag: jboss_buildmagic config.xml
  Log:
   o almost have the structure down, the server almost starts up
  
  Revision  ChangesPath
  No   revision
  
  
  No   revision
  
  
  1.2.2.17  +2 -2  build/config.xml
  
  Index: config.xml
  ===
  RCS file: /cvsroot/jboss/build/config.xml,v
  retrieving revision 1.2.2.16
  retrieving revision 1.2.2.17
  diff -u -r1.2.2.16 -r1.2.2.17
  --- config.xml2001/07/31 05:05:59 1.2.2.16
  +++ config.xml2001/07/31 07:07:57 1.2.2.17
  @@ -7,7 +7,7 @@
   !----
   !-- == --
   
  -!-- $Id: config.xml,v 1.2.2.16 2001/07/31 05:05:59 user57 Exp $ --
  +!-- $Id: config.xml,v 1.2.2.17 2001/07/31 07:07:57 user57 Exp $ --
   
 !-- == --
 !-- Project Setup  --
  @@ -71,7 +71,7 @@
 !-- Not really sure why these are here --
 property name=release.admin value=${release.root}/admin/
 property name=release.admin.client value=${release.admin}/client/
  -  property name=release.admin.client.lib value=${release.client}/lib/
  +  property name=release.admin.client.lib value=${release.admin.client}/lib/
 property name=release.admin.components value=${release.admin}/components/
   
   
  
  
  

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



[JBoss-dev] CVS update: jbossmq build.xml

2001-07-31 Thread Jason Dillon

  User: user57  
  Date: 01/07/31 00:07:57

  Modified:.Tag: jboss_buildmagic build.xml
  Log:
   o almost have the structure down, the server almost starts up
  
  Revision  ChangesPath
  No   revision
  
  
  No   revision
  
  
  1.1.2.6   +7 -1  jbossmq/Attic/build.xml
  
  Index: build.xml
  ===
  RCS file: /cvsroot/jboss/jbossmq/Attic/build.xml,v
  retrieving revision 1.1.2.5
  retrieving revision 1.1.2.6
  diff -u -r1.1.2.5 -r1.1.2.6
  --- build.xml 2001/07/31 06:44:55 1.1.2.5
  +++ build.xml 2001/07/31 07:07:57 1.1.2.6
  @@ -10,7 +10,7 @@
   !----
   !-- == --
   
  -!-- $Id: build.xml,v 1.1.2.5 2001/07/31 06:44:55 user57 Exp $ --
  +!-- $Id: build.xml,v 1.1.2.6 2001/07/31 07:07:57 user57 Exp $ --
   
   project default=main
   
  @@ -424,6 +424,12 @@
   mkdir dir=${release.lib.ext}/
   
   copy todir=${release.lib.ext} filtering=no
  +  fileset dir=${gnu.regexp.lib}
  +include name=*.jar/
  +  /fileset
  +/copy
  +
  +copy todir=${release.client} filtering=no
 fileset dir=${gnu.regexp.lib}
   include name=*.jar/
 /fileset
  
  
  

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



[JBoss-dev] CVS update: admin config.xml

2001-07-31 Thread Jason Dillon

  User: user57  
  Date: 01/07/31 00:07:57

  Modified:.Tag: jboss_buildmagic config.xml
  Log:
   o almost have the structure down, the server almost starts up
  
  Revision  ChangesPath
  No   revision
  
  
  No   revision
  
  
  1.1.2.5   +2 -2  admin/Attic/config.xml
  
  Index: config.xml
  ===
  RCS file: /cvsroot/jboss/admin/Attic/config.xml,v
  retrieving revision 1.1.2.4
  retrieving revision 1.1.2.5
  diff -u -r1.1.2.4 -r1.1.2.5
  --- config.xml2001/07/31 02:29:09 1.1.2.4
  +++ config.xml2001/07/31 07:07:56 1.1.2.5
  @@ -7,7 +7,7 @@
   !----
   !-- == --
   
  -!-- $Id: config.xml,v 1.1.2.4 2001/07/31 02:29:09 user57 Exp $ --
  +!-- $Id: config.xml,v 1.1.2.5 2001/07/31 07:07:56 user57 Exp $ --
   
 !-- == --
 !-- Module Setup   --
  @@ -182,7 +182,7 @@
 !-- Not really sure why these are here --
 property name=release.admin value=${release.root}/admin/
 property name=release.admin.client value=${release.admin}/client/
  -  property name=release.admin.client.lib value=${release.client}/lib/
  +  property name=release.admin.client.lib value=${release.admin.client}/lib/
 property name=release.admin.components value=${release.admin}/components/
   
   
  
  
  

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



[JBoss-dev] CVS update: jboss build.xml

2001-07-31 Thread Jason Dillon

  User: user57  
  Date: 01/07/31 00:07:57

  Modified:.Tag: jboss_buildmagic build.xml
  Log:
   o almost have the structure down, the server almost starts up
  
  Revision  ChangesPath
  No   revision
  
  
  No   revision
  
  
  1.1.2.13  +19 -2 jboss/Attic/build.xml
  
  Index: build.xml
  ===
  RCS file: /cvsroot/jboss/jboss/Attic/build.xml,v
  retrieving revision 1.1.2.12
  retrieving revision 1.1.2.13
  diff -u -r1.1.2.12 -r1.1.2.13
  --- build.xml 2001/07/31 06:44:55 1.1.2.12
  +++ build.xml 2001/07/31 07:07:57 1.1.2.13
  @@ -10,7 +10,7 @@
   !----
   !-- == --
   
  -!-- $Id: build.xml,v 1.1.2.12 2001/07/31 06:44:55 user57 Exp $ --
  +!-- $Id: build.xml,v 1.1.2.13 2001/07/31 07:07:57 user57 Exp $ --
   
   project default=main
   
  @@ -613,7 +613,7 @@
   /copy
   !-- since copy does not preserve permissions, do this here (again) --
   chmod perm=+x
  -  fileset dir=${build.bin}
  +  fileset dir=${release.bin}
include name=**/*.sh/
 /fileset
   /chmod
  @@ -715,6 +715,23 @@
 /fileset
 fileset dir=${hsql.hsql.lib}
   include name=hsql.jar/
  +  /fileset
  +
  +  !-- HACK --
  +  fileset dir=${jboss.management.lib}
  +include name=jboss-management.jar/
  +  /fileset
  +/copy
  +
  +copy todir=${release.client} filtering=no
  +  fileset dir=${sun.jndi.lib}
  +include name=jndi.jar/
  +  /fileset
  +  fileset dir=${apache.log4j.lib}
  +include name=log4j.jar/
  +  /fileset
  +  fileset dir=${oswego.concurrent.lib}
  +include name=concurrent.jar/
 /fileset
   /copy
 /target
  
  
  

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



[JBoss-dev] CVS update: jbosssx build.xml

2001-07-31 Thread Jason Dillon

  User: user57  
  Date: 01/07/31 00:07:57

  Modified:.Tag: jboss_buildmagic build.xml
  Log:
   o almost have the structure down, the server almost starts up
  
  Revision  ChangesPath
  No   revision
  
  
  No   revision
  
  
  1.1.2.6   +8 -2  jbosssx/Attic/build.xml
  
  Index: build.xml
  ===
  RCS file: /cvsroot/jboss/jbosssx/Attic/build.xml,v
  retrieving revision 1.1.2.5
  retrieving revision 1.1.2.6
  diff -u -r1.1.2.5 -r1.1.2.6
  --- build.xml 2001/07/31 06:44:55 1.1.2.5
  +++ build.xml 2001/07/31 07:07:57 1.1.2.6
  @@ -10,7 +10,7 @@
   !----
   !-- == --
   
  -!-- $Id: build.xml,v 1.1.2.5 2001/07/31 06:44:55 user57 Exp $ --
  +!-- $Id: build.xml,v 1.1.2.6 2001/07/31 07:07:57 user57 Exp $ --
   
   project default=main
   
  @@ -319,7 +319,7 @@
   /jar
   
   !-- Build jbosssx-client.jar --
  -jar jarfile=${build.jars}/jboss-jaas.jar
  +jar jarfile=${build.jars}/jbosssx-client.jar
 fileset dir=${build.classes}
   exclude name=META-INF/MANIFEST.MF/ !-- HACK --
   include name=org/jboss/security/ClientLoginModule.class/
  @@ -476,6 +476,12 @@
   mkdir dir=${release.lib.ext}/
   
   copy todir=${release.lib.ext} filtering=no
  +  fileset dir=${sun.jsse.lib}
  +include name=*.jar/
  +  /fileset
  +/copy
  +
  +copy todir=${release.client} filtering=no
 fileset dir=${sun.jsse.lib}
   include name=*.jar/
 /fileset
  
  
  

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



[JBoss-dev] CVS update: jboss-j2ee build.xml

2001-07-31 Thread Jason Dillon

  User: user57  
  Date: 01/07/31 14:36:43

  Modified:.Tag: jboss_buildmagic build.xml
  Log:
   o removed release sub-directory under output since there is a directory
 created for each ${release.id}
  
  Revision  ChangesPath
  No   revision
  
  
  No   revision
  
  
  1.1.2.11  +2 -2  jboss-j2ee/Attic/build.xml
  
  Index: build.xml
  ===
  RCS file: /cvsroot/jboss/jboss-j2ee/Attic/build.xml,v
  retrieving revision 1.1.2.10
  retrieving revision 1.1.2.11
  diff -u -r1.1.2.10 -r1.1.2.11
  --- build.xml 2001/07/31 02:29:10 1.1.2.10
  +++ build.xml 2001/07/31 21:36:43 1.1.2.11
  @@ -10,7 +10,7 @@
   !----
   !-- == --
   
  -!-- $Id: build.xml,v 1.1.2.10 2001/07/31 02:29:10 user57 Exp $ --
  +!-- $Id: build.xml,v 1.1.2.11 2001/07/31 21:36:43 user57 Exp $ --
   
   project default=main
   
  @@ -71,7 +71,7 @@
 property name=module.source value=${module.root}/src/
 property name=module.output value=${module.root}/output/
 property name=module.build value=${module.output}/
  -  property name=module.release value=${module.output}/release/
  +  property name=module.release value=${module.output}/
 property name=tools.root value=${project.root}/tools/
 property name=thirdparty.root value=${project.root}/thirdparty/
   
  
  
  

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



[JBoss-dev] CVS update: jbosstest build.xml

2001-07-31 Thread Jason Dillon

  User: user57  
  Date: 01/07/31 14:36:44

  Modified:.Tag: jboss_buildmagic build.xml
  Log:
   o removed release sub-directory under output since there is a directory
 created for each ${release.id}
  
  Revision  ChangesPath
  No   revision
  
  
  No   revision
  
  
  1.1.2.8   +2 -2  jbosstest/Attic/build.xml
  
  Index: build.xml
  ===
  RCS file: /cvsroot/jboss/jbosstest/Attic/build.xml,v
  retrieving revision 1.1.2.7
  retrieving revision 1.1.2.8
  diff -u -r1.1.2.7 -r1.1.2.8
  --- build.xml 2001/07/31 06:44:55 1.1.2.7
  +++ build.xml 2001/07/31 21:36:44 1.1.2.8
  @@ -10,7 +10,7 @@
   !----
   !-- == --
   
  -!-- $Id: build.xml,v 1.1.2.7 2001/07/31 06:44:55 user57 Exp $ --
  +!-- $Id: build.xml,v 1.1.2.8 2001/07/31 21:36:44 user57 Exp $ --
   
   project default=main
   
  @@ -71,7 +71,7 @@
 property name=module.source value=${module.root}/src/
 property name=module.output value=${module.root}/output/
 property name=module.build value=${module.output}/
  -  property name=module.release value=${module.output}/release/
  +  property name=module.release value=${module.output}/
 property name=tools.root value=${project.root}/tools/
 property name=thirdparty.root value=${project.root}/thirdparty/
   
  
  
  

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



[JBoss-dev] CVS update: jbosssx build.xml

2001-07-31 Thread Jason Dillon

  User: user57  
  Date: 01/07/31 14:36:44

  Modified:.Tag: jboss_buildmagic build.xml
  Log:
   o removed release sub-directory under output since there is a directory
 created for each ${release.id}
  
  Revision  ChangesPath
  No   revision
  
  
  No   revision
  
  
  1.1.2.7   +2 -2  jbosssx/Attic/build.xml
  
  Index: build.xml
  ===
  RCS file: /cvsroot/jboss/jbosssx/Attic/build.xml,v
  retrieving revision 1.1.2.6
  retrieving revision 1.1.2.7
  diff -u -r1.1.2.6 -r1.1.2.7
  --- build.xml 2001/07/31 07:07:57 1.1.2.6
  +++ build.xml 2001/07/31 21:36:44 1.1.2.7
  @@ -10,7 +10,7 @@
   !----
   !-- == --
   
  -!-- $Id: build.xml,v 1.1.2.6 2001/07/31 07:07:57 user57 Exp $ --
  +!-- $Id: build.xml,v 1.1.2.7 2001/07/31 21:36:44 user57 Exp $ --
   
   project default=main
   
  @@ -71,7 +71,7 @@
 property name=module.source value=${module.root}/src/
 property name=module.output value=${module.root}/output/
 property name=module.build value=${module.output}/
  -  property name=module.release value=${module.output}/release/
  +  property name=module.release value=${module.output}/
 property name=tools.root value=${project.root}/tools/
 property name=thirdparty.root value=${project.root}/thirdparty/
   
  
  
  

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



[JBoss-dev] CVS update: jboss build.xml

2001-07-31 Thread Jason Dillon

  User: user57  
  Date: 01/07/31 14:36:44

  Modified:.Tag: jboss_buildmagic build.xml
  Log:
   o removed release sub-directory under output since there is a directory
 created for each ${release.id}
  
  Revision  ChangesPath
  No   revision
  
  
  No   revision
  
  
  1.1.2.14  +2 -2  jboss/Attic/build.xml
  
  Index: build.xml
  ===
  RCS file: /cvsroot/jboss/jboss/Attic/build.xml,v
  retrieving revision 1.1.2.13
  retrieving revision 1.1.2.14
  diff -u -r1.1.2.13 -r1.1.2.14
  --- build.xml 2001/07/31 07:07:57 1.1.2.13
  +++ build.xml 2001/07/31 21:36:44 1.1.2.14
  @@ -10,7 +10,7 @@
   !----
   !-- == --
   
  -!-- $Id: build.xml,v 1.1.2.13 2001/07/31 07:07:57 user57 Exp $ --
  +!-- $Id: build.xml,v 1.1.2.14 2001/07/31 21:36:44 user57 Exp $ --
   
   project default=main
   
  @@ -71,7 +71,7 @@
 property name=module.source value=${module.root}/src/
 property name=module.output value=${module.root}/output/
 property name=module.build value=${module.output}/
  -  property name=module.release value=${module.output}/release/
  +  property name=module.release value=${module.output}/
 property name=tools.root value=${project.root}/tools/
 property name=thirdparty.root value=${project.root}/thirdparty/
   
  
  
  

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



[JBoss-dev] CVS update: jbossmq build.xml

2001-07-31 Thread Jason Dillon

  User: user57  
  Date: 01/07/31 14:36:43

  Modified:.Tag: jboss_buildmagic build.xml
  Log:
   o removed release sub-directory under output since there is a directory
 created for each ${release.id}
  
  Revision  ChangesPath
  No   revision
  
  
  No   revision
  
  
  1.1.2.7   +2 -2  jbossmq/Attic/build.xml
  
  Index: build.xml
  ===
  RCS file: /cvsroot/jboss/jbossmq/Attic/build.xml,v
  retrieving revision 1.1.2.6
  retrieving revision 1.1.2.7
  diff -u -r1.1.2.6 -r1.1.2.7
  --- build.xml 2001/07/31 07:07:57 1.1.2.6
  +++ build.xml 2001/07/31 21:36:43 1.1.2.7
  @@ -10,7 +10,7 @@
   !----
   !-- == --
   
  -!-- $Id: build.xml,v 1.1.2.6 2001/07/31 07:07:57 user57 Exp $ --
  +!-- $Id: build.xml,v 1.1.2.7 2001/07/31 21:36:43 user57 Exp $ --
   
   project default=main
   
  @@ -71,7 +71,7 @@
 property name=module.source value=${module.root}/src/
 property name=module.output value=${module.root}/output/
 property name=module.build value=${module.output}/
  -  property name=module.release value=${module.output}/release/
  +  property name=module.release value=${module.output}/
 property name=tools.root value=${project.root}/tools/
 property name=thirdparty.root value=${project.root}/thirdparty/
   
  
  
  

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



[JBoss-dev] CVS update: manual build.xml

2001-07-31 Thread Jason Dillon

  User: user57  
  Date: 01/07/31 14:36:43

  Modified:.Tag: jboss_buildmagic build.xml
  Log:
   o removed release sub-directory under output since there is a directory
 created for each ${release.id}
  
  Revision  ChangesPath
  No   revision
  
  
  No   revision
  
  
  1.1.2.5   +2 -2  manual/Attic/build.xml
  
  Index: build.xml
  ===
  RCS file: /cvsroot/jboss/manual/Attic/build.xml,v
  retrieving revision 1.1.2.4
  retrieving revision 1.1.2.5
  diff -u -r1.1.2.4 -r1.1.2.5
  --- build.xml 2001/07/31 05:05:59 1.1.2.4
  +++ build.xml 2001/07/31 21:36:43 1.1.2.5
  @@ -10,7 +10,7 @@
   !----
   !-- == --
   
  -!-- $Id: build.xml,v 1.1.2.4 2001/07/31 05:05:59 user57 Exp $ --
  +!-- $Id: build.xml,v 1.1.2.5 2001/07/31 21:36:43 user57 Exp $ --
   
   project default=main
   
  @@ -71,7 +71,7 @@
 property name=module.source value=${module.root}/src/
 property name=module.output value=${module.root}/output/
 property name=module.build value=${module.output}/
  -  property name=module.release value=${module.output}/release/
  +  property name=module.release value=${module.output}/
 property name=tools.root value=${project.root}/tools/
 property name=thirdparty.root value=${project.root}/thirdparty/
   
  
  
  

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



[JBoss-dev] CVS update: jbosscx build.xml

2001-07-31 Thread Jason Dillon

  User: user57  
  Date: 01/07/31 14:36:43

  Modified:.Tag: jboss_buildmagic build.xml
  Log:
   o removed release sub-directory under output since there is a directory
 created for each ${release.id}
  
  Revision  ChangesPath
  No   revision
  
  
  No   revision
  
  
  1.1.2.5   +2 -2  jbosscx/Attic/build.xml
  
  Index: build.xml
  ===
  RCS file: /cvsroot/jboss/jbosscx/Attic/build.xml,v
  retrieving revision 1.1.2.4
  retrieving revision 1.1.2.5
  diff -u -r1.1.2.4 -r1.1.2.5
  --- build.xml 2001/07/31 02:29:10 1.1.2.4
  +++ build.xml 2001/07/31 21:36:43 1.1.2.5
  @@ -10,7 +10,7 @@
   !----
   !-- == --
   
  -!-- $Id: build.xml,v 1.1.2.4 2001/07/31 02:29:10 user57 Exp $ --
  +!-- $Id: build.xml,v 1.1.2.5 2001/07/31 21:36:43 user57 Exp $ --
   
   project default=main
   
  @@ -71,7 +71,7 @@
 property name=module.source value=${module.root}/src/
 property name=module.output value=${module.root}/output/
 property name=module.build value=${module.output}/
  -  property name=module.release value=${module.output}/release/
  +  property name=module.release value=${module.output}/
 property name=tools.root value=${project.root}/tools/
 property name=thirdparty.root value=${project.root}/thirdparty/
   
  
  
  

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



[JBoss-dev] CVS update: jbosspool build.xml

2001-07-31 Thread Jason Dillon

  User: user57  
  Date: 01/07/31 14:36:44

  Modified:.Tag: jboss_buildmagic build.xml
  Log:
   o removed release sub-directory under output since there is a directory
 created for each ${release.id}
  
  Revision  ChangesPath
  No   revision
  
  
  No   revision
  
  
  1.1.2.6   +2 -2  jbosspool/Attic/build.xml
  
  Index: build.xml
  ===
  RCS file: /cvsroot/jboss/jbosspool/Attic/build.xml,v
  retrieving revision 1.1.2.5
  retrieving revision 1.1.2.6
  diff -u -r1.1.2.5 -r1.1.2.6
  --- build.xml 2001/07/31 02:29:11 1.1.2.5
  +++ build.xml 2001/07/31 21:36:44 1.1.2.6
  @@ -10,7 +10,7 @@
   !----
   !-- == --
   
  -!-- $Id: build.xml,v 1.1.2.5 2001/07/31 02:29:11 user57 Exp $ --
  +!-- $Id: build.xml,v 1.1.2.6 2001/07/31 21:36:44 user57 Exp $ --
   
   project default=main
   
  @@ -71,7 +71,7 @@
 property name=module.source value=${module.root}/src/
 property name=module.output value=${module.root}/output/
 property name=module.build value=${module.output}/
  -  property name=module.release value=${module.output}/release/
  +  property name=module.release value=${module.output}/
 property name=tools.root value=${project.root}/tools/
 property name=thirdparty.root value=${project.root}/thirdparty/
   
  
  
  

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



[JBoss-dev] CVS update: jbossmx build.xml

2001-07-31 Thread Jason Dillon

  User: user57  
  Date: 01/07/31 14:36:43

  Modified:.Tag: jboss_buildmagic build.xml
  Log:
   o removed release sub-directory under output since there is a directory
 created for each ${release.id}
  
  Revision  ChangesPath
  No   revision
  
  
  No   revision
  
  
  1.1.2.5   +2 -2  jbossmx/Attic/build.xml
  
  Index: build.xml
  ===
  RCS file: /cvsroot/jboss/jbossmx/Attic/build.xml,v
  retrieving revision 1.1.2.4
  retrieving revision 1.1.2.5
  diff -u -r1.1.2.4 -r1.1.2.5
  --- build.xml 2001/07/31 02:29:10 1.1.2.4
  +++ build.xml 2001/07/31 21:36:43 1.1.2.5
  @@ -10,7 +10,7 @@
   !----
   !-- == --
   
  -!-- $Id: build.xml,v 1.1.2.4 2001/07/31 02:29:10 user57 Exp $ --
  +!-- $Id: build.xml,v 1.1.2.5 2001/07/31 21:36:43 user57 Exp $ --
   
   project default=main
   
  @@ -71,7 +71,7 @@
 property name=module.source value=${module.root}/src/
 property name=module.output value=${module.root}/output/
 property name=module.build value=${module.output}/
  -  property name=module.release value=${module.output}/release/
  +  property name=module.release value=${module.output}/
 property name=tools.root value=${project.root}/tools/
 property name=thirdparty.root value=${project.root}/thirdparty/
   
  
  
  

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



[JBoss-dev] CVS update: admin build.xml

2001-07-31 Thread Jason Dillon

  User: user57  
  Date: 01/07/31 14:36:43

  Modified:.Tag: jboss_buildmagic build.xml
  Log:
   o removed release sub-directory under output since there is a directory
 created for each ${release.id}
  
  Revision  ChangesPath
  No   revision
  
  
  No   revision
  
  
  1.1.2.7   +2 -2  admin/Attic/build.xml
  
  Index: build.xml
  ===
  RCS file: /cvsroot/jboss/admin/Attic/build.xml,v
  retrieving revision 1.1.2.6
  retrieving revision 1.1.2.7
  diff -u -r1.1.2.6 -r1.1.2.7
  --- build.xml 2001/07/31 02:29:09 1.1.2.6
  +++ build.xml 2001/07/31 21:36:43 1.1.2.7
  @@ -10,7 +10,7 @@
   !----
   !-- == --
   
  -!-- $Id: build.xml,v 1.1.2.6 2001/07/31 02:29:09 user57 Exp $ --
  +!-- $Id: build.xml,v 1.1.2.7 2001/07/31 21:36:43 user57 Exp $ --
   
   project default=main
   
  @@ -71,7 +71,7 @@
 property name=module.source value=${module.root}/src/
 property name=module.output value=${module.root}/output/
 property name=module.build value=${module.output}/
  -  property name=module.release value=${module.output}/release/
  +  property name=module.release value=${module.output}/
 property name=tools.root value=${project.root}/tools/
 property name=thirdparty.root value=${project.root}/thirdparty/
   
  
  
  

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



[JBoss-dev] CVS update: contrib/jetty build.xml

2001-07-31 Thread Jason Dillon

  User: user57  
  Date: 01/07/31 14:36:44

  Modified:jettyTag: jboss_buildmagic build.xml
  Log:
   o removed release sub-directory under output since there is a directory
 created for each ${release.id}
  
  Revision  ChangesPath
  No   revision
  
  
  No   revision
  
  
  1.1.2.6   +2 -2  contrib/jetty/Attic/build.xml
  
  Index: build.xml
  ===
  RCS file: /cvsroot/jboss/contrib/jetty/Attic/build.xml,v
  retrieving revision 1.1.2.5
  retrieving revision 1.1.2.6
  diff -u -r1.1.2.5 -r1.1.2.6
  --- build.xml 2001/07/31 02:37:15 1.1.2.5
  +++ build.xml 2001/07/31 21:36:44 1.1.2.6
  @@ -10,7 +10,7 @@
   !----
   !-- == --
   
  -!-- $Id: build.xml,v 1.1.2.5 2001/07/31 02:37:15 user57 Exp $ --
  +!-- $Id: build.xml,v 1.1.2.6 2001/07/31 21:36:44 user57 Exp $ --
   
   project default=main
   
  @@ -71,7 +71,7 @@
 property name=module.source value=${module.root}/src/
 property name=module.output value=${module.root}/output/
 property name=module.build value=${module.output}/
  -  property name=module.release value=${module.output}/release/
  +  property name=module.release value=${module.output}/
 property name=tools.root value=${project.root}/tools/
 property name=thirdparty.root value=${project.root}/thirdparty/
   
  
  
  

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



[JBoss-dev] CVS update: thirdparty/gjt/jpl-util/lib jpl-pattern.jar jpl-util.jar

2001-07-31 Thread Jason Dillon

  User: user57  
  Date: 01/07/31 14:43:50

  Modified:gjt/jpl-util/lib Tag: jboss_buildmagic jpl-util.jar
  Added:   gjt/jpl-util/lib Tag: jboss_buildmagic jpl-pattern.jar
  Log:
   o using jars from admin/lib for jpl-util, they are newer and required to
 build the admin module.  To keep things simple, the jpl-patthen.jar has
 been added to the jpl-util/lib directory
  
  Revision  ChangesPath
  No   revision
  
  
  No   revision
  
  
  1.1.1.1.2.1 +57 -51thirdparty/gjt/jpl-util/lib/jpl-util.jar
  
Binary file
  
  
  No   revision
  
  
  No   revision
  
  
  1.1.2.1   +15 -0 thirdparty/gjt/jpl-util/lib/Attic/jpl-pattern.jar
  
Binary file
  
  

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



[JBoss-dev] CVS update: jboss build.xml config.xml

2001-07-31 Thread Jason Dillon

  User: user57  
  Date: 01/07/31 14:43:50

  Modified:.Tag: jboss_buildmagic build.xml config.xml
  Log:
   o using jars from admin/lib for jpl-util, they are newer and required to
 build the admin module.  To keep things simple, the jpl-patthen.jar has
 been added to the jpl-util/lib directory
  
  Revision  ChangesPath
  No   revision
  
  
  No   revision
  
  
  1.1.2.15  +2 -2  jboss/Attic/build.xml
  
  Index: build.xml
  ===
  RCS file: /cvsroot/jboss/jboss/Attic/build.xml,v
  retrieving revision 1.1.2.14
  retrieving revision 1.1.2.15
  diff -u -r1.1.2.14 -r1.1.2.15
  --- build.xml 2001/07/31 21:36:44 1.1.2.14
  +++ build.xml 2001/07/31 21:43:50 1.1.2.15
  @@ -10,7 +10,7 @@
   !----
   !-- == --
   
  -!-- $Id: build.xml,v 1.1.2.14 2001/07/31 21:36:44 user57 Exp $ --
  +!-- $Id: build.xml,v 1.1.2.15 2001/07/31 21:43:50 user57 Exp $ --
   
   project default=main
   
  @@ -711,7 +711,7 @@
   include name=concurrent.jar/
 /fileset
 fileset dir=${gjt.jpl-util.lib}
  -include name=jpl-util.jar/
  +include name=*.jar/
 /fileset
 fileset dir=${hsql.hsql.lib}
   include name=hsql.jar/
  
  
  
  1.1.2.10  +5 -3  jboss/Attic/config.xml
  
  Index: config.xml
  ===
  RCS file: /cvsroot/jboss/jboss/Attic/config.xml,v
  retrieving revision 1.1.2.9
  retrieving revision 1.1.2.10
  diff -u -r1.1.2.9 -r1.1.2.10
  --- config.xml2001/07/31 05:06:00 1.1.2.9
  +++ config.xml2001/07/31 21:43:50 1.1.2.10
  @@ -7,7 +7,7 @@
   !----
   !-- == --
   
  -!-- $Id: config.xml,v 1.1.2.9 2001/07/31 05:06:00 user57 Exp $ --
  +!-- $Id: config.xml,v 1.1.2.10 2001/07/31 21:43:50 user57 Exp $ --
   
 !-- == --
 !-- Module Setup   --
  @@ -49,7 +49,7 @@
 property name=sun.jaxp.lib value=${sun.jaxp.root}/lib/
 path id=sun.jaxp.classpath
   fileset dir=${sun.jaxp.lib}
  -  include name=**/*.jar/
  +  include name=*.jar/
   /fileset
 /path
   
  @@ -99,7 +99,9 @@
 property name=gjt.jpl-util.root value=${thirdparty.root}/gjt/jpl-util/
 property name=gjt.jpl-util.lib value=${gjt.jpl-util.root}/lib/
 path id=gjt.jpl-util.classpath
  -pathelement path=${gjt.jpl-util.lib}/jpl-util.jar/
  +fileset dir=${gjt.jpl-util.lib}
  +  include name=*.jar/
  +/fileset
 /path
   
 !-- JUnit --
  
  
  

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



[JBoss-dev] CVS update: admin config.xml

2001-07-31 Thread Jason Dillon

  User: user57  
  Date: 01/07/31 14:48:18

  Modified:.Tag: jboss_buildmagic config.xml
  Log:
   o re-added the property for the ejbdoclet classpath (so the task will
 work again).
  
  Revision  ChangesPath
  No   revision
  
  
  No   revision
  
  
  1.1.2.7   +9 -1  admin/Attic/config.xml
  
  Index: config.xml
  ===
  RCS file: /cvsroot/jboss/admin/Attic/config.xml,v
  retrieving revision 1.1.2.6
  retrieving revision 1.1.2.7
  diff -u -r1.1.2.6 -r1.1.2.7
  --- config.xml2001/07/31 21:43:50 1.1.2.6
  +++ config.xml2001/07/31 21:48:18 1.1.2.7
  @@ -7,7 +7,7 @@
   !----
   !-- == --
   
  -!-- $Id: config.xml,v 1.1.2.6 2001/07/31 21:43:50 user57 Exp $ --
  +!-- $Id: config.xml,v 1.1.2.7 2001/07/31 21:48:18 user57 Exp $ --
   
 !-- == --
 !-- Module Setup   --
  @@ -143,6 +143,14 @@
 path id=javadoc.classpath
   path refid=javac.classpath/
 /path
  +
  +  !-- Setup the path property used by the ejbdoclet --
  +  path id=dreambean.ejbdoclet.task.classpath
  +path refid=javac.classpath/
  +path refid=dreambean.ejbdoclet.classpath/
  +  /path
  +  property name=dreambean.ejbdoclet.task.classpath 
  + refid=dreambean.ejbdoclet.task.classpath/
   
 !-- Where source files live --
 property name=source.java value=${module.source}/main/
  
  
  

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



[JBoss-dev] CVS update: admin/src/main/org/jboss/admin/beans AdminServerBean.java SystemMonitorBean.java

2001-07-31 Thread Jason Dillon

  User: user57  
  Date: 01/07/31 16:44:10

  Modified:src/main/org/jboss/admin/beans Tag: jboss_buildmagic
AdminServerBean.java SystemMonitorBean.java
  Log:
   o updated tags for ejbdoclet v1.2, now all classes are compiling.
  
  Revision  ChangesPath
  No   revision
  
  
  No   revision
  
  
  1.1.2.2   +16 -16admin/src/main/org/jboss/admin/beans/Attic/AdminServerBean.java
  
  Index: AdminServerBean.java
  ===
  RCS file: 
/cvsroot/jboss/admin/src/main/org/jboss/admin/beans/Attic/AdminServerBean.java,v
  retrieving revision 1.1.2.1
  retrieving revision 1.1.2.2
  diff -u -r1.1.2.1 -r1.1.2.2
  --- AdminServerBean.java  2001/07/28 03:31:05 1.1.2.1
  +++ AdminServerBean.java  2001/07/31 23:44:10 1.1.2.2
  @@ -18,7 +18,7 @@
* Boston, MA  02111-1307, USA.
*
* This package and its source code is available at www.jboss.org
  - * $Id: AdminServerBean.java,v 1.1.2.1 2001/07/28 03:31:05 user57 Exp $
  + * $Id: AdminServerBean.java,v 1.1.2.2 2001/07/31 23:44:10 user57 Exp $
*/ 
   package org.jboss.admin.beans;
   
  @@ -33,17 +33,17 @@
   import org.jboss.admin.mbean.AdminServerMBean;
   
   /**
  - * ...
  + * ???
*
  - * @ejb-name AdminServer
  - * The EJB name for this bean. Used in both ejb-jar.xml and jboss.xml
  - * descriptors.
  + * @ejb:stateful-session
  + * @ejb:ejb-name AdminServer
  + * @ejb:jndi-name admin/AdminServer
  + * @ejb:security-role-ref new_install temp
  + * @ejb:permission root
  + * @ejb:permission temp
*
  - * @security-role-ref new_install temp
  - * @stateful-session
  - *
* @author  a href=mailto:[EMAIL PROTECTED];Juha Lindfors/a
  - * @version $Revision: 1.1.2.1 $
  + * @version $Revision: 1.1.2.2 $
*/ 
   public class AdminServerBean implements SessionBean {
   
  @@ -64,8 +64,8 @@
*/ 
   
   /**
  - * @create-method
  - * @permission root
  + * @ejb:create-method
  + * @ejb:permission root
* 
*/
   public void ejbCreate() throws CreateException { 
  @@ -78,8 +78,8 @@
   }
   
   /**
  - * @create-method
  - * @permission temp
  + * @ejb:create-method
  + * @ejb:permission temp
*/
   public void ejbCreate(String user, char[] password) throws CreateException {
   try {
  @@ -99,9 +99,9 @@
   }
   
   /**
  - * @remote-method
  - * @permission root
  - * @permission temp
  + * @ejb:remote-method
  + * @ejb:permission root
  + * @ejb:permission temp
*/
   public boolean isAdminServerEnabled() throws NoRootException {
   
  
  
  
  1.1.2.2   +11 -12
admin/src/main/org/jboss/admin/beans/Attic/SystemMonitorBean.java
  
  Index: SystemMonitorBean.java
  ===
  RCS file: 
/cvsroot/jboss/admin/src/main/org/jboss/admin/beans/Attic/SystemMonitorBean.java,v
  retrieving revision 1.1.2.1
  retrieving revision 1.1.2.2
  diff -u -r1.1.2.1 -r1.1.2.2
  --- SystemMonitorBean.java2001/07/28 03:31:05 1.1.2.1
  +++ SystemMonitorBean.java2001/07/31 23:44:10 1.1.2.2
  @@ -18,7 +18,7 @@
* Boston, MA  02111-1307, USA.
*
* This package and its source code is available at www.jboss.org
  - * $Id: SystemMonitorBean.java,v 1.1.2.1 2001/07/28 03:31:05 user57 Exp $
  + * $Id: SystemMonitorBean.java,v 1.1.2.2 2001/07/31 23:44:10 user57 Exp $
*/ 
   package org.jboss.admin.beans;
   
  @@ -43,13 +43,12 @@
   /**
* ...
*
  - * @ejb-name SystemMonitor
  - * @stateful-session
  + * @ejb:stateful-session
  + * @ejb:ejb-name SystemMonitor
  + * @ejb:jndi-name admin/SystemMonitor
*
  - * @jndi-name admin/SystemMonitor
  - *
* @author  a href=mailto:[EMAIL PROTECTED];Juha Lindfors/a
  - * @version $Revision: 1.1.2.1 $
  + * @version $Revision: 1.1.2.2 $
*/
   public class SystemMonitorBean implements SessionBean {
   
  @@ -69,7 +68,7 @@
*/ 

   /**
  - * @create-method
  + * @ejb:create-method
*/
   public void ejbCreate() throws CreateException {
   try {
  @@ -88,7 +87,7 @@
   }
   
   /**
  - * @create-method
  + * @ejb:create-method
*/
   public void ejbCreate(String agentID) throws CreateException {
   throw new CreateException(Not Yet Implemented);
  @@ -109,7 +108,7 @@
   
   /**
*
  - * @remote-method
  + * @ejb:remote-method
*/
   public boolean isMemoryMonitorEnabled() {
   return monitor.isMemoryMonitorEnabled();
  @@ -117,7 +116,7 @@
   
   /**
*
  - * @remote-method
  + * @ejb:remote-method
*/
   public boolean isThreadMonitorEnabled() {
   return monitor.isThreadMonitorEnabled();
  @@ -125,7 +124,7 @@
   
   /**
*
  - * @remote-method
  +   

[JBoss-dev] CVS update: contrib/varia - Imported sources

2001-07-31 Thread Jason Dillon

  User: user57  
  Date: 01/07/31 17:39:59

  Log:
   o contrib/plugin module for thirdparty plugins that are relativly small and
 thus do not warrent there own module and build system.
  
  Status:
  
  Vendor Tag:   jboss
  Release Tags: start
  
  N contrib/varia/build.sh
  N contrib/varia/build.xml
  N contrib/varia/config.xml
  N contrib/varia/etc/local.properties-example
  N contrib/varia/src/etc/hypersonic.txt
  N contrib/varia/src/main/org/jboss/jdbc/HypersonicDatabase.java
  N contrib/varia/src/main/org/jboss/jdbc/HypersonicDatabaseMBean.java
  N contrib/varia/src/main/org/jboss/jdbc/InstantDBDatabase.java
  N contrib/varia/src/main/org/jboss/jdbc/InstantDBDatabaseMBean.java
  N contrib/varia/src/main/org/jboss/jdo/castor/CastorJDOImpl.java
  N contrib/varia/src/main/org/jboss/jdo/castor/CastorJDOImplMBean.java
  N contrib/varia/src/main/org/jboss/tm/plugins/tyrex/CoordinatorInvoker.java
  N contrib/varia/src/main/org/jboss/tm/plugins/tyrex/CoordinatorRemote.java
  N contrib/varia/src/main/org/jboss/tm/plugins/tyrex/CoordinatorRemoteInterface.java
  N contrib/varia/src/main/org/jboss/tm/plugins/tyrex/ResourceInvoker.java
  N contrib/varia/src/main/org/jboss/tm/plugins/tyrex/ResourceRemote.java
  N contrib/varia/src/main/org/jboss/tm/plugins/tyrex/ResourceRemoteInterface.java
  N contrib/varia/src/main/org/jboss/tm/plugins/tyrex/TransactionManagerService.java
  N 
contrib/varia/src/main/org/jboss/tm/plugins/tyrex/TransactionManagerServiceMBean.java
  N 
contrib/varia/src/main/org/jboss/tm/plugins/tyrex/TyrexTransactionPropagationContextManager.java
  N contrib/varia/src/main/org/jboss/tm/plugins/tyrex/TyrexTxPropagationContext.java
  
  No conflicts created by this import

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



[JBoss-dev] CVS update: CVSROOT modules

2001-07-31 Thread Jason Dillon

  User: user57  
  Date: 01/07/31 17:41:06

  Modified:.modules
  Log:
  *** empty log message ***
  
  Revision  ChangesPath
  1.29  +2 -1  CVSROOT/modules
  
  Index: modules
  ===
  RCS file: /cvsroot/jboss/CVSROOT/modules,v
  retrieving revision 1.28
  retrieving revision 1.29
  diff -u -r1.28 -r1.29
  --- modules   2001/07/31 03:27:21 1.28
  +++ modules   2001/08/01 00:41:06 1.29
  @@ -77,6 +77,7 @@
   ## Plugins
   ##
   
  +_plugins_varia   -d variavaria
   _plugins_zoap-d zoap zoap
   _plugins_tomcat  -d tomcat   contrib/tomcat
   _plugins_jetty   -d jettycontrib/jetty
  @@ -107,7 +108,7 @@
   
   jboss-all-plugins-d plugins \
build/etc/empty \
  - _plugins_tomcat \
  + _plugins_varia \
_plugins_jetty
   
   # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
  
  
  

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



<    1   2   3   4   5   6   7   8   9   10   >