[jboss-svn-commits] JBL Code SVN: r5468 - in labs/jbossrules/trunk: . drools-core drools-decisiontables drools-examples drools-jsr94 drools-server

jboss-svn-commits at lists.jboss.org jboss-svn-commits at lists.jboss.org
Fri Aug 4 06:56:01 EDT 2006


Author: mark.proctor at jboss.com
Date: 2006-08-04 06:55:56 -0400 (Fri, 04 Aug 2006)
New Revision: 5468

Modified:
   labs/jbossrules/trunk/drools-core/pom.xml
   labs/jbossrules/trunk/drools-decisiontables/pom.xml
   labs/jbossrules/trunk/drools-examples/build.xml
   labs/jbossrules/trunk/drools-jsr94/pom.xml
   labs/jbossrules/trunk/drools-server/.classpath
   labs/jbossrules/trunk/pom.xml
Log:
-removed jar copy from pom.xml 

Modified: labs/jbossrules/trunk/drools-core/pom.xml
===================================================================
--- labs/jbossrules/trunk/drools-core/pom.xml	2006-08-04 10:51:30 UTC (rev 5467)
+++ labs/jbossrules/trunk/drools-core/pom.xml	2006-08-04 10:55:56 UTC (rev 5468)
@@ -43,32 +43,6 @@
   
   <build>
     <plugins>
-      <plugin>
-        <groupId>org.apache.maven.plugins</groupId>
-        <artifactId>maven-antrun-plugin</artifactId>
-        <executions>
-            <execution>
-                <id>package</id>
-                <phase>package</phase>
-                <configuration>
-                    <tasks>
-                        <echo message="Copying file ${project.build.directory}/${project.artifactId}-${project.version}.${project.packaging} to ../drools-ide/lib/${project.artifactId}.${project.packaging}" />
-                        <copy file="${project.build.directory}/${project.artifactId}-${project.version}.${project.packaging}" tofile="../drools-ide/lib/${project.artifactId}.${project.packaging}" />
-                    </tasks>
-                </configuration>
-                <goals>
-                    <goal>run</goal>
-                </goals>
-            </execution>
-        </executions>
-        <dependencies>
-	        <dependency>
-                <groupId>ant</groupId>
-                <artifactId>ant-antlr</artifactId>
-                <version>1.6.5</version>
-	        </dependency>
-        </dependencies>
-      </plugin>      
       
     <plugin>
       <groupId>org.apache.maven.plugins</groupId>

Modified: labs/jbossrules/trunk/drools-decisiontables/pom.xml
===================================================================
--- labs/jbossrules/trunk/drools-decisiontables/pom.xml	2006-08-04 10:51:30 UTC (rev 5467)
+++ labs/jbossrules/trunk/drools-decisiontables/pom.xml	2006-08-04 10:55:56 UTC (rev 5468)
@@ -32,37 +32,7 @@
     </dependency>
   </dependencies>
 
-  <!-- This is needed to copy the generated jars into the IDE/Plugs lib directory -->
-  <build>
-    <plugins>
-      <plugin>
-        <groupId>org.apache.maven.plugins</groupId>
-        <artifactId>maven-antrun-plugin</artifactId>
-        <executions>
-            <execution>
-                <id>package</id>
-                <phase>package</phase>
-                <configuration>
-                    <tasks>
-                        <echo message="Copying file ${project.build.directory}/${project.artifactId}-${project.version}.${project.packaging} to ../drools-ide/lib/${project.artifactId}.${project.packaging}" />
-                        <copy file="${project.build.directory}/${project.artifactId}-${project.version}.${project.packaging}" tofile="../drools-ide/lib/${project.artifactId}.${project.packaging}" />
-                    </tasks>
-                </configuration>
-                <goals>
-                    <goal>run</goal>
-                </goals>
-            </execution>
-        </executions>
-        <dependencies>
-	        <dependency>
-                <groupId>ant</groupId>
-                <artifactId>ant-antlr</artifactId>
-                <version>1.6.5</version>
-	        </dependency>
-        </dependencies>
-      </plugin>      
-    </plugins>
-  </build>
+  <build/>
   
 
 

