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

2002-04-20 Thread Adrian Brock

  User: ejort   
  Date: 02/04/20 04:37:49

  Modified:.build.xml
  Log:
  Improved Timer and Monitor Services
  
  Revision  ChangesPath
  1.36  +55 -1 jmx/build.xml
  
  Index: build.xml
  ===
  RCS file: /cvsroot/jboss/jmx/build.xml,v
  retrieving revision 1.35
  retrieving revision 1.36
  diff -u -r1.35 -r1.36
  --- build.xml 14 Apr 2002 15:21:05 -  1.35
  +++ build.xml 20 Apr 2002 11:37:48 -  1.36
  @@ -12,7 +12,7 @@
   !----
   !-- == --
   
  -!-- $Id: build.xml,v 1.35 2002/04/14 15:21:05 ejort Exp $ --
  +!-- $Id: build.xml,v 1.36 2002/04/20 11:37:48 ejort Exp $ --
   
   project default=main name=JBoss/JMX
   
  @@ -300,6 +300,11 @@
   exclude name=javax/management/timer/**/
   exclude name=test/**/
   
  +!-- Exclude service utility classes --
  +exclude name=org/jboss/mx/util/RunnableScheduler.class/
  +exclude name=org/jboss/mx/util/SchedulableRunnable.class/
  +exclude name=org/jboss/mx/util/ThreadPool*/
  +
   !-- Exclude all the query stuff except QueryExp --
   exclude name=javax/management/AndQueryExp.class/
   exclude name=javax/management/AnySubStringQueryExp.class/
  @@ -338,6 +343,11 @@
   include name=javax/management/relation/**/
   include name=javax/management/timer/**/
   
  +!-- Include service utility classes --
  +include name=org/jboss/mx/util/RunnableScheduler.class/
  +include name=org/jboss/mx/util/SchedulableRunnable.class/
  +include name=org/jboss/mx/util/ThreadPool*/
  +
   !-- Include all the query stuff except QueryExp --
   include name=javax/management/AndQueryExp.class/
   include name=javax/management/AnySubStringQueryExp.class/
  @@ -770,6 +780,50 @@
  java classname=test.implementation.ImplementationSUITE
 classpath refid=implementation.JBossMX.classpath/
  /java
  +  /target
  +  
  +  !-- == --
  +  !-- Stress - tests under stress conditions --
  +  !-- == --
  +
  +  !--
  + | There are three targets, one for the RI, one for JBossMX and one for both.
  + | WARNING, everthing is compiled over JBossMX
  +   --
  +  
  +  !-- Reference Implementation stress --
  +  target name=test-stress-RI depends=jars
  +  description=Run stress test against RI
  +  
  +   path id=stress.RI.classpath
  +  pathelement path=${project.thirdparty}/sun/jmx/lib/jmxri.jar/
  +  pathelement path=${build.lib}/jboss-jmx-testsuite.jar/
  +  path refid=thirdparty.classpath/
  +   /path
  +   
  +   java classname=test.stress.StressSUITE
  +  classpath refid=stress.RI.classpath/
  +   /java
  +  /target
  +
  +  !-- JBossMX stress --
  +  target name=test-stress-JBossMX depends=jars
  +  description=Tests JBossMX under stress
  +   
  +   path id=stress.JBossMX.classpath
  +  pathelement path=${build.lib}/jboss-jmx.jar/
  +  pathelement path=${build.lib}/jboss-jmx-testsuite.jar/
  +  path refid=thirdparty.classpath/
  +   /path
  +   
  +   java classname=test.stress.StressSUITE
  +  classpath refid=stress.JBossMX.classpath/
  +   /java
  +  /target
  +
  +  !-- Run both stress tests --
  +  target name=test-stress depends=test-stress-RI, test-stress-JBossMX
  +  description=Run stress test against RI and JBossMX
 /target
 
   /project
  
  
  

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



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

2002-04-14 Thread Adrian Brock

  User: ejort   
  Date: 02/04/14 08:21:05

  Modified:.build.xml
  Log:
  Move Query to jboss-jmx-services.jar
  
  Revision  ChangesPath
  1.35  +59 -1 jmx/build.xml
  
  Index: build.xml
  ===
  RCS file: /cvsroot/jboss/jmx/build.xml,v
  retrieving revision 1.34
  retrieving revision 1.35
  diff -u -r1.34 -r1.35
  --- build.xml 10 Apr 2002 05:19:32 -  1.34
  +++ build.xml 14 Apr 2002 15:21:05 -  1.35
  @@ -12,7 +12,7 @@
   !----
   !-- == --
   
  -!-- $Id: build.xml,v 1.34 2002/04/10 05:19:32 juhalindfors Exp $ --
  +!-- $Id: build.xml,v 1.35 2002/04/14 15:21:05 ejort Exp $ --
   
   project default=main name=JBoss/JMX
   
  @@ -299,6 +299,35 @@
   exclude name=javax/management/relation/**/
   exclude name=javax/management/timer/**/
   exclude name=test/**/
  +
  +!-- Exclude all the query stuff except QueryExp --
  +exclude name=javax/management/AndQueryExp.class/
  +exclude name=javax/management/AnySubStringQueryExp.class/
  +exclude name=javax/management/AttributeValueExp.class/
  +exclude name=javax/management/BadAttributeValueExpException.class/
  +exclude name=javax/management/BadBinaryOpValueExpException.class/
  +exclude name=javax/management/BadStringOperationException.class/
  +exclude name=javax/management/BetweenQueryExp.class/
  +exclude name=javax/management/BinaryComparisonQueryExp.class/
  +exclude name=javax/management/BinaryOpValueExp.class/
  +exclude name=javax/management/BooleanValueExp.class/
  +exclude name=javax/management/ClassAttributeValueExp.class/
  +exclude name=javax/management/FinalSubStringQueryExp.class/
  +exclude name=javax/management/InQueryExp.class/
  +exclude name=javax/management/InitialSubStringQueryExp.class/
  +exclude name=javax/management/InvalidApplicationException.class/
  +exclude name=javax/management/MatchQueryExp.class/
  +exclude name=javax/management/NotQueryExp.class/
  +exclude name=javax/management/NumberValueExp.class/
  +exclude name=javax/management/OrQueryExp.class/
  +exclude name=javax/management/QualifiedAttributeValueExp.class/
  +exclude name=javax/management/Query.class/
  +exclude name=javax/management/QueryEval.class/
  +exclude name=javax/management/QueryExpSupport.class/
  +exclude name=javax/management/SingleValueExpSupport.class/
  +exclude name=javax/management/StringValueExp.class/
  +exclude name=javax/management/ValueExp.class/
  +exclude name=javax/management/ValueExpSupport.class/
 /fileset
   /jar
   
  @@ -308,6 +337,35 @@
   include name=javax/management/monitor/**/
   include name=javax/management/relation/**/
   include name=javax/management/timer/**/
  +
  +!-- Include all the query stuff except QueryExp --
  +include name=javax/management/AndQueryExp.class/
  +include name=javax/management/AnySubStringQueryExp.class/
  +include name=javax/management/AttributeValueExp.class/
  +include name=javax/management/BadAttributeValueExpException.class/
  +include name=javax/management/BadBinaryOpValueExpException.class/
  +include name=javax/management/BadStringOperationException.class/
  +include name=javax/management/BetweenQueryExp.class/
  +include name=javax/management/BinaryComparisonQueryExp.class/
  +include name=javax/management/BinaryOpValueExp.class/
  +include name=javax/management/BooleanValueExp.class/
  +include name=javax/management/ClassAttributeValueExp.class/
  +include name=javax/management/FinalSubStringQueryExp.class/
  +include name=javax/management/InQueryExp.class/
  +include name=javax/management/InitialSubStringQueryExp.class/
  +include name=javax/management/InvalidApplicationException.class/
  +include name=javax/management/MatchQueryExp.class/
  +include name=javax/management/NotQueryExp.class/
  +include name=javax/management/NumberValueExp.class/
  +include name=javax/management/OrQueryExp.class/
  +include name=javax/management/QualifiedAttributeValueExp.class/
  +include name=javax/management/Query.class/
  +include name=javax/management/QueryEval.class/
  +include name=javax/management/QueryExpSupport.class/
  +include name=javax/management/SingleValueExpSupport.class/
  +include name=javax/management/StringValueExp.class/
  +include name=javax/management/ValueExp.class/
  +include name=javax/management/ValueExpSupport.class/
 /fileset
   

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

2002-04-09 Thread Juha Lindfors

  User: juhalindfors
  Date: 02/04/09 22:19:32

  Modified:.build.xml
  Log:
  was wrong branch
  
  Revision  ChangesPath
  1.34  +2 -2  jmx/build.xml
  
  Index: build.xml
  ===
  RCS file: /cvsroot/jboss/jmx/build.xml,v
  retrieving revision 1.33
  retrieving revision 1.34
  diff -u -r1.33 -r1.34
  --- build.xml 10 Apr 2002 05:16:22 -  1.33
  +++ build.xml 10 Apr 2002 05:19:32 -  1.34
  @@ -12,7 +12,7 @@
   !----
   !-- == --
   
  -!-- $Id: build.xml,v 1.33 2002/04/10 05:16:22 juhalindfors Exp $ --
  +!-- $Id: build.xml,v 1.34 2002/04/10 05:19:32 juhalindfors Exp $ --
   
   project default=main name=JBoss/JMX
   
  @@ -63,7 +63,7 @@
   !-- Module name(s)  version --
   property name=module.name value=JBossMX/
   property name=module.Name value=JBoss JMX/
  -property name=module.version value=1_0/
  +property name=module.version value=1_1_0/
   
   !-- = --
   !-- Libraries --
  
  
  

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



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

2002-04-09 Thread Juha Lindfors

  User: juhalindfors
  Date: 02/04/09 22:16:22

  Modified:.build.xml
  Log:
  1.0 release
  
  Revision  ChangesPath
  1.33  +3 -3  jmx/build.xml
  
  Index: build.xml
  ===
  RCS file: /cvsroot/jboss/jmx/build.xml,v
  retrieving revision 1.32
  retrieving revision 1.33
  diff -u -r1.32 -r1.33
  --- build.xml 8 Apr 2002 22:20:08 -   1.32
  +++ build.xml 10 Apr 2002 05:16:22 -  1.33
  @@ -12,7 +12,7 @@
   !----
   !-- == --
   
  -!-- $Id: build.xml,v 1.32 2002/04/08 22:20:08 juhalindfors Exp $ --
  +!-- $Id: build.xml,v 1.33 2002/04/10 05:16:22 juhalindfors Exp $ --
   
   project default=main name=JBoss/JMX
   
  @@ -61,9 +61,9 @@
   !-- === --
   
   !-- Module name(s)  version --
  -property name=module.name value=jmx/
  +property name=module.name value=JBossMX/
   property name=module.Name value=JBoss JMX/
  -property name=module.version value=1_0_Alpha2/
  +property name=module.version value=1_0/
   
   !-- = --
   !-- Libraries --
  
  
  

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



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

