You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mahout.apache.org by bi...@apache.org on 2010/04/07 01:08:23 UTC

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

Author: bimargulies
Date: Tue Apr  6 23:08:22 2010
New Revision: 931365

URL: http://svn.apache.org/viewvc?rev=931365&view=rev
Log:
Disconnect codegen from the parent structure, prepare to release.

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

Modified: lucene/mahout/trunk/collections-codegen-plugin/pom.xml
URL: http://svn.apache.org/viewvc/lucene/mahout/trunk/collections-codegen-plugin/pom.xml?rev=931365&r1=931364&r2=931365&view=diff
==============================================================================
--- lucene/mahout/trunk/collections-codegen-plugin/pom.xml (original)
+++ lucene/mahout/trunk/collections-codegen-plugin/pom.xml Tue Apr  6 23:08:22 2010
@@ -1,18 +1,36 @@
 <?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.mahout</groupId>
-    <artifactId>mahout</artifactId>
-    <version>0.4-SNAPSHOT</version>
-    <relativePath>../pom.xml</relativePath>
-  </parent>
+    <parent>
+        <groupId>org.apache</groupId>
+        <artifactId>apache</artifactId>
+        <version>6</version>
+    </parent>
   <groupId>org.apache.mahout</groupId>
   <artifactId>mahout-collection-codegen-plugin</artifactId>
-  <version>0.4-SNAPSHOT</version>
+  <version>1.0-SNAPSHOT</version>
   <packaging>maven-plugin</packaging>
   <name>Maven Mojo to generate code for collections</name>
   <url>http://lucene.apache.org/mahout/</url>
+  <build>
+    <defaultGoal>install</defaultGoal>
+    <pluginManagement>
+      <plugins>
+        <plugin>
+          <groupId>org.apache.maven.plugins</groupId>
+          <artifactId>maven-release-plugin</artifactId>
+          <version>2.0-beta-9</version>
+          <configuration>
+            <useReleaseProfile>true</useReleaseProfile>
+            <releaseProfiles>release</releaseProfiles>
+            <remoteTagging>true</remoteTagging>
+            <preparationGoals>clean install</preparationGoals>
+            <goals>deploy</goals>
+          </configuration>
+        </plugin>
+      </plugins>
+    </pluginManagement>
+  </build>
   <dependencies>
     <dependency>
       <groupId>org.apache.maven</groupId>