[jboss-svn-commits] JBL Code SVN: r32594 - labs/jbossrules/trunk/drools-planner/drools-planner-examples.

jboss-svn-commits at lists.jboss.org jboss-svn-commits at lists.jboss.org
Sat Apr 17 05:38:26 EDT 2010


Author: ge0ffrey
Date: 2010-04-17 05:38:26 -0400 (Sat, 17 Apr 2010)
New Revision: 32594

Modified:
   labs/jbossrules/trunk/drools-planner/drools-planner-examples/pom.xml
Log:
revert previous commit on pom.xml and code style

Modified: labs/jbossrules/trunk/drools-planner/drools-planner-examples/pom.xml
===================================================================
--- labs/jbossrules/trunk/drools-planner/drools-planner-examples/pom.xml	2010-04-17 09:36:44 UTC (rev 32593)
+++ labs/jbossrules/trunk/drools-planner/drools-planner-examples/pom.xml	2010-04-17 09:38:26 UTC (rev 32594)
@@ -1,118 +1,110 @@
 <?xml version="1.0" encoding="utf-8"?>
 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
-xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
-   <modelVersion>4.0.0</modelVersion>
-   <parent>
+         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+  <modelVersion>4.0.0</modelVersion>
+  <parent>
+    <groupId>org.drools.planner</groupId>
+    <artifactId>drools-planner</artifactId>
+    <version>5.1.0.SNAPSHOT</version>
+  </parent>
+  <artifactId>drools-planner-examples</artifactId>
+  <packaging>jar</packaging>
+  <name>Drools :: Planner examples</name>
+  <description>
+    Drools Planner optimizes automated planning by combining metaheuristic search algorithms with rule
+    engine powered score calculation. This is the drools-planner-examples module which contains examples on how to use
+    Drools Planner.
+  </description>
+  <build>
+    <pluginManagement>
+      <plugins>
+        <plugin>
+          <groupId>org.apache.maven.plugins</groupId>
+          <artifactId>maven-jar-plugin</artifactId>
+          <configuration>
+            <archive>
+              <manifest>
+                <addClasspath>true</addClasspath>
+              </manifest>
+            </archive>
+          </configuration>
+        </plugin>
+        <plugin>
+          <groupId>org.codehaus.mojo</groupId>
+          <artifactId>exec-maven-plugin</artifactId>
+          <configuration>
+            <classpathScope>runtime</classpathScope>
+            <executable>${JAVA_HOME}/bin/java</executable>
+            <arguments>
+              <argument>-Xms256m</argument>
+              <argument>-Xmx512m</argument>
+              <argument>-server</argument>
+              <argument>-classpath</argument>
+              <classpath/>
+              <argument>${exec.mainClass}</argument>
+              <!-- Program arguments can be set at mvn exec:exec -->
+              <argument>${exec.programArgs}</argument>
+            </arguments>
+          </configuration>
+        </plugin>
+      </plugins>
+    </pluginManagement>
+  </build>
+  <properties>
+    <!-- default is a workaround for http://jira.codehaus.org/browse/MEXEC-35 -->
+    <exec.programArgs>default</exec.programArgs>
+  </properties>
+  <dependencies>
+
+    <!-- Internal dependencies -->
+    <dependency>
       <groupId>org.drools.planner</groupId>