2002-04-09 Thread Juha Lindfors

  User: juhalindfors
  Date: 02/04/09 22:41:59

  Modified:.Tag: BranchMX_1_0 build.xml
  Log:
  the real 1.0 release
  
  Revision  ChangesPath
  No   revision
  
  
  No   revision
  
  
  1.27.2.4  +2 -2  jmx/build.xml
  
  Index: build.xml
  ===
  RCS file: /cvsroot/jboss/jmx/build.xml,v
  retrieving revision 1.27.2.3
  retrieving revision 1.27.2.4
  diff -u -r1.27.2.3 -r1.27.2.4
  --- build.xml 20 Mar 2002 10:35:05 -  1.27.2.3
  +++ build.xml 10 Apr 2002 05:41:59 -  1.27.2.4
  @@ -12,7 +12,7 @@
   !----
   !-- == --
   
  -!-- $Id: build.xml,v 1.27.2.3 2002/03/20 10:35:05 juhalindfors Exp $ --
  +!-- $Id: build.xml,v 1.27.2.4 2002/04/10 05:41:59 juhalindfors Exp $ --
   
   project default=main name=JBoss/JMX
   
  @@ -63,7 +63,7 @@
   !-- Module name(s)  version --
   property name=module.name value=JBossMX/
   property name=module.Name value=JBoss JMX/
  -property name=module.version value=1_0_Beta/
  +property name=module.version value=1_0/
   
   !-- = --
   !-- Libraries --
  
  
  

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



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

2002-04-08 Thread Juha Lindfors

  User: juhalindfors
  Date: 02/04/08 15:20:08

  Modified:.build.xml
  Log:
  
  
  Revision  ChangesPath
  1.32  +9 -1  jmx/build.xml
  
  Index: build.xml
  ===
  RCS file: /cvsroot/jboss/jmx/build.xml,v
  retrieving revision 1.31
  retrieving revision 1.32
  diff -u -r1.31 -r1.32
  --- build.xml 7 Apr 2002 02:59:31 -   1.31
  +++ build.xml 8 Apr 2002 22:20:08 -   1.32
  @@ -12,7 +12,7 @@
   !----
   !-- == --
   
  -!-- $Id: build.xml,v 1.31 2002/04/07 02:59:31 d_jencks Exp $ --
  +!-- $Id: build.xml,v 1.32 2002/04/08 22:20:08 juhalindfors Exp $ --
   
   project default=main name=JBoss/JMX
   
  @@ -316,6 +316,7 @@
 fileset dir=${build.classes}
   include name=test/**/
   exclude name=test/compliance/loading/support/*.class/
  +exclude name=test/compliance/server/support/AClass.*/
   exclude name=test/implementation/loading/support/*.class/
 /fileset
 !--wait for xdoclet 1.1.2
  @@ -326,6 +327,7 @@
   
   
   mkdir dir=${build.etc}/test/compliance/loading/
  +mkdir dir=${build.etc}/test/compliance/server/
   
   jar jarfile=${build.etc}/test/compliance/loading/MyMBeans.jar
 fileset dir=${build.classes}
  @@ -337,6 +339,12 @@
   jar jarfile=${build.etc}/test/compliance/loading/MoreMBeans.jar
 fileset dir=${build.classes}
   include name=test/compliance/loading/support/AClass.class/
  +  /fileset
  +/jar
  +
  +jar jarfile=${build.etc}/test/compliance/server/Test.jar
  +  fileset dir=${build.classes}
  +include name=test/compliance/server/support/AClass.class/
 /fileset
   /jar
   
  
  
  

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

Sponsored by http://www.ThinkGeek.com/




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

2002-04-06 Thread David Jencks

  User: d_jencks
  Date: 02/04/06 18:59:31

  Modified:.build.xml
  Log:
  updated to xjavadoc and jmx documentation generator
  
  Revision  ChangesPath
  1.31  +2 -1  jmx/build.xml
  
  Index: build.xml
  ===
  RCS file: /cvsroot/jboss/jmx/build.xml,v
  retrieving revision 1.30
  retrieving revision 1.31
  diff -u -r1.30 -r1.31
  --- build.xml 23 Mar 2002 21:11:01 -  1.30
  +++ build.xml 7 Apr 2002 02:59:31 -   1.31
  @@ -12,7 +12,7 @@
   !----
   !-- == --
   
  -!-- $Id: build.xml,v 1.30 2002/03/23 21:11:01 ejort Exp $ --
  +!-- $Id: build.xml,v 1.31 2002/04/07 02:59:31 d_jencks Exp $ --
   
   project default=main name=JBoss/JMX
   
  @@ -204,6 +204,7 @@
   path id=xdoclet.task.classpath
 path refid=javac.classpath/
 pathelement location=${project.tools}/lib/xdoclet.jar/
  +  pathelement location=${project.tools}/lib/xjavadoc.jar/
 pathelement location=${project.tools}/lib/ant.jar/
   /path
   property name=xdoclet.task.classpath 
  
  
  

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



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

2002-03-23 Thread Adrian Brock

  User: ejort   
  Date: 02/03/23 13:11:01

  Modified:.build.xml
  Log:
  JBoss/JBossMX integration. Also includes a fix to the cluster tests and a more 
complete ejblink test that currently fails
  
  Revision  ChangesPath
  1.30  +21 -1 jmx/build.xml
  
  Index: build.xml
  ===
  RCS file: /cvsroot/jboss/jmx/build.xml,v
  retrieving revision 1.29
  retrieving revision 1.30
  diff -u -r1.29 -r1.30
  --- build.xml 14 Mar 2002 18:28:25 -  1.29
  +++ build.xml 23 Mar 2002 21:11:01 -  1.30
  @@ -12,7 +12,7 @@
   !----
   !-- == --
   
  -!-- $Id: build.xml,v 1.29 2002/03/14 18:28:25 juhalindfors Exp $ --
  +!-- $Id: build.xml,v 1.30 2002/03/23 21:11:01 ejort Exp $ --
   
   project default=main name=JBoss/JMX
   
  @@ -287,6 +287,26 @@
 fileset dir=${build.classes}
   include name=**/
   exclude name=test/**/
  +  /fileset
  +/jar
  +
  +!-- Build the jboss-jmx-core.jar --
  +jar jarfile=${build.lib}/jboss-jmx-core.jar
  +  fileset dir=${build.classes}
  +include name=**/
  +exclude name=javax/management/monitor/**/
  +exclude name=javax/management/relation/**/
  +exclude name=javax/management/timer/**/
  +exclude name=test/**/
  +  /fileset
  +/jar
  +
  +!-- Build the jboss-jmx-services.jar --
  +jar jarfile=${build.lib}/jboss-jmx-services.jar
  +  fileset dir=${build.classes}
  +include name=javax/management/monitor/**/
  +include name=javax/management/relation/**/
  +include name=javax/management/timer/**/
 /fileset
   /jar
   
  
  
  

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



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

2002-03-20 Thread Juha Lindfors

  User: juhalindfors
  Date: 02/03/20 02:35:06

  Modified:.Tag: BranchMX_1_0 build.xml
  Log:
  change mod name to get correct root dir in release builds
  
  Revision  ChangesPath
  No   revision
  
  
  No   revision
  
  
  1.27.2.3  +2 -2  jmx/build.xml
  
  Index: build.xml
  ===
  RCS file: /cvsroot/jboss/jmx/build.xml,v
  retrieving revision 1.27.2.2
  retrieving revision 1.27.2.3
  diff -u -r1.27.2.2 -r1.27.2.3
  --- build.xml 14 Mar 2002 11:41:20 -  1.27.2.2
  +++ build.xml 20 Mar 2002 10:35:05 -  1.27.2.3
  @@ -12,7 +12,7 @@
   !----
   !-- == --
   
  -!-- $Id: build.xml,v 1.27.2.2 2002/03/14 11:41:20 juhalindfors Exp $ --
  +!-- $Id: build.xml,v 1.27.2.3 2002/03/20 10:35:05 juhalindfors Exp $ --
   
   project default=main name=JBoss/JMX
   
  @@ -61,7 +61,7 @@
   !-- === --
   
   !-- Module name(s)  version --
  -property name=module.name value=jmx/
  +property name=module.name value=JBossMX/
   property name=module.Name value=JBoss JMX/
   property name=module.version value=1_0_Beta/
   
  
  
  

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



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

2002-03-14 Thread Juha Lindfors

  User: juhalindfors
  Date: 02/03/14 03:41:21

  Modified:.Tag: BranchMX_1_0 build.xml
  Log:
  beta
  
  Revision  ChangesPath
  No   revision
  
  
  No   revision
  
  
  1.27.2.2  +2 -2  jmx/build.xml
  
  Index: build.xml
  ===
  RCS file: /cvsroot/jboss/jmx/build.xml,v
  retrieving revision 1.27.2.1
  retrieving revision 1.27.2.2
  diff -u -r1.27.2.1 -r1.27.2.2
  --- build.xml 13 Mar 2002 12:12:05 -  1.27.2.1
  +++ build.xml 14 Mar 2002 11:41:20 -  1.27.2.2
  @@ -12,7 +12,7 @@
   !----
   !-- == --
   
  -!-- $Id: build.xml,v 1.27.2.1 2002/03/13 12:12:05 juhalindfors Exp $ --
  +!-- $Id: build.xml,v 1.27.2.2 2002/03/14 11:41:20 juhalindfors Exp $ --
   
   project default=main name=JBoss/JMX
   
  @@ -63,7 +63,7 @@
   !-- Module name(s)  version --
   property name=module.name value=jmx/
   property name=module.Name value=JBoss JMX/
  -property name=module.version value=1_0_Alpha2/
  +property name=module.version value=1_0_Beta/
   
   !-- = --
   !-- Libraries --
  
  
  

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



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

