You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mahout.apache.org by td...@apache.org on 2013/06/01 22:19:53 UTC

svn commit: r1488588 - /mahout/collections-codegen-plugin/trunk/pom.xml

Author: tdunning
Date: Sat Jun  1 20:19:52 2013
New Revision: 1488588

URL: http://svn.apache.org/r1488588
Log:
MAHOUT-1210 - Fix paths in POM

Modified:
    mahout/collections-codegen-plugin/trunk/pom.xml

Modified: mahout/collections-codegen-plugin/trunk/pom.xml
URL: http://svn.apache.org/viewvc/mahout/collections-codegen-plugin/trunk/pom.xml?rev=1488588&r1=1488587&r2=1488588&view=diff
==============================================================================
--- mahout/collections-codegen-plugin/trunk/pom.xml (original)
+++ mahout/collections-codegen-plugin/trunk/pom.xml Sat Jun  1 20:19:52 2013
@@ -1,21 +1,21 @@
 <?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/xsd/maven-4.0.0.xsd">
   <modelVersion>4.0.0</modelVersion>
-    <parent>
-        <groupId>org.apache</groupId>
-        <artifactId>apache</artifactId>
-        <version>6</version>
-    </parent>
+  <parent>
+    <groupId>org.apache</groupId>
+    <artifactId>apache</artifactId>
+    <version>9</version>
+  </parent>
   <groupId>org.apache.mahout</groupId>
   <artifactId>mahout-collection-codegen-plugin</artifactId>
   <version>1.1-SNAPSHOT</version>
   <packaging>maven-plugin</packaging>
   <name>Maven Mojo to generate code for collections</name>
-  <url>http://lucene.apache.org/mahout/</url>
+  <url>http://mahout.apache.org</url>
   <scm>
-    <connection>scm:svn:https://svn.apache.org/repos/asf/lucene/mahout/trunk/collections-codegen-plugin</connection>
-    <developerConnection>scm:svn:https://svn.apache.org/repos/asf/lucene/mahout/trunk/collections-codegen-plugin</developerConnection>
-    <url>http://svn.apache.org/viewvc/maven/pom/tags/apache-6/mahout-collection-codegen-plugin</url>
+    <connection>scm:svn:https://svn.apache.org/repos/asf/mahout/collections-codegen-plugin/trunk</connection>
+    <developerConnection>scm:svn:https://svn.apache.org/repos/asf/mahout/collections-codegen-plugin/trunk</developerConnection>
+    <url>https://svn.apache.org/viewvc/mahout/collections-codegen-plugin/trunk/</url>
   </scm>
 
   <build>
@@ -27,7 +27,7 @@
           <artifactId>maven-release-plugin</artifactId>
           <version>2.0</version>
           <configuration>
-            <tagBase>https://svn.apache.org/repos/asf/lucene/mahout/tags</tagBase>
+            <tagBase>https://svn.apache.org/repos/asf/mahout/collections-codegen-plugin/tags</tagBase>
             <useReleaseProfile>true</useReleaseProfile>
             <releaseProfiles>release,mahout_release</releaseProfiles>
             <remoteTagging>true</remoteTagging>
@@ -35,21 +35,19 @@
             <goals>deploy</goals>
           </configuration>
         </plugin>
+        <plugin>
+          <groupId>org.apache.maven.plugins</groupId>
+          <artifactId>maven-compiler-plugin</artifactId>
+          <version>3.0</version>
+          <configuration>
+            <encoding>UTF-8</encoding>
+            <source>1.6</source>
+            <target>1.6</target>
+            <optimize>true</optimize>
+          </configuration>
+        </plugin>
       </plugins>
     </pluginManagement>
-    <plugins>
-      <plugin>
-        <groupId>org.apache.maven.plugins</groupId>
-        <artifactId>maven-compiler-plugin</artifactId>
-        <version>2.0.2</version>
-        <configuration>
-          <encoding>UTF-8</encoding>
-          <source>1.6</source>
-          <target>1.6</target>
-          <optimize>true</optimize>
-        </configuration>
-      </plugin>
-    </plugins>
   </build>
   <dependencies>
     <dependency>
@@ -65,14 +63,14 @@
       <version>2.1.0</version>
     </dependency>
     <dependency>
-    	<groupId>org.apache.maven.shared</groupId>
-	    <artifactId>file-management</artifactId>
-	    <version>1.2.1</version>
-	</dependency>
-   <dependency>
-    <groupId>velocity</groupId>
-    <artifactId>velocity</artifactId>
-    <version>1.5</version>
+      <groupId>org.apache.maven.shared</groupId>
+      <artifactId>file-management</artifactId>
+      <version>1.2.1</version>
+    </dependency>
+    <dependency>
+      <groupId>velocity</groupId>
+      <artifactId>velocity</artifactId>
+      <version>1.5</version>
     </dependency>
   </dependencies>
 </project>