Modified: labs/jbossrules/trunk/drools-examples/build.xml
===================================================================
--- labs/jbossrules/trunk/drools-examples/build.xml	2006-08-04 10:51:30 UTC (rev 5467)
+++ labs/jbossrules/trunk/drools-examples/build.xml	2006-08-04 10:55:56 UTC (rev 5468)
@@ -27,6 +27,21 @@
       </javac>                          
     </target>  
     
+    <target name="run-waltz12">                    
+      <java classname="org.drools.benchmark.waltz.WaltzBenchmark"
+      			fork="true">
+        <classpath>            
+          <pathelement path="target/classes" />            
+          <fileset dir="lib">
+            <include name="*.jar"/>
+          </fileset>
+        </classpath>
+        <arg value="waltz12.dat"/>
+        <jvmarg value="-Xmx1024M" />
+        <jvmarg value="-Xms1024M" />
+      </java>                          
+    </target>      
+    
     <target name="run-waltz50">                    
       <java classname="org.drools.benchmark.waltz.WaltzBenchmark"
       			fork="true">

Modified: labs/jbossrules/trunk/drools-jsr94/pom.xml
===================================================================
--- labs/jbossrules/trunk/drools-jsr94/pom.xml	2006-08-04 10:51:30 UTC (rev 5467)
+++ labs/jbossrules/trunk/drools-jsr94/pom.xml	2006-08-04 10:55:56 UTC (rev 5468)
@@ -53,33 +53,7 @@
   
   <build>
     <plugins>
-      <plugin>
-        <groupId>org.apache.maven.plugins</groupId>
-        <artifactId>maven-antrun-plugin</artifactId>
-        <executions>
-            <execution>
-                <id>package</id>
-                <phase>package</phase>
-                <configuration>
-                    <tasks>
-                        <echo message="Copying file ${project.build.directory}/${project.artifactId}-${project.version}.${project.packaging} to ../drools-ide/lib/${project.artifactId}.${project.packaging}" />
-                        <copy file="${project.build.directory}/${project.artifactId}-${project.version}.${project.packaging}" tofile="../drools-ide/lib/${project.artifactId}.${project.packaging}" />
-                    </tasks>
-                </configuration>
-                <goals>
-                    <goal>run</goal>
-                </goals>
-            </execution>
-        </executions>
-        <dependencies>
-	        <dependency>
-                <groupId>ant</groupId>
-                <artifactId>ant-antlr</artifactId>
-                <version>1.6.5</version>
-	        </dependency>
-        </dependencies>
-      </plugin>      
-      
+
 	    <plugin>
 	      <groupId>org.apache.maven.plugins</groupId>
 	      <artifactId>maven-surefire-plugin</artifactId>