2002-03-14 Thread Juha Lindfors

  User: juhalindfors
  Date: 02/03/14 10:28:25

  Modified:.build.xml
  Log:
  
  
  Revision  ChangesPath
  1.29  +19 -1 jmx/build.xml
  
  Index: build.xml
  ===
  RCS file: /cvsroot/jboss/jmx/build.xml,v
  retrieving revision 1.28
  retrieving revision 1.29
  diff -u -r1.28 -r1.29
  --- build.xml 13 Mar 2002 21:28:09 -  1.28
  +++ build.xml 14 Mar 2002 18:28:25 -  1.29
  @@ -12,7 +12,7 @@
   !----
   !-- == --
   
  -!-- $Id: build.xml,v 1.28 2002/03/13 21:28:09 juhalindfors Exp $ --
  +!-- $Id: build.xml,v 1.29 2002/03/14 18:28:25 juhalindfors Exp $ --
   
   project default=main name=JBoss/JMX
   
  @@ -295,6 +295,7 @@
 fileset dir=${build.classes}
   include name=test/**/
   exclude name=test/compliance/loading/support/*.class/
  +exclude name=test/implementation/loading/support/*.class/
 /fileset
 !--wait for xdoclet 1.1.2
 fileset dir=${build.gen-src}
  @@ -321,8 +322,25 @@
   copy todir=${build.etc}
 fileset dir=${source.resource}
   include name=test/compliance/loading/*.mlet/
  +include name=test/implementation/loading/*.mlet/
 /fileset
   /copy
  +
  +mkdir dir=${build.etc}/test/implementation/loading/
  +
  +jar jarfile=${build.etc}/test/implementation/loading/Start.jar
  +  fileset dir=${build.classes}
  +include name=test/implementation/loading/support/Start*.class/
  +include name=test/implementation/loading/support/AClass.class/
  +  /fileset
  +/jar
  +
  +jar jarfile=${build.etc}/test/implementation/loading/Target.jar
  +  fileset dir=${build.classes}
  +include name=test/implementation/loading/support/Target*.class/
  +include name=test/implementation/loading/support/AClass.class/
  +  /fileset
  +/jar
   
 /target
   
  
  
  

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



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

2002-03-13 Thread Juha Lindfors

  User: juhalindfors
  Date: 02/03/13 04:12:05

  Modified:.Tag: BranchMX_1_0 build.xml
  Log:
  build separate test jars
  
  Revision  ChangesPath
  No   revision
  
  
  No   revision
  
  
  1.27.2.1  +28 -9 jmx/build.xml
  
  Index: build.xml
  ===
  RCS file: /cvsroot/jboss/jmx/build.xml,v
  retrieving revision 1.27
  retrieving revision 1.27.2.1
  diff -u -r1.27 -r1.27.2.1
  --- build.xml 8 Mar 2002 15:40:58 -   1.27
  +++ build.xml 13 Mar 2002 12:12:05 -  1.27.2.1
  @@ -12,7 +12,7 @@
   !----
   !-- == --
   
  -!-- $Id: build.xml,v 1.27 2002/03/08 15:40:58 juhalindfors Exp $ --
  +!-- $Id: build.xml,v 1.27.2.1 2002/03/13 12:12:05 juhalindfors Exp $ --
   
   project default=main name=JBoss/JMX
   
  @@ -152,7 +152,8 @@
   
   !-- Where source files live --
   property name=source.java value=${module.source}/main/
  -
  +property name=source.resource value=${module.source}/resources/
  +
   !-- Where build generated files will go --
   property name=build.reports value=${module.output}/reports/
   property name=build.classes value=${module.output}/classes/
  @@ -280,7 +281,7 @@
  depends=compile
   
   mkdir dir=${build.lib}/
  -
  +
   !-- Build the jboss-jmx.jar --
   jar jarfile=${build.lib}/jboss-jmx.jar
 fileset dir=${build.classes}
  @@ -293,12 +294,36 @@
   jar jarfile=${build.lib}/jboss-jmx-testsuite.jar
 fileset dir=${build.classes}
   include name=test/**/
  +exclude name=test/compliance/loading/support/*.class/
 /fileset
 !--wait for xdoclet 1.1.2
 fileset dir=${build.gen-src}
   include name=test/implementation/modelmbean/support/User.xml/
 /fileset--
   /jar
  +
  +
  +mkdir dir=${build.etc}/test/compliance/loading/
  +
  +jar jarfile=${build.etc}/test/compliance/loading/MyMBeans.jar
  +  fileset dir=${build.classes}
  +include name=test/compliance/loading/support/Trivial*.class/
  +include name=test/compliance/loading/support/Another*.class/
  +  /fileset
  +/jar
  +
  +jar jarfile=${build.etc}/test/compliance/loading/MoreMBeans.jar
  +  fileset dir=${build.classes}
  +include name=test/compliance/loading/support/AClass.class/
  +  /fileset
  +/jar
  +
  +copy todir=${build.etc}
  +  fileset dir=${source.resource}
  +include name=test/compliance/loading/*.mlet/
  +  /fileset
  +/copy
  +
 /target
   
   
  @@ -547,9 +572,6 @@
   path id=compliance.JBossMX.classpath
 pathelement path=${build.lib}/jboss-jmx.jar/
 pathelement path=${build.lib}/jboss-jmx-testsuite.jar/
  -
  -  pathelement path=${build.classes}/
  -
 path refid=thirdparty.classpath/
   /path
   
  @@ -614,9 +636,6 @@
  path id=performance.JBossMX.classpath
 pathelement path=${build.lib}/jboss-jmx.jar/
 pathelement path=${build.lib}/jboss-jmx-testsuite.jar/
  -
  -  pathelement path=${build.classes}/
  -  
 path refid=thirdparty.classpath/
  /path
  
  
  
  

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



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

2002-03-13 Thread Juha Lindfors

  User: juhalindfors
  Date: 02/03/13 13:28:09

  Modified:.build.xml
  Log:
  hmm, this wasn't committed with previous merge?
  
  Revision  ChangesPath
  1.28  +28 -9 jmx/build.xml
  
  Index: build.xml
  ===
  RCS file: /cvsroot/jboss/jmx/build.xml,v
  retrieving revision 1.27
  retrieving revision 1.28
  diff -u -r1.27 -r1.28
  --- build.xml 8 Mar 2002 15:40:58 -   1.27
  +++ build.xml 13 Mar 2002 21:28:09 -  1.28
  @@ -152,7 +152,8 @@
   
   !-- Where source files live --
   property name=source.java value=${module.source}/main/
  -
  +property name=source.resource value=${module.source}/resources/
  +
   !-- Where build generated files will go --
   property name=build.reports value=${module.output}/reports/
   property name=build.classes value=${module.output}/classes/
  @@ -280,7 +281,7 @@
  depends=compile
   
   mkdir dir=${build.lib}/
  -
  +
   !-- Build the jboss-jmx.jar --
   jar jarfile=${build.lib}/jboss-jmx.jar
 fileset dir=${build.classes}
  @@ -293,12 +294,36 @@
   jar jarfile=${build.lib}/jboss-jmx-testsuite.jar
 fileset dir=${build.classes}
   include name=test/**/
  +exclude name=test/compliance/loading/support/*.class/
 /fileset
 !--wait for xdoclet 1.1.2
 fileset dir=${build.gen-src}
   include name=test/implementation/modelmbean/support/User.xml/
 /fileset--
   /jar
  +
  +
  +mkdir dir=${build.etc}/test/compliance/loading/
  +
  +jar jarfile=${build.etc}/test/compliance/loading/MyMBeans.jar
  +  fileset dir=${build.classes}
  +include name=test/compliance/loading/support/Trivial*.class/
  +include name=test/compliance/loading/support/Another*.class/
  +  /fileset
  +/jar
  +
  +jar jarfile=${build.etc}/test/compliance/loading/MoreMBeans.jar
  +  fileset dir=${build.classes}
  +include name=test/compliance/loading/support/AClass.class/
  +  /fileset
  +/jar
  +
  +copy todir=${build.etc}
  +  fileset dir=${source.resource}
  +include name=test/compliance/loading/*.mlet/
  +  /fileset
  +/copy
  +
 /target
   
   
  @@ -547,9 +572,6 @@
   path id=compliance.JBossMX.classpath
 pathelement path=${build.lib}/jboss-jmx.jar/
 pathelement path=${build.lib}/jboss-jmx-testsuite.jar/
  -
  -  pathelement path=${build.classes}/
  -
 path refid=thirdparty.classpath/
   /path
   
  @@ -614,9 +636,6 @@
  path id=performance.JBossMX.classpath
 pathelement path=${build.lib}/jboss-jmx.jar/
 pathelement path=${build.lib}/jboss-jmx-testsuite.jar/
  -
  -  pathelement path=${build.classes}/
  -  
 path refid=thirdparty.classpath/
  /path
  
  
  
  

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



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

2002-03-08 Thread Juha Lindfors

  User: juhalindfors
  Date: 02/03/08 07:40:58

  Modified:.build.xml
  Log:
  removed TEMP
  
  Revision  ChangesPath
  1.27  +1 -4  jmx/build.xml
  
  Index: build.xml
  ===
  RCS file: /cvsroot/jboss/jmx/build.xml,v
  retrieving revision 1.26
  retrieving revision 1.27
  diff -u -r1.26 -r1.27
  --- build.xml 1 Mar 2002 22:37:56 -   1.26
  +++ build.xml 8 Mar 2002 15:40:58 -   1.27
  @@ -12,7 +12,7 @@
   !----
   !-- == --
   
  -!-- $Id: build.xml,v 1.26 2002/03/01 22:37:56 user57 Exp $ --
  +!-- $Id: build.xml,v 1.27 2002/03/08 15:40:58 juhalindfors Exp $ --
   
   project default=main name=JBoss/JMX
   
  @@ -480,9 +480,6 @@
   path id=compliance.JBossMX.classpath
 pathelement path=${build.lib}/jboss-jmx.jar/
 pathelement path=${build.lib}/jboss-jmx-testsuite.jar/
  -
  -  pathelement path=${build.classes}/  !-- TEMP: 
required by the optimized dispatcher generated classes --
  -
 path refid=thirdparty.classpath/
   /path
   
  
  
  

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



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

2002-03-01 Thread Jason Dillon

  User: user57  
  Date: 02/03/01 14:37:56

  Modified:.build.xml
  Log:
   o BCEL - bcel
   o using vendor prefix
  
  Revision  ChangesPath
  1.26  +6 -6  jmx/build.xml
  
  Index: build.xml
  ===
  RCS file: /cvsroot/jboss/jmx/build.xml,v
  retrieving revision 1.25
  retrieving revision 1.26
  diff -u -r1.25 -r1.26
  --- build.xml 1 Mar 2002 19:25:56 -   1.25
  +++ build.xml 1 Mar 2002 22:37:56 -   1.26
  @@ -12,7 +12,7 @@
   !----
   !-- == --
   
  -!-- $Id: build.xml,v 1.25 2002/03/01 19:25:56 ejort Exp $ --
  +!-- $Id: build.xml,v 1.26 2002/03/01 22:37:56 user57 Exp $ --
   
   project default=main name=JBoss/JMX
   
  @@ -120,10 +120,10 @@
   /path
   
   !-- org.apache.bcel --
  -property name=bcel.root value=${project.thirdparty}/apache/BCEL/
  -property name=bcel.lib  value=${bcel.root}/lib/
  -path id=bcel.classpath
  -  pathelement path=${bcel.lib}/bcel.jar/
  +property name=apache.bcel.root value=${project.thirdparty}/apache/bcel/
  +property name=apache.bcel.lib  value=${apache.bcel.root}/lib/
  +path id=apache.bcel.classpath
  +  pathelement path=${apache.bcel.lib}/bcel.jar/
   /path
   
   !-- The combined library classpath --
  @@ -135,7 +135,7 @@
 path refid=crimson.classpath/
 path refid=sax.classpath/
 path refid=junit.junit.classpath/
  -  path refid=bcel.classpath/
  +  path refid=apache.bcel.classpath/
   /path
   
   !-- === --
  
  
  

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



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

2002-02-28 Thread David Jencks

  User: d_jencks
  Date: 02/02/28 10:00:33

  Modified:.build.xml
  Log:
  changed to use new xmbean dtd, and provided User.xml sample generated from xdoclet 
jboss xmbean task (available in xdoclet 1.1.2)
  
  Revision  ChangesPath
  1.22  +37 -2 jmx/build.xml
  
  Index: build.xml
  ===
  RCS file: /cvsroot/jboss/jmx/build.xml,v
  retrieving revision 1.21
  retrieving revision 1.22
  diff -u -r1.21 -r1.22
  --- build.xml 28 Feb 2002 04:08:03 -  1.21
  +++ build.xml 28 Feb 2002 18:00:33 -  1.22
  @@ -12,7 +12,7 @@
   !----
   !-- == --
   
  -!-- $Id: build.xml,v 1.21 2002/02/28 04:08:03 user57 Exp $ --
  +!-- $Id: build.xml,v 1.22 2002/02/28 18:00:33 d_jencks Exp $ --
   
   project default=main name=JBoss/JMX
   
  @@ -143,6 +143,7 @@
   property name=build.lib value=${module.output}/lib/
   property name=build.api value=${module.output}/api/
   property name=build.etc value=${module.output}/etc/
  +property name=build.gen-src value=${module.output}/gen-src/
   
   !-- Install/Release structure --
   property name=install.id value=${module.name}-${module.version}/
  @@ -181,6 +182,15 @@
   property name=junit.timeout value=24/ !-- 4 minutes --
   property name=junit.batchtest.todir value=${build.reports}/
   property name=junit.jvm.options value=-Ddummy/
  +
  +!-- xdoclet --
  +path id=xdoclet.task.classpath
  +  path refid=javac.classpath/
  +  pathelement location=${project.tools}/lib/xdoclet.jar/
  +  pathelement location=${project.tools}/lib/ant.jar/
  +/path
  +property name=xdoclet.task.classpath 
  +   refid=xdoclet.task.classpath/
 /target
   
   
  @@ -200,8 +210,29 @@
  description=Compile all source files.
  depends=compile-classes/
   
  +  !-- Compile mbeans with XDoclet --
  +  target name=compile-mbean-sources depends=init
  +taskdef name=xdoclet classname=xdoclet.jmx.JMXDocletTask/
  +
  +mkdir dir=${build.gen-src}/
  +!--this will be enabled as soon as xdoclet 1.1.2 comes out.
  +Since the xmbean doesn't really work now anyway, not a big loss
  +xdoclet sourcepath=${source.java}
  +  destdir=${build.gen-src}
  +  classpath=${xdoclet.task.classpath}
  +  excludedtags=@version,@author
  +  fileset dir=${source.java}
  +include name=test/implementation/modelmbean/support/User.java/
  +  /fileset
  +
  +  jbossxmbean/
  +
  +/xdoclet
  +--
  +  /target
  +
 !-- Compile all class files --
  -  target name=compile-classes depends=init
  +  target name=compile-classes depends=init, compile-mbean-sources
   mkdir dir=${build.classes}/
   javac destdir=${build.classes}
  optimize=${javac.optimize}
  @@ -247,6 +278,10 @@
 fileset dir=${build.classes}
   include name=test/**/
 /fileset
  +  !--wait for xdoclet 1.1.2
  +  fileset dir=${build.gen-src}
  +include name=test/implementation/modelmbean/support/User.xml/
  +  /fileset--
   /jar
 /target
   
  
  
  

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



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