-      <artifactId>drools-planner</artifactId>
-      <version>5.1.0.SNAPSHOT</version>
-   </parent>
-   <artifactId>drools-planner-examples</artifactId>
-   <packaging>jar</packaging>
-   <name>Drools :: Planner examples</name>
-   <description>Drools Planner optimizes automated planning by combining metaheuristic search algorithms with rule
-   engine powered score calculation. This is the drools-planner-examples module which contains examples on how to use
-   Drools Planner.</description>
-   <build>
-      <pluginManagement>
-         <plugins>
-            <plugin>
-               <groupId>org.apache.maven.plugins</groupId>
-               <artifactId>maven-jar-plugin</artifactId>
-               <configuration>
-                  <archive>
-                     <manifest>
-                        <addClasspath>true</addClasspath>
-                     </manifest>
-                  </archive>
-               </configuration>
-            </plugin>
-            <plugin>
-               <groupId>org.codehaus.mojo</groupId>
-               <artifactId>exec-maven-plugin</artifactId>
-               <configuration>
-                  <classpathScope>runtime</classpathScope>
-                  <executable>${JAVA_HOME}/bin/java</executable>
-                  <arguments>
-                     <argument>-Xms256m</argument>
-                     <argument>-Xmx512m</argument>
-                     <argument>-server</argument>
-                     <argument>-classpath</argument>
-                     <classpath />
-                     <argument>${exec.mainClass}</argument>
-                     <!-- Program arguments can be set at mvn exec:exec -->
-                     <argument>${exec.programArgs}</argument>
-                  </arguments>
-               </configuration>
-            </plugin>
-         </plugins>
-      </pluginManagement>
-   </build>
-   <properties>
-      <!-- default is a workaround for http://jira.codehaus.org/browse/MEXEC-35 -->
-      <exec.programArgs>default</exec.programArgs>
-   </properties>
-   <dependencies>
-      <dependency>
-        <groupId>org.drools</groupId>
-        <artifactId>drools-core</artifactId>
-        <version>5.1.0.M1</version>
-      </dependency>
-      <dependency>
-        <groupId>org.drools</groupId>
-        <artifactId>drools-compiler</artifactId>
-        <version>5.1.0.M1</version>
-      </dependency>
+      <artifactId>drools-planner-core</artifactId>
+    </dependency>
+    <!-- External dependencies -->
+    <!-- Commons -->
+    <dependency>
+      <groupId>commons-lang</groupId>
+      <artifactId>commons-lang</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>commons-lang</groupId>
+      <artifactId>commons-lang</artifactId>
+    </dependency>
+    <!-- Logging -->
+    <dependency>
+      <groupId>org.slf4j</groupId>
+      <artifactId>slf4j-api</artifactId>
+      <version>1.5.10</version>
+    </dependency>
+    <dependency>
+      <groupId>org.slf4j</groupId>
+      <artifactId>slf4j-log4j12</artifactId>
+      <version>1.5.3</version>
+      <scope>runtime</scope>
+    </dependency>
+    <dependency>
+      <groupId>log4j</groupId>
+      <artifactId>log4j</artifactId>
+      <scope>compile</scope>
+      <!-- Because of direct use for the namespaced logging config -->
+    </dependency>
+    <!-- Xstream -->
+    <dependency>
+      <groupId>com.thoughtworks.xstream</groupId>
+      <artifactId>xstream</artifactId>
+    </dependency>
+    <!-- Benchmarker statistic graphs -->
+    <dependency>
+      <groupId>jfree</groupId>
+      <artifactId>jfreechart</artifactId>
+    </dependency>
 
-      <!-- Internal dependencies -->
-      <dependency>
-         <groupId>org.drools.planner</groupId>
-         <artifactId>drools-planner-core</artifactId>
-      </dependency>
-      <!-- External dependencies -->
-      <!-- Commons -->
-      <dependency>
-         <groupId>commons-lang</groupId>
-         <artifactId>commons-lang</artifactId>
-      </dependency>
-      <dependency>
-         <groupId>commons-lang</groupId>
-         <artifactId>commons-lang</artifactId>
-      </dependency>
-      <!-- Logging -->
-      <dependency>
-         <groupId>org.slf4j</groupId>
-         <artifactId>slf4j-api</artifactId>
-         <version>1.5.10</version>
-      </dependency>
-      <dependency>
-         <groupId>org.slf4j</groupId>
-         <artifactId>slf4j-log4j12</artifactId>
-         <version>1.5.3</version>
-         <scope>runtime</scope>
-      </dependency>
-      <dependency>
-         <groupId>log4j</groupId>
-         <artifactId>log4j</artifactId>
-         <scope>compile</scope>
-         <!-- Because of direct use for the namespaced logging config -->
-      </dependency>
-      <!-- Xstream -->
-      <dependency>
-         <groupId>com.thoughtworks.xstream</groupId>
-         <artifactId>xstream</artifactId>
-      </dependency>
-      <!-- Benchmarker statistic graphs -->
-      <dependency>
-         <groupId>jfree</groupId>
-         <artifactId>jfreechart</artifactId>
-      </dependency>
-
-      <!-- Converters -->
-      <dependency>
-        <groupId>org.jdom</groupId>
-        <artifactId>jdom</artifactId>
-        <version>1.1</version>
-      </dependency>
-   </dependencies>
+    <!-- Converters -->
+    <dependency>
+      <groupId>org.jdom</groupId>
+      <artifactId>jdom</artifactId>
+      <version>1.1</version>
+    </dependency>
+  </dependencies>
 </project>



More information about the jboss-svn-commits mailing list