You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mahout.apache.org by ka...@apache.org on 2008/08/07 03:25:42 UTC

svn commit: r683463 - in /lucene/mahout/trunk: core/pom.xml pom.xml

Author: kalle
Date: Wed Aug  6 18:25:41 2008
New Revision: 683463

URL: http://svn.apache.org/viewvc?rev=683463&view=rev
Log:
Up to date Maven POMs

Modified:
    lucene/mahout/trunk/core/pom.xml
    lucene/mahout/trunk/pom.xml

Modified: lucene/mahout/trunk/core/pom.xml
URL: http://svn.apache.org/viewvc/lucene/mahout/trunk/core/pom.xml?rev=683463&r1=683462&r2=683463&view=diff
==============================================================================
--- lucene/mahout/trunk/core/pom.xml (original)
+++ lucene/mahout/trunk/core/pom.xml Wed Aug  6 18:25:41 2008
@@ -35,7 +35,9 @@
       <plugin>
         <artifactId>maven-install-plugin</artifactId>
 
-        <!-- Copy dependencies with no official Maven artifacts from libs to local Maven repositoty -->
+        <!-- Copy dependencies with no official Maven artifacts from libs to local Maven repository -->
+
+        <!-- hadoop -->
 
         <executions>
           <execution>
@@ -107,9 +109,76 @@
             </configuration>
           </execution>
 
+          <!-- watchmaker -->
+
+          <execution>
+            <id>create-watchmaker-framework-artifact</id>
+            <phase>validate</phase>
+            <goals>
+              <goal>install-file</goal>
+            </goals>
+            <configuration>
+              <file>lib/watchmaker-framework-${watchmaker.version}.jar</file>
+              <groupId>org.uncommons.watchmaker</groupId>
+              <artifactId>watchmaker-framework</artifactId>
+              <packaging>jar</packaging>
+              <version>${watchmaker.version}</version>
+              <generatePom>true</generatePom>
+              <createChecksum>true</createChecksum>
+            </configuration>
+          </execution>
+
+          <execution>
+            <id>create-watchmaker-swing-artifact</id>
+            <phase>validate</phase>
+            <goals>
+              <goal>install-file</goal>
+            </goals>
+            <configuration>
+              <file>lib/watchmaker-swing-${watchmaker.version}.jar</file>
+              <groupId>org.uncommons.watchmaker</groupId>
+              <artifactId>watchmaker-swing</artifactId>
+              <packaging>jar</packaging>
+              <version>${watchmaker.version}</version>
+              <generatePom>true</generatePom>
+              <createChecksum>true</createChecksum>
+            </configuration>
+          </execution>
+
+          <execution>
+            <id>create-uncommons-math-artifact</id>
+            <phase>validate</phase>
+            <goals>
+              <goal>install-file</goal>
+            </goals>
+            <configuration>
+              <file>lib/uncommons-maths-1.0.2.jar</file>
+              <groupId>org.uncommons.math</groupId>
+              <artifactId>uncommons-math</artifactId>
+              <packaging>jar</packaging>
+              <version>1.0.2</version>
+              <generatePom>true</generatePom>
+              <createChecksum>true</createChecksum>
+            </configuration>
+          </execution>
+
+
         </executions>
       </plugin>
 
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-surefire-plugin</artifactId>
+        <configuration>
+          <forkMode>pertest</forkMode>
+          <argLine>-Xms256m -Xmx512m</argLine>
+          <testFailureIgnore>false</testFailureIgnore>
+          <skip>false</skip>
+          <includes/>
+          <excludes/>
+        </configuration>
+      </plugin>
+
     </plugins>
   </build>
 
@@ -173,7 +242,21 @@
     <dependency>
       <groupId>log4j</groupId>
       <artifactId>log4j</artifactId>
-      <version>1.2.15</version>
+      <version>1.2.15</version>      
+      <exclusions>
+        <exclusion>
+          <groupId>com.sun.jdmk</groupId>
+          <artifactId>jmxtools</artifactId>
+        </exclusion>
+        <exclusion>
+          <groupId>com.sun.jmx</groupId>
+          <artifactId>jmxri</artifactId>
+        </exclusion>
+        <exclusion>
+          <groupId>javax.jms</groupId>
+          <artifactId>jms</artifactId> 
+        </exclusion>
+      </exclusions>
     </dependency>
 
     <dependency>
@@ -188,6 +271,32 @@
       <version>1.5.2</version>
     </dependency>
 
+
+    <dependency>
+      <groupId>org.uncommons.watchmaker</groupId>
+      <artifactId>watchmaker-framework</artifactId>
+      <version>${watchmaker.version}</version>
+    </dependency>
+
+    <dependency>
+      <groupId>org.uncommons.watchmaker</groupId>
+      <artifactId>watchmaker-swing</artifactId>
+      <version>${watchmaker.version}</version>
+    </dependency>
+
+    <dependency>
+      <groupId>org.uncommons.math</groupId>
+      <artifactId>uncommons-math</artifactId>
+      <version>1.0.2</version>
+    </dependency>
+
+    <dependency>
+      <groupId>com.thoughtworks.xstream</groupId>
+      <artifactId>xstream</artifactId>
+      <version>1.2.1</version>
+    </dependency>
+
+
     <dependency>
       <groupId>junit</groupId>
       <artifactId>junit</artifactId>

Modified: lucene/mahout/trunk/pom.xml
URL: http://svn.apache.org/viewvc/lucene/mahout/trunk/pom.xml?rev=683463&r1=683462&r2=683463&view=diff
==============================================================================
--- lucene/mahout/trunk/pom.xml (original)
+++ lucene/mahout/trunk/pom.xml Wed Aug  6 18:25:41 2008
@@ -17,6 +17,7 @@
     <kfs.version>0.1</kfs.version>
     <xmlenc.version>0.52</xmlenc.version>
     <jets3t.version>0.5.0</jets3t.version>
+    <watchmaker.version>0.4.3</watchmaker.version>
   </properties>
 
   <mailingLists>