2002-02-28 Thread Juha Lindfors

  User: juhalindfors
  Date: 02/02/28 11:56:06

  Modified:.build.xml
  Log:
  bcel to classpath
  
  Revision  ChangesPath
  1.23  +15 -1 jmx/build.xml
  
  Index: build.xml
  ===
  RCS file: /cvsroot/jboss/jmx/build.xml,v
  retrieving revision 1.22
  retrieving revision 1.23
  diff -u -r1.22 -r1.23
  --- build.xml 28 Feb 2002 18:00:33 -  1.22
  +++ build.xml 28 Feb 2002 19:56:06 -  1.23
  @@ -12,7 +12,7 @@
   !----
   !-- == --
   
  -!-- $Id: build.xml,v 1.22 2002/02/28 18:00:33 d_jencks Exp $ --
  +!-- $Id: build.xml,v 1.23 2002/02/28 19:56:06 juhalindfors Exp $ --
   
   project default=main name=JBoss/JMX
   
  @@ -112,6 +112,13 @@
 pathelement path=${apache.log4j.lib}/log4j.jar/
   /path
   
  +!-- org.apache.bcel --
  +property name=bcel.root value=${project.thirdparty}/apache/bcel/
  +property name=bcel.lib  value=${bcel.root}/lib/
  +path id=bcel.classpath
  +  pathelement path=${bcel.lib}/bcel.jar/
  +/path
  +
   !-- The combined library classpath --
   path id=library.classpath
 path refid=apache.log4j.classpath/
  @@ -120,6 +127,7 @@
 path refid=crimson.classpath/
 path refid=sax.classpath/
 path refid=junit.junit.classpath/
  +  path refid=bcel.classpath/
   /path
   
   !-- === --
  @@ -465,6 +473,9 @@
   path id=compliance.JBossMX.classpath
 pathelement path=${build.lib}/jboss-jmx.jar/
 pathelement path=${build.lib}/jboss-jmx-testsuite.jar/
  +
  +  pathelement path=${build.classes}/  !-- TEMP: 
required by the optimized dispatcher generated classes --
  +
 path refid=thirdparty.classpath/
   /path
   
  @@ -529,6 +540,9 @@
  path id=performance.JBossMX.classpath
 pathelement path=${build.lib}/jboss-jmx.jar/
 pathelement path=${build.lib}/jboss-jmx-testsuite.jar/
  +
  +  pathelement path=${build.classes}/  !-- TEMP: 
required by the optimized dispatcher generated classes --
  +  
 path refid=thirdparty.classpath/
  /path
  
  
  
  

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



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

2002-02-23 Thread Juha Lindfors

  User: juhalindfors
  Date: 02/02/23 13:33:13

  Modified:.build.xml
  Log:
  alpha 2 release
  
  Revision  ChangesPath
  1.20  +2 -2  jmx/build.xml
  
  Index: build.xml
  ===
  RCS file: /cvsroot/jboss/jmx/build.xml,v
  retrieving revision 1.19
  retrieving revision 1.20
  diff -u -r1.19 -r1.20
  --- build.xml 22 Feb 2002 16:44:31 -  1.19
  +++ build.xml 23 Feb 2002 21:33:13 -  1.20
  @@ -12,7 +12,7 @@
   !----
   !-- == --
   
  -!-- $Id: build.xml,v 1.19 2002/02/22 16:44:31 ejort Exp $ --
  +!-- $Id: build.xml,v 1.20 2002/02/23 21:33:13 juhalindfors Exp $ --
   
   project default=main name=JBoss/JMX
   
  @@ -63,7 +63,7 @@
   !-- Module name(s)  version --
   property name=module.name value=jmx/
   property name=module.Name value=JBoss JMX/
  -property name=module.version value=1_0_Alpha1/
  +property name=module.version value=1_0_Alpha2/
   
   !-- = --
   !-- Libraries --
  
  
  

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



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

2002-02-22 Thread Adrian Brock

  User: ejort   
  Date: 02/02/22 08:44:32

  Modified:.build.xml
  Log:
  Default Domain, Querying, Various Other Fixes
  
  Revision  ChangesPath
  1.19  +20 -19jmx/build.xml
  
  Index: build.xml
  ===
  RCS file: /cvsroot/jboss/jmx/build.xml,v
  retrieving revision 1.18
  retrieving revision 1.19
  diff -u -r1.18 -r1.19
  --- build.xml 16 Feb 2002 10:52:15 -  1.18
  +++ build.xml 22 Feb 2002 16:44:31 -  1.19
  @@ -12,7 +12,7 @@
   !----
   !-- == --
   
  -!-- $Id: build.xml,v 1.18 2002/02/16 10:52:15 user57 Exp $ --
  +!-- $Id: build.xml,v 1.19 2002/02/22 16:44:31 ejort Exp $ --
   
   project default=main name=JBoss/JMX
   
  @@ -384,21 +384,20 @@
   
 !--