Modified: labs/jbossrules/trunk/drools-server/.classpath
===================================================================
--- labs/jbossrules/trunk/drools-server/.classpath	2006-08-04 10:51:30 UTC (rev 5467)
+++ labs/jbossrules/trunk/drools-server/.classpath	2006-08-04 10:55:56 UTC (rev 5468)
@@ -1,18 +1,23 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<classpath>
-	<classpathentry kind="src" path="src/main/java"/>
-	<classpathentry kind="src" path="src/main/resources"/>
-	<classpathentry output="target/test-classes" kind="src" path="src/test/java"/>
-	<classpathentry output="target/test-classes" kind="src" path="src/test/resources"/>
-	<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
-	<classpathentry kind="var" path="M2_REPO/jboss/jboss-common/4.0.4/jboss-common-4.0.4.jar"/>
-	<classpathentry kind="var" path="M2_REPO/xerces/xercesImpl/2.6.2/xercesImpl-2.6.2.jar"/>
-	<classpathentry kind="var" path="M2_REPO/xml-apis/xml-apis/1.0.b2/xml-apis-1.0.b2.jar"/>
-	<classpathentry kind="var" path="M2_REPO/dom4j/dom4j/1.6/dom4j-1.6.jar"/>
-	<classpathentry kind="var" path="M2_REPO/junit/junit/3.8.1/junit-3.8.1.jar"/>
-	<classpathentry kind="var" path="M2_REPO/jboss/jboss-remoting/1.4.1/jboss-remoting-1.4.1.jar"/>
-	<classpathentry kind="var" path="M2_REPO/jboss/jboss-serialization/1.0.0.RC2/jboss-serialization-1.0.0.RC2.jar"/>
-	<classpathentry kind="var" path="M2_REPO/jboss/jboss-jmx/4.0.4/jboss-jmx-4.0.4.jar"/>
-	<classpathentry combineaccessrules="false" kind="src" path="/drools-core"/>
-	<classpathentry kind="output" path="target/classes"/>
-</classpath>
+<classpath>
+  <classpathentry kind="src" path="src/main/java"/>
+  <classpathentry kind="src" path="src/main/resources"/>
+  <classpathentry kind="src" path="src/test/java" output="target/test-classes"/>
+  <classpathentry kind="src" path="src/test/resources" output="target/test-classes"/>
+  <classpathentry kind="output" path="target/classes"/>
+  <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
+  <classpathentry kind="var" path="M2_REPO/dom4j/dom4j/1.6/dom4j-1.6.jar"/>
+  <classpathentry kind="var" path="M2_REPO/commons-collections/commons-collections/3.1/commons-collections-3.1.jar"/>
+  <classpathentry kind="var" path="M2_REPO/xml-apis/xml-apis/1.0.b2/xml-apis-1.0.b2.jar"/>
+  <classpathentry kind="var" path="M2_REPO/colt/colt/1.2.0/colt-1.2.0.jar"/>
+  <classpathentry kind="var" path="M2_REPO/junit/junit/3.8.1/junit-3.8.1.jar"/>
+  <classpathentry kind="var" path="M2_REPO/jboss/jboss-common/4.0.4/jboss-common-4.0.4.jar"/>
+  <classpathentry kind="var" path="M2_REPO/xstream/xstream/1.1.3/xstream-1.1.3.jar"/>
+  <classpathentry kind="var" path="M2_REPO/jung/jung/1.7.2/jung-1.7.2.jar"/>
+  <classpathentry kind="var" path="M2_REPO/jboss/jboss-jmx/4.0.4/jboss-jmx-4.0.4.jar"/>
+  <classpathentry kind="var" path="M2_REPO/org/drools/drools-core/3.0.2/drools-core-3.0.2.jar"/>
+  <classpathentry kind="var" path="M2_REPO/xpp3/xpp3/1.1.3.4.O/xpp3-1.1.3.4.O.jar"/>
+  <classpathentry kind="var" path="M2_REPO/concurrent/concurrent/1.3.4/concurrent-1.3.4.jar"/>
+  <classpathentry kind="var" path="M2_REPO/jboss/jboss-serialization/1.0.0.RC2/jboss-serialization-1.0.0.RC2.jar"/>
+  <classpathentry kind="var" path="M2_REPO/xerces/xercesImpl/2.6.2/xercesImpl-2.6.2.jar"/>
+  <classpathentry kind="var" path="M2_REPO/jboss/jboss-remoting/1.4.1_final/jboss-remoting-1.4.1_final.jar"/>
+</classpath>
\ No newline at end of file

Modified: labs/jbossrules/trunk/pom.xml
===================================================================
--- labs/jbossrules/trunk/pom.xml	2006-08-04 10:51:30 UTC (rev 5467)
+++ labs/jbossrules/trunk/pom.xml	2006-08-04 10:55:56 UTC (rev 5468)
@@ -221,7 +221,7 @@
   <modules>
     <module>drools-core</module>    
     <module>drools-compiler</module>       
-    <module>drools-server</module>     
+    <!--module>drools-server</module-->     
     <module>drools-jsr94</module> 
     <module>drools-decisiontables</module>
   </modules>




More information about the jboss-svn-commits mailing list