| There are three targets, one for the RI, one for JBossMX and one for both.
  - | WARNING, everthing is compiled over JBossMX, but the RI test
  - | has jmxri.jar at the front of the classpath.
  + | WARNING, everthing is compiled over JBossMX
  --
   
   
 !-- IBM Tivoli Implementation compliance --
 !-- 
  -  target name=test-compliance-Tivoli depends=compile
  +  target name=test-compliance-Tivoli depends=jars
 description=Run compliance test against IBM Tivoli
 
  path id=compliance.Tivoli.classpath
 pathelement path=${project.thirdparty}/ibm/tivoli/jmx/lib/jmxx.jar/
 pathelement path=${project.thirdparty}/ibm/tivoli/jmx/lib/jmxc.jar/
 pathelement path=${project.thirdparty}/ibm/tivoli/jmx/lib/log.jar/
  -  pathelement path=${build.classes}/
  +  pathelement path=${build.lib}/jboss-jmx-testsuite.jar/
 path refid=thirdparty.classpath/
  /path
  
  @@ -409,12 +408,12 @@
 --
 
 !-- Reference Implementation compliance --
  -  target name=test-compliance-RI depends=compile
  +  target name=test-compliance-RI depends=jars
 description=Run compliance test against RI
   
   path id=compliance.RI.classpath
  pathelement path=${project.thirdparty}/sun/jmx/lib/jmxri.jar/
  -   pathelement path=${build.classes}/
  +   pathelement path=${build.lib}/jboss-jmx-testsuite.jar/
  path refid=thirdparty.classpath/
   /path
   
  @@ -425,11 +424,12 @@
 /target
   
 !-- JBossMX Implementation compliance --
  -  target name=test-compliance-JBossMX depends=compile
  +  target name=test-compliance-JBossMX depends=jars
 description=Run compliance test against JBossMX
   
   path id=compliance.JBossMX.classpath
  -  pathelement path=${build.classes}/
  +  pathelement path=${build.lib}/jboss-jmx.jar/
  +  pathelement path=${build.lib}/jboss-jmx-testsuite.jar/
 path refid=thirdparty.classpath/
   /path
   
  @@ -450,20 +450,19 @@
   
 !--
| There are three targets, one for the RI, one for JBossMX and one for both.
  - | WARNING, everthing is compiled over JBossMX, but the RI test
  - | has jmxri.jar at the front of the classpath.
  + | WARNING, everthing is compiled over JBossMX
  --
   
 !-- IBM Tivoli Implementation performance --
 !--
  -  target name=test-performance-Tivoli depends=compile
  +  target name=test-performance-Tivoli depends=jars
 description=Run performance test against IBM Tivoli
 
  path id=performance.Tivoli.classpath
 pathelement path=${project.thirdparty}/ibm/tivoli/jmx/lib/jmxx.jar/
 pathelement path=${project.thirdparty}/ibm/tivoli/jmx/lib/jmxc.jar/
 pathelement path=${project.thirdparty}/ibm/tivoli/jmx/lib/log.jar/
  -  pathelement path=${build.classes}/
  +  pathelement path=${build.lib}/jboss-jmx-testsuite.jar/
 path refid=thirdparty.classpath/
  /path
   
  @@ -474,12 +473,12 @@
 --
 
 !-- Reference Implementation performance --
  -  target name=test-performance-RI depends=compile
  +  target name=test-performance-RI depends=jars
 description=Run performance test against RI
 
  path id=performance.RI.classpath
 pathelement path=${project.thirdparty}/sun/jmx/lib/jmxri.jar/
  -  pathelement path=${build.classes}/
  +  pathelement path=${build.lib}/jboss-jmx-testsuite.jar/
 path refid=thirdparty.classpath/
  /path
  
  @@ -489,11 +488,12 @@
 /target
 
 !-- JBossMX Implementation performance --
  -  target name=test-performance-JBossMX depends=compile
  +  target name=test-performance-JBossMX depends=jars
 description=Run performance test against JBossMX
 
  path id=performance.JBossMX.classpath
  -  pathelement path=${build.classes}/
  +  pathelement path=${build.lib}/jboss-jmx.jar/
  +  pathelement path=${build.lib}/jboss-jmx-testsuite.jar/
 path 

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

2002-02-16 Thread Jason Dillon

  User: user57  
  Date: 02/02/16 02:52:16

  Modified:.build.xml
  Log:
   o put back the javac.excludes support, so this can be done on the cl
 w/o modifing build.xml
  
  Revision  ChangesPath
  1.18  +2 -1  jmx/build.xml
  
  Index: build.xml
  ===
  RCS file: /cvsroot/jboss/jmx/build.xml,v
  retrieving revision 1.17
  retrieving revision 1.18
  diff -u -r1.17 -r1.18
  --- build.xml 15 Feb 2002 06:32:11 -  1.17
  +++ build.xml 16 Feb 2002 10:52:15 -  1.18
  @@ -12,7 +12,7 @@
   !----
   !-- == --
   
  -!-- $Id: build.xml,v 1.17 2002/02/15 06:32:11 user57 Exp $ --
  +!-- $Id: build.xml,v 1.18 2002/02/16 10:52:15 user57 Exp $ --
   
   project default=main name=JBoss/JMX
   
  @@ -216,6 +216,7 @@
  src path=${source.java}/
  classpath refid=javac.classpath/
  include name=${javac.includes}/
  +   exclude name=${javac.excludes}/
   /javac
 /target
   
  
  
  

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



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

2002-02-14 Thread Juha Lindfors

  User: juhalindfors
  Date: 02/02/14 09:44:39

  Modified:.build.xml
  Log:
  Add SAX2 Extensions and crimson to classpath.
  
  Revision  ChangesPath
  1.16  +12 -2 jmx/build.xml
  
  Index: build.xml
  ===
  RCS file: /cvsroot/jboss/jmx/build.xml,v
  retrieving revision 1.15
  retrieving revision 1.16
  diff -u -r1.15 -r1.16
  --- build.xml 14 Feb 2002 01:08:18 -  1.15
  +++ build.xml 14 Feb 2002 17:44:38 -  1.16
  @@ -12,7 +12,7 @@
   !----
   !-- == --
   
  -!-- $Id: build.xml,v 1.15 2002/02/14 01:08:18 user57 Exp $ --
  +!-- $Id: build.xml,v 1.16 2002/02/14 17:44:38 juhalindfors Exp $ --
   
   project default=main name=JBoss/JMX
   
  @@ -83,13 +83,21 @@
 pathelement path=${jdom.lib}/jdom.jar/
   /path
   
  -!-- org.xml.sax (SAX2) --
  +!-- org.xml.sax (SAX2  SAX2 Extensions) --
   property name=sax.root value=${project.thirdparty}/xml/sax/
   property name=sax.lib value=${sax.root}/lib/
   path id=sax.classpath
 pathelement path=${sax.lib}/sax2.jar/
  +  pathelement path=${sax.lib}/sax2-ext.jar/
   /path
   
  +!-- org.apache.crimson (Default XML parser for JDOM) --
  +property name=crimson.root value=${project.thirdparty}/sun/jaxp/
  +property name=crimson.lib  value=${crimson.root}/lib/
  +path id=crimson.classpath
  +  pathelement path=${crimson.lib}/crimson.jar/
  +/path
  +
   !-- JUnit --
   property name=junit.junit.root value=${project.thirdparty}/junit/junit/
   property name=junit.junit.lib value=${junit.junit.root}/lib/
  @@ -109,6 +117,7 @@
 path refid=apache.log4j.classpath/
 path refid=oswego.concurrent.classpath/
 path refid=jdom.classpath/
  +  path refid=crimson.classpath/
 path refid=sax.classpath/
 path refid=junit.junit.classpath/
   /path
  @@ -508,6 +517,7 @@
 pathelement path=${build.classes}/
 path refid=thirdparty.classpath/
  /path
  +   
  
  java classname=test.implementation.ImplementationSUITE
 classpath refid=implementation.JBossMX.classpath/
  
  
  

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



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

2002-02-14 Thread Jason Dillon

  User: user57  
  Date: 02/02/14 22:32:11

  Modified:.build.xml
  Log:
   o removed the stupid encoding attribute, so all of the javadocs
 will build (showing how dirty our javadocs really are)
  
  Revision  ChangesPath
  1.17  +1 -2  jmx/build.xml
  
  Index: build.xml
  ===
  RCS file: /cvsroot/jboss/jmx/build.xml,v
  retrieving revision 1.16
  retrieving revision 1.17
  diff -u -r1.16 -r1.17
  --- build.xml 14 Feb 2002 17:44:38 -  1.16
  +++ build.xml 15 Feb 2002 06:32:11 -  1.17
  @@ -12,7 +12,7 @@
   !----
   !-- == --
   
  -!-- $Id: build.xml,v 1.16 2002/02/14 17:44:38 juhalindfors Exp $ --
  +!-- $Id: build.xml,v 1.17 2002/02/15 06:32:11 user57 Exp $ --
   
   project default=main name=JBoss/JMX
   
  @@ -303,7 +303,6 @@
package=${javadoc.package}
protected=${javadoc.protected}
private=${javadoc.private}
  - encoding=${javadoc.encoding}
use=${javadoc.use}
 verbose=${javadoc.verbose}
 group title=JBoss JMX packages=org.jboss.mx*/
  
  
  

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



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

2002-02-13 Thread Juha Lindfors

   User: user57  
   Date: 02/02/12 20:14:08
 
   Modified:.build.xml
   Log:
 o if these classes don't need to be built then why
 hy are they there?
   

because the tests won't work correctly if those classes are in the system classpath 
instead of loaded dynamically. Please add the removed tags back or replace it with a 
similar functionality.

Ask before you change, please.

-- Juha


_
View thread online: http://main.jboss.org/thread.jsp?forum=66thread=5587

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



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

2002-02-13 Thread Jason Dillon

I will fix this.

--jason


On Wed, 2002-02-13 at 03:44, Juha Lindfors wrote:
User: user57  
Date: 02/02/12 20:14:08
  
Modified:.build.xml
Log:
  o if these classes don't need to be built then why
  hy are they there?

 
 because the tests won't work correctly if those classes are in the system classpath 
instead of loaded dynamically. Please add the removed tags back or replace it with a 
similar functionality.
 
 Ask before you change, please.
 
 -- Juha
 
 
 _
 View thread online: http://main.jboss.org/thread.jsp?forum=66thread=5587
 
 ___
 Jboss-development mailing list
 [EMAIL PROTECTED]
 https://lists.sourceforge.net/lists/listinfo/jboss-development



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



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

2002-02-13 Thread Jason Dillon

  User: user57  
  Date: 02/02/13 17:08:19

  Modified:.build.xml
  Log:
   o build two jars, one with main classes and one with tests
  
  Revision  ChangesPath
  1.15  +14 -6 jmx/build.xml
  
  Index: build.xml
  ===
  RCS file: /cvsroot/jboss/jmx/build.xml,v
  retrieving revision 1.14
  retrieving revision 1.15
  diff -u -r1.14 -r1.15
  --- build.xml 13 Feb 2002 04:14:08 -  1.14
  +++ build.xml 14 Feb 2002 01:08:18 -  1.15
  @@ -12,7 +12,7 @@
   !----
   !-- == --
   
  -!-- $Id: build.xml,v 1.14 2002/02/13 04:14:08 user57 Exp $ --
  +!-- $Id: build.xml,v 1.15 2002/02/14 01:08:18 user57 Exp $ --
   
   project default=main name=JBoss/JMX
   
  @@ -228,6 +228,14 @@
   jar jarfile=${build.lib}/jboss-jmx.jar
 fileset dir=${build.classes}
   include name=**/
  +exclude name=test/**/
  +  /fileset
  +/jar
  +
  +!-- Build the jboss-jmx-testsuite.jar --
  +jar jarfile=${build.lib}/jboss-jmx-testsuite.jar
  +  fileset dir=${build.classes}
  +include name=test/**/
 /fileset
   /jar
 /target
  @@ -395,10 +403,10 @@
 target name=test-compliance-RI depends=compile
 description=Run compliance test against RI
   
  -  path id=compliance.RI.classpath
  -  pathelement path=${project.thirdparty}/sun/jmx/lib/jmxri.jar/
  -  pathelement path=${build.classes}/
  -  path refid=thirdparty.classpath/
  +path id=compliance.RI.classpath
  +   pathelement path=${project.thirdparty}/sun/jmx/lib/jmxri.jar/
  +   pathelement path=${build.classes}/
  +   path refid=thirdparty.classpath/
   /path
   
   java classname=test.compliance.ComplianceSUITE
  @@ -411,7 +419,7 @@
 target name=test-compliance-JBossMX depends=compile
 description=Run compliance test against JBossMX
   
  -  path id=compliance.JBossMX.classpath
  +path id=compliance.JBossMX.classpath
 pathelement path=${build.classes}/
 path refid=thirdparty.classpath/
   /path
  
  
  

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



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

2002-02-12 Thread Jason Dillon

  User: user57  
  Date: 02/02/12 20:14:08

  Modified:.build.xml
  Log:
   o if these classes don't need to be built then why are they there?
  
  Revision  ChangesPath
  1.14  +1 -14 jmx/build.xml
  
  Index: build.xml
  ===
  RCS file: /cvsroot/jboss/jmx/build.xml,v
  retrieving revision 1.13
  retrieving revision 1.14
  diff -u -r1.13 -r1.14
  --- build.xml 8 Feb 2002 21:37:16 -   1.13
  +++ build.xml 13 Feb 2002 04:14:08 -  1.14
  @@ -12,7 +12,7 @@
   !----
   !-- == --
   
  -!-- $Id: build.xml,v 1.13 2002/02/08 21:37:16 ejort Exp $ --
  +!-- $Id: build.xml,v 1.14 2002/02/13 04:14:08 user57 Exp $ --
   
   project default=main name=JBoss/JMX
   
  @@ -208,19 +208,6 @@
  classpath refid=javac.classpath/
  include name=${javac.includes}/
   /javac
  -
  -delete 
file=${build.classes}/test/implementation/loading/support/AClass.class/
  -delete 
file=${build.classes}/test/implementation/loading/support/Start.class/
  -delete 
file=${build.classes}/test/implementation/loading/support/StartMBean.class/
  -delete 
file=${build.classes}/test/implementation/loading/support/Target.class/
  -delete 
file=${build.classes}/test/implementation/loading/support/TargetMBean.class/
  -
  -delete file=${build.classes}/test/compliance/loading/support/AClass.class/
  -delete 
file=${build.classes}/test/compliance/loading/support/AnotherTrivial.class/
  -delete 
file=${build.classes}/test/compliance/loading/support/AnotherTrivialMBean.class/
  -delete file=${build.classes}/test/compliance/loading/support/Trivial.class/
  -delete 
file=${build.classes}/test/compliance/loading/support/TrivialMBean.class/
  -
 /target
   
   
  
  
  

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



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

2002-02-08 Thread Adrian Brock

  User: ejort   
  Date: 02/02/08 13:37:16

  Modified:.build.xml
  Log:
  
  
  Revision  ChangesPath
  1.13  +9 -1  jmx/build.xml
  
  Index: build.xml
  ===
  RCS file: /cvsroot/jboss/jmx/build.xml,v
  retrieving revision 1.12
  retrieving revision 1.13
  diff -u -r1.12 -r1.13
  --- build.xml 5 Feb 2002 15:02:38 -   1.12
  +++ build.xml 8 Feb 2002 21:37:16 -   1.13
  @@ -12,7 +12,7 @@
   !----
   !-- == --
   
  -!-- $Id: build.xml,v 1.12 2002/02/05 15:02:38 juhalindfors Exp $ --
  +!-- $Id: build.xml,v 1.13 2002/02/08 21:37:16 ejort Exp $ --
   
   project default=main name=JBoss/JMX
   
  @@ -97,8 +97,16 @@
 pathelement path=${junit.junit.lib}/junit.jar/
   /path
   
  +!-- Log4j --
  +property name=apache.log4j.root value=${project.thirdparty}/apache/log4j/
  +property name=apache.log4j.lib value=${apache.log4j.root}/lib/
  +path id=apache.log4j.classpath
  +  pathelement path=${apache.log4j.lib}/log4j.jar/
  +/path
  +
   !-- The combined library classpath --
   path id=library.classpath
  +  path refid=apache.log4j.classpath/
 path refid=oswego.concurrent.classpath/
 path refid=jdom.classpath/
 path refid=sax.classpath/
  
  
  

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



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

2002-02-05 Thread Juha Lindfors

  User: juhalindfors
  Date: 02/02/05 05:23:21

  Modified:.build.xml
  Log:
  delete some compiled classes so theyre loaded dynamically from the jars
  and not from the system classpath
  
  Revision  ChangesPath
  1.11  +14 -8 jmx/build.xml
  
  Index: build.xml
  ===
  RCS file: /cvsroot/jboss/jmx/build.xml,v
  retrieving revision 1.10
  retrieving revision 1.11
  diff -u -r1.10 -r1.11
  --- build.xml 2002/02/01 21:50:58 1.10
  +++ build.xml 2002/02/05 13:23:20 1.11
  @@ -12,7 +12,7 @@
   !----
   !-- == --
   
  -!-- $Id: build.xml,v 1.10 2002/02/01 21:50:58 juhalindfors Exp $ --
  +!-- $Id: build.xml,v 1.11 2002/02/05 13:23:20 juhalindfors Exp $ --
   
   project default=main name=JBoss/JMX
   
  @@ -138,9 +138,9 @@
 path refid=dependentmodule.classpath/
   /path
   
  -!-- This module is based on Java 1.2 --
  -property name=javac.target value=1.2/
  -
  +!-- This module is based on Java 1.3 --
  +property name=javac.target value=1.3/
  +
   !-- classpath and local.classpath must have a value using with a path --
   property name=classpath value=/
   property name=local.classpath value=/
  @@ -188,10 +188,10 @@
   mkdir dir=${build.classes}/
   javac destdir=${build.classes}
  optimize=${javac.optimize}
  -target=${javac.target}
  + target=${javac.target}
  debug=${javac.debug}
  -depend=${javac.depend}
  -verbose=${javac.verbose}
  + depend=${javac.depend}
  + verbose=${javac.verbose}
   deprecation=${javac.deprecation}
   includeAntRuntime=${javac.include.ant.runtime}
   includeJavaRuntime=${javac.include.java.runtime}
  @@ -199,8 +199,14 @@
  src path=${source.java}/
  classpath refid=javac.classpath/
  include name=${javac.includes}/
  -   exclude name=${javac.excludes}/
   /javac
  +
  +delete 
file=${build.classes}/test/implementation/loading/support/AClass.class/
  +delete 
file=${build.classes}/test/implementation/loading/support/Start.class/
  +delete 
file=${build.classes}/test/implementation/loading/support/StartMBean.class/
  +delete 
file=${build.classes}/test/implementation/loading/support/Target.class/
  +delete 
file=${build.classes}/test/implementation/loading/support/TargetMBean.class/
  +
 /target
   
   
  
  
  

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



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

2002-02-05 Thread Juha Lindfors

  User: juhalindfors
  Date: 02/02/05 07:02:38

  Modified:.build.xml
  Log:
  also remove from system classpath to force mlet loading from jars
  
  Revision  ChangesPath
  1.12  +7 -1  jmx/build.xml
  
  Index: build.xml
  ===
  RCS file: /cvsroot/jboss/jmx/build.xml,v
  retrieving revision 1.11
  retrieving revision 1.12
  diff -u -r1.11 -r1.12
  --- build.xml 2002/02/05 13:23:20 1.11
  +++ build.xml 2002/02/05 15:02:38 1.12
  @@ -12,7 +12,7 @@
   !----
   !-- == --
   
  -!-- $Id: build.xml,v 1.11 2002/02/05 13:23:20 juhalindfors Exp $ --
  +!-- $Id: build.xml,v 1.12 2002/02/05 15:02:38 juhalindfors Exp $ --
   
   project default=main name=JBoss/JMX
   
  @@ -206,6 +206,12 @@
   delete 
file=${build.classes}/test/implementation/loading/support/StartMBean.class/
   delete 
file=${build.classes}/test/implementation/loading/support/Target.class/
   delete 
file=${build.classes}/test/implementation/loading/support/TargetMBean.class/
  +
  +delete file=${build.classes}/test/compliance/loading/support/AClass.class/
  +delete 
file=${build.classes}/test/compliance/loading/support/AnotherTrivial.class/
  +delete 
file=${build.classes}/test/compliance/loading/support/AnotherTrivialMBean.class/
  +delete file=${build.classes}/test/compliance/loading/support/Trivial.class/
  +delete 
file=${build.classes}/test/compliance/loading/support/TrivialMBean.class/
   
 /target
   
  
  
  

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



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

2002-02-01 Thread Juha Lindfors

  User: juhalindfors
  Date: 02/02/01 13:50:58

  Modified:.build.xml
  Log:
  version update
  
  Revision  ChangesPath
  1.10  +2 -2  jmx/build.xml
  
  Index: build.xml
  ===
  RCS file: /cvsroot/jboss/jmx/build.xml,v
  retrieving revision 1.9
  retrieving revision 1.10
  diff -u -r1.9 -r1.10
  --- build.xml 2002/01/24 10:45:40 1.9
  +++ build.xml 2002/02/01 21:50:58 1.10
  @@ -12,7 +12,7 @@
   !----
   !-- == --
   
  -!-- $Id: build.xml,v 1.9 2002/01/24 10:45:40 juhalindfors Exp $ --
  +!-- $Id: build.xml,v 1.10 2002/02/01 21:50:58 juhalindfors Exp $ --
   
   project default=main name=JBoss/JMX
   
  @@ -63,7 +63,7 @@
   !-- Module name(s)  version --
   property name=module.name value=jmx/
   property name=module.Name value=JBoss JMX/
  -property name=module.version value=DEV/
  +property name=module.version value=1_0_Alpha1/
   
   !-- = --
   !-- Libraries --
  
  
  

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



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

2002-01-24 Thread Juha Lindfors

  User: juhalindfors
  Date: 02/01/24 02:45:40

  Modified:.build.xml
  Log:
  TestMX removed
  
  Revision  ChangesPath
  1.9   +1 -22 jmx/build.xml
  
  Index: build.xml
  ===
  RCS file: /cvsroot/jboss/jmx/build.xml,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -r1.8 -r1.9
  --- build.xml 2002/01/23 21:19:11 1.8
  +++ build.xml 2002/01/24 10:45:40 1.9
  @@ -12,7 +12,7 @@
   !----
   !-- == --
   
  -!-- $Id: build.xml,v 1.8 2002/01/23 21:19:11 juhalindfors Exp $ --
  +!-- $Id: build.xml,v 1.9 2002/01/24 10:45:40 juhalindfors Exp $ --
   
   project default=main name=JBoss/JMX
   
  @@ -499,25 +499,4 @@
  /java
 /target
 
  -  !-- == --
  -  !-- Test - TEMPORARY -  replace with proper test suite --
  -  !-- == --
  -
  -  !--
  - | Run the test programs, everything fist
  -   --
  -
  -  !-- Run the test --
  -  target name=test depends=all
  -
  -   path id=test.classpath
  -  pathelement path=${build.classes}/
  -  path refid=thirdparty.classpath/
  -/path
  -
  -java classname=test.TestMX
  -   classpath refid=test.classpath/
  -/java
  -
  -  /target
   /project
  
  
  

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



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

2002-01-23 Thread Juha Lindfors

  User: juhalindfors
  Date: 02/01/23 13:19:11

  Modified:.build.xml
  Log:
  Integrated performance tests to JUnit test suites.
  New build targets:
   * build test-performance-RI
   * build test-performance-JBossMX
   * build test-performance
  
  Added new suite 'implementation' that tests JBossMX
  specific implementation features not covered by the
  compliance suite.
  
  New build target:
   * build test-implementation
  
  Revision  ChangesPath
  1.8   +102 -4jmx/build.xml
  
  Index: build.xml
  ===
  RCS file: /cvsroot/jboss/jmx/build.xml,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- build.xml 2001/12/20 03:51:10 1.7
  +++ build.xml 2002/01/23 21:19:11 1.8
  @@ -12,7 +12,7 @@
   !----
   !-- == --
   
  -!-- $Id: build.xml,v 1.7 2001/12/20 03:51:10 ejort Exp $ --
  +!-- $Id: build.xml,v 1.8 2002/01/23 21:19:11 juhalindfors Exp $ --
   
   project default=main name=JBoss/JMX
   
  @@ -76,14 +76,14 @@
 pathelement path=${oswego.concurrent.lib}/concurrent.jar/
   /path
   
  -!-- JDOM --
  +!-- org.jdom --
   property name=jdom.root value=${project.thirdparty}/jdom/
   property name=jdom.lib value=${jdom.root}/beta-7/lib/
   path id=jdom.classpath
 pathelement path=${jdom.lib}/jdom.jar/
   /path
   
  -!-- SAX --
  +!-- org.xml.sax (SAX2) --
   property name=sax.root value=${project.thirdparty}/xml/sax/
   property name=sax.lib value=${sax.root}/lib/
   path id=sax.classpath
  @@ -365,6 +365,25 @@
  --
   
   
  +  !-- IBM Tivoli Implementation compliance --
  +  !-- 
  +  target name=test-compliance-Tivoli depends=compile
  +  description=Run compliance test against IBM Tivoli
  +  
  +   path id=compliance.Tivoli.classpath
  +  pathelement path=${project.thirdparty}/ibm/tivoli/jmx/lib/jmxx.jar/
  +  pathelement path=${project.thirdparty}/ibm/tivoli/jmx/lib/jmxc.jar/
  +  pathelement path=${project.thirdparty}/ibm/tivoli/jmx/lib/log.jar/
  +  pathelement path=${build.classes}/
  +  path refid=thirdparty.classpath/
  +   /path
  +   
  +   java classname=test.compliance.ComplianceSUITE
  +  classpath refid=compliance.Tivoli.classpath/
  +   /java
  +  /target
  +  --
  +  
 !-- Reference Implementation compliance --
 target name=test-compliance-RI depends=compile
 description=Run compliance test against RI
  @@ -402,6 +421,85 @@
 /target
   
 !-- == --
  +  !-- Performance - Runs the performance test suite  --
  +  !-- == --
  +
  +  !--
  + | There are three targets, one for the RI, one for JBossMX and one for both.
  + | WARNING, everthing is compiled over JBossMX, but the RI test
  + | has jmxri.jar at the front of the classpath.
  +   --
  +
  +  !-- IBM Tivoli Implementation performance --
  +  !--
  +  target name=test-performance-Tivoli depends=compile
  +  description=Run performance test against IBM Tivoli
  +  
  +   path id=performance.Tivoli.classpath
  +  pathelement path=${project.thirdparty}/ibm/tivoli/jmx/lib/jmxx.jar/
  +  pathelement path=${project.thirdparty}/ibm/tivoli/jmx/lib/jmxc.jar/
  +  pathelement path=${project.thirdparty}/ibm/tivoli/jmx/lib/log.jar/
  +  pathelement path=${build.classes}/
  +  path refid=thirdparty.classpath/
  +   /path
  +
  +   java classname=test.performance.PerformanceSUITE
  +  classpath refid=performance.Tivoli.classpath/
  +   /java
  +  /target
  +  --
  +  
  +  !-- Reference Implementation performance --
  +  target name=test-performance-RI depends=compile
  +  description=Run performance test against RI
  +  
  +   path id=performance.RI.classpath
  +  pathelement path=${project.thirdparty}/sun/jmx/lib/jmxri.jar/
  +  pathelement path=${build.classes}/
  +  path refid=thirdparty.classpath/
  +   /path
  +   
  +   java classname=test.performance.PerformanceSUITE
  +  classpath refid=performance.RI.classpath/
  +   /java
  +  /target
  +  
  +  !-- JBossMX Implementation performance --
  +  target name=test-performance-JBossMX depends=compile
  +  description=Run performance test against JBossMX
  +  
  +   path id=performance.JBossMX.classpath
  +  pathelement path=${build.classes}/
  +  path refid=thirdparty.classpath/
  +   /path
  +   
  +   java classname=test.performance.PerformanceSUITE
  +  classpath refid=performance.JBossMX.classpath/
  +   /java
  +  /target
  +
  +  !-- Run both performance tests --
  +  target name=test-performance depends=test-performance-RI, 

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

2001-12-19 Thread Trevor Squires

  User: squirest
  Date: 01/12/19 18:11:23

  Modified:.build.xml
  Log:
  put junit into build classpath
  
  Revision  ChangesPath
  1.5   +2 -1  jmx/build.xml
  
  Index: build.xml
  ===
  RCS file: /cvsroot/jboss/jmx/build.xml,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- build.xml 2001/12/16 19:38:38 1.4
  +++ build.xml 2001/12/20 02:11:23 1.5
  @@ -12,7 +12,7 @@
   !----
   !-- == --
   
  -!-- $Id: build.xml,v 1.4 2001/12/16 19:38:38 ejort Exp $ --
  +!-- $Id: build.xml,v 1.5 2001/12/20 02:11:23 squirest Exp $ --
   
   project default=main name=JBoss/JMX
   
  @@ -102,6 +102,7 @@
 path refid=oswego.concurrent.classpath/
 path refid=jdom.classpath/
 path refid=sax.classpath/
  +  path refid=junit.junit.classpath/
   /path
   
   !-- === --
  
  
  

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



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

2001-12-19 Thread Adrian Brock

  User: ejort   
  Date: 01/12/19 19:39:40

  Modified:.build.xml
  Log:
  Compliance targets - initial attempt
  
  Revision  ChangesPath
  1.6   +69 -22jmx/build.xml
  
  Index: build.xml
  ===
  RCS file: /cvsroot/jboss/jmx/build.xml,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- build.xml 2001/12/20 02:11:23 1.5
  +++ build.xml 2001/12/20 03:39:40 1.6
  @@ -12,7 +12,7 @@
   !----
   !-- == --
   
  -!-- $Id: build.xml,v 1.5 2001/12/20 02:11:23 squirest Exp $ --
  +!-- $Id: build.xml,v 1.6 2001/12/20 03:39:40 ejort Exp $ --
   
   project default=main name=JBoss/JMX
   
  @@ -75,7 +75,7 @@
   path id=oswego.concurrent.classpath
 pathelement path=${oswego.concurrent.lib}/concurrent.jar/
   /path
  -
  +
   !-- JDOM --
   property name=jdom.root value=${project.thirdparty}/jdom/
   property name=jdom.lib value=${jdom.root}/beta-7/lib/
  @@ -89,7 +89,7 @@
   path id=sax.classpath
 pathelement path=${sax.lib}/sax2.jar/
   /path
  -
  +
   !-- JUnit --
   property name=junit.junit.root value=${project.thirdparty}/junit/junit/
   property name=junit.junit.lib value=${junit.junit.root}/lib/
  @@ -171,15 +171,15 @@
 !-- Compile--
 !-- == --
   
  -  !-- 
  +  !--
| Compile everything.
|
  - | This target should depend on other compile-* targets for each 
  + | This target should depend on other compile-* targets for each
| different type of compile that needs to be performed, short of
| documentation compiles.
  --
   
  -  target name=compile 
  +  target name=compile
  description=Compile all source files.
  depends=compile-classes/
   
  @@ -208,15 +208,15 @@
 !-- Archives   --
 !-- == --
   
  -  !-- 
  +  !--
| Build all jar files.
  --
  -  target name=jars 
  +  target name=jars
  description=Builds all jar files.
  depends=compile
   
   mkdir dir=${build.lib}/
  -
  +
   !-- Build the jboss-jmx.jar --
   jar jarfile=${build.lib}/jboss-jmx.jar
 fileset dir=${build.classes}
  @@ -230,7 +230,7 @@
 !-- Documents  --
 !-- == --
   
  -  !-- 
  +  !--
| Create all generated documenation.
|
| This target should depend on other docs-* targets for each 
  @@ -261,8 +261,8 @@
 /target
   
 !-- Generate Javadoc if we are out of date --
  -  target name=docs-javadocs 
  -   depends=docs-javadocs-check 
  +  target name=docs-javadocs
  +   depends=docs-javadocs-check
  unless=docs-javadocs.disable
   
   mkdir dir=${build.api}/
  @@ -281,7 +281,7 @@
private=${javadoc.private}
encoding=${javadoc.encoding}
use=${javadoc.use}
  -  verbose=${javadoc.verbose} 
  +  verbose=${javadoc.verbose}
 group title=JBoss JMX packages=org.jboss.mx*/
   /javadoc
 /target
  @@ -293,21 +293,21 @@
 !-- Install  Release  --
 !-- == --
   
  -  target name=install 
  +  target name=install
  description=Install the structure for a release.
  depends=all, _buildmagic:install:default/
   
 target name=release depends=install/
   
  -  target name=release-zip 
  +  target name=release-zip
  description=Builds a ZIP distribution.
  depends=release, _buildmagic:release:zip/
   
  -  target name=release-tar 
  +  target name=release-tar
  description=Builds a TAR distribution.
  depends=release, _buildmagic:release:tar/
   
  -  target name=release-tgz 
  +  target name=release-tgz
  description=Builds a TAR-GZ distribution.
  depends=release, _buildmagic:release:tgz/
   
  @@ -321,13 +321,13 @@
 !-- == --
   
 !-- Clean up all build output --
  -  target name=clean 
  +  target name=clean
  description=Cleans up most generated files.
  depends=_buildmagic:clean
 /target
   
 !-- Clean up all generated files --
  -  target name=clobber 
  +  target name=clobber
  description=Cleans up all generated files.
  depends=_buildmagic:clobber, clean
 /target
  @@ -340,19 +340,66 @@
 target 

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

2001-12-19 Thread Adrian Brock

  User: ejort   
  Date: 01/12/19 19:51:10

  Modified:.build.xml
  Log:
  Fix the comments
  
  Revision  ChangesPath
  1.7   +3 -3  jmx/build.xml
  
  Index: build.xml
  ===
  RCS file: /cvsroot/jboss/jmx/build.xml,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- build.xml 2001/12/20 03:39:40 1.6
  +++ build.xml 2001/12/20 03:51:10 1.7
  @@ -12,7 +12,7 @@
   !----
   !-- == --
   
  -!-- $Id: build.xml,v 1.6 2001/12/20 03:39:40 ejort Exp $ --
  +!-- $Id: build.xml,v 1.7 2001/12/20 03:51:10 ejort Exp $ --
   
   project default=main name=JBoss/JMX
   
  @@ -359,7 +359,7 @@
 !-- == --
   
 !--
  - | There are two targets, one for the RI for for JBossMX
  + | There are three targets, one for the RI, one for JBossMX and one for both.
| WARNING, everthing is compiled over JBossMX, but the RI test
| has jmxri.jar at the front of the classpath.
  --
  @@ -398,7 +398,7 @@
   
 !-- Run both compliance tests --
 target name=test-compliance depends=test-compliance-RI, 
test-compliance-JBossMX
  -  description=Run compliance test against JBossMX
  +  description=Run compliance test against RI and JBossMX
 /target
   
 !-- == --
  
  
  

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



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

2001-12-16 Thread Adrian Brock

  User: ejort   
  Date: 01/12/16 11:38:38

  Modified:.build.xml
  Log:
  Initial release of javax.management.timer
  Basic functionality works, not tested everything yet
  Added a test to TestMX
  Added a target to build.xml to run TestMX
  
  Revision  ChangesPath
  1.4   +23 -1 jmx/build.xml
  
  Index: build.xml
  ===
  RCS file: /cvsroot/jboss/jmx/build.xml,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- build.xml 2001/12/15 03:23:24 1.3
  +++ build.xml 2001/12/16 19:38:38 1.4
  @@ -12,7 +12,7 @@
   !----
   !-- == --
   
  -!-- $Id: build.xml,v 1.3 2001/12/15 03:23:24 ejort Exp $ --
  +!-- $Id: build.xml,v 1.4 2001/12/16 19:38:38 ejort Exp $ --
   
   project default=main name=JBoss/JMX
   
  @@ -352,4 +352,26 @@
 description=Show this help message.
  depends=_buildmagic:help:standard/
   
  +
  +  !-- == --
  +  !-- Test - TEMPORARY -  replace with proper test suite --
  +  !-- == --
  +
  +  !--
  + | Run the test programs, everything fist
  +   --
  +
  +  !-- Run the test --
  +  target name=test depends=all
  +
  +   path id=test.classpath
  +  pathelement path=${build.classes}/
  +  path refid=thirdparty.classpath/
  +/path
  +
  +java classname=test.TestMX
  +   classpath refid=test.classpath/
  +/java
  +
  +  /target
   /project
  
  
  

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



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

2001-12-14 Thread Adrian Brock

  User: ejort   
  Date: 01/12/14 19:23:24

  Modified:.build.xml
  Log:
  Added javax.management.* packages to the API output
  It appears in OtherPackages group in Javadoc (correct?)
  
  Revision  ChangesPath
  1.3   +2 -2  jmx/build.xml
  
  Index: build.xml
  ===
  RCS file: /cvsroot/jboss/jmx/build.xml,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- build.xml 2001/12/12 23:46:12 1.2
  +++ build.xml 2001/12/15 03:23:24 1.3
  @@ -12,7 +12,7 @@
   !----
   !-- == --
   
  -!-- $Id: build.xml,v 1.2 2001/12/12 23:46:12 juhalindfors Exp $ --
  +!-- $Id: build.xml,v 1.3 2001/12/15 03:23:24 ejort Exp $ --
   
   project default=main name=JBoss/JMX
   
  @@ -157,7 +157,7 @@
   /path
   
   !-- Packages to include when generating api documentation --
  -property name=javadoc.packages value=org.jboss.*/
  +property name=javadoc.packages value=javax.management.*, org.jboss.*/
   
   !-- Override JUnit defaults --
   property name=junit.timeout value=24/ !-- 4 minutes --
  
  
  

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



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

2001-12-12 Thread Juha Lindfors

  User: juhalindfors
  Date: 01/12/12 15:46:12

  Modified:.build.xml
  Log:
  JDOM and SAX2 added to javac classpath
  
  Revision  ChangesPath
  1.2   +17 -1 jmx/build.xml
  
  Index: build.xml
  ===
  RCS file: /cvsroot/jboss/jmx/build.xml,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- build.xml 2001/12/07 00:33:20 1.1
  +++ build.xml 2001/12/12 23:46:12 1.2
  @@ -12,7 +12,7 @@
   !----
   !-- == --
   
  -!-- $Id: build.xml,v 1.1 2001/12/07 00:33:20 user57 Exp $ --
  +!-- $Id: build.xml,v 1.2 2001/12/12 23:46:12 juhalindfors Exp $ --
   
   project default=main name=JBoss/JMX
   
  @@ -75,7 +75,21 @@
   path id=oswego.concurrent.classpath
 pathelement path=${oswego.concurrent.lib}/concurrent.jar/
   /path
  +
  +!-- JDOM --
  +property name=jdom.root value=${project.thirdparty}/jdom/
  +property name=jdom.lib value=${jdom.root}/beta-7/lib/
  +path id=jdom.classpath
  +  pathelement path=${jdom.lib}/jdom.jar/
  +/path
   
  +!-- SAX --
  +property name=sax.root value=${project.thirdparty}/xml/sax/
  +property name=sax.lib value=${sax.root}/lib/
  +path id=sax.classpath
  +  pathelement path=${sax.lib}/sax2.jar/
  +/path
  +
   !-- JUnit --
   property name=junit.junit.root value=${project.thirdparty}/junit/junit/
   property name=junit.junit.lib value=${junit.junit.root}/lib/
  @@ -86,6 +100,8 @@
   !-- The combined library classpath --
   path id=library.classpath
 path refid=oswego.concurrent.classpath/
  +  path refid=jdom.classpath/
  +  path refid=sax.classpath/
   /path
   
   !-- === --
  
  
  

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



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

2001-12-12 Thread Juha-P Lindfors


huh?


On Wed, 12 Dec 2001, Jason Dillon wrote:

 Why don't these have vendor directories?

 --jason




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



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

2001-12-12 Thread Jason Dillon

Sorry I meant vendor prefixes for the configuration bits:

!-- SAX --
property name=sax.root value=${project.thirdparty}/xml/sax/
property name=sax.lib value=${sax.root}/lib/
path id=sax.classpath
  pathelement path=${sax.lib}/sax2.jar/
/path

All others have a vendor prefix:

!-- EDU.oswego.cs.dl.util.concurrent --
property name=oswego.concurrent.root 
  value=${project.thirdparty}/oswego/concurrent/
property name=oswego.concurrent.lib 
  value=${oswego.concurrent.root}/lib/
path id=oswego.concurrent.classpath
  pathelement path=${oswego.concurrent.lib}/concurrent.jar/
/path

--jason


On Thu, 13 Dec 2001, Juha-P Lindfors wrote:

 
 huh?
 
 
 On Wed, 12 Dec 2001, Jason Dillon wrote:
 
  Why don't these have vendor directories?
 
  --jason
 
 
 


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