You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by mm...@apache.org on 2006/01/03 12:54:23 UTC

svn commit: r365614 - /myfaces/build/trunk/pom.xml

Author: mmarinschek
Date: Tue Jan  3 03:54:18 2006
New Revision: 365614

URL: http://svn.apache.org/viewcvs?rev=365614&view=rev
Log:
committed pom-patch by bernd

Modified:
    myfaces/build/trunk/pom.xml

Modified: myfaces/build/trunk/pom.xml
URL: http://svn.apache.org/viewcvs/myfaces/build/trunk/pom.xml?rev=365614&r1=365613&r2=365614&view=diff
==============================================================================
--- myfaces/build/trunk/pom.xml (original)
+++ myfaces/build/trunk/pom.xml Tue Jan  3 03:54:18 2006
@@ -1,5 +1,5 @@
 <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">
+         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
 
   <modelVersion>4.0.0</modelVersion>
   <groupId>org.apache.myfaces</groupId>
@@ -23,22 +23,30 @@
     <module>../examples</module>
   </modules>
 
-	<build>
-	  <plugins>
-			<plugin>
-				<artifactId>maven-assembly-plugin</artifactId>
-				<version>2.0-beta-1</version>
-				<configuration>
-					<descriptor>src/main/assembly/dep.xml</descriptor>
-					<finalName>myfaces-1.1.2</finalName>
-					<outputDirectory>target</outputDirectory>
-					<workDirectory>target/assembly/work</workDirectory>
-				</configuration>
-		  </plugin>
-		</plugins>
-	</build>
+  <build>
+    <defaultGoal>install</defaultGoal>
+    <plugins>
+      <plugin>
+        <artifactId>maven-assembly-plugin</artifactId>
+        <version>2.0-beta-1</version>
+        <configuration>
+          <descriptor>src/main/assembly/dep.xml</descriptor>
+          <finalName>myfaces-${version}</finalName>
+          <outputDirectory>target</outputDirectory>
+          <workDirectory>target/assembly/work</workDirectory>
+        </configuration>
+      </plugin>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-surefire-plugin</artifactId>
+        <configuration>
+          <skip>true</skip>
+        </configuration>
+      </plugin>
+    </plugins>
+  </build>
 
-   <mailingLists>
+  <mailingLists>
     <mailingList>
       <name>Myfaces User List</name>
       <subscribe>users-subscribe@myfaces.apache.org</subscribe>
@@ -47,14 +55,14 @@
       <archive>http://mail-archives.apache.org/mod_mbox/myfaces-users</archive>
     </mailingList>
     <mailingList>
-      <name>Myfaces Developer list</name>
+      <name>Myfaces Developer List</name>
       <subscribe>dev-subscribe@myfaces.apache.org</subscribe>
       <unsubscribe>dev-unsubscribe@myfaces.apache.org</unsubscribe>
       <post>dev@myfaces.apache.org</post>
       <archive>http://mail-archives.apache.org/mod_mbox/myfaces-dev</archive>
     </mailingList>
     <mailingList>
-      <name>Myfaces Commits list</name>
+      <name>Myfaces Commits List</name>
       <subscribe>commits-subscribe@myfaces.apache.org</subscribe>
       <unsubscribe>commits-unsubscribe@myfaces.apache.org</unsubscribe>
       <post>do not post</post>
@@ -313,24 +321,24 @@
   </licenses>
 
   <reporting>
-	  <plugins>
-	    <plugin>
-	      <inherited>false</inherited>
-	      <groupId>org.apache.maven.plugins</groupId>
-	      <artifactId>maven-project-info-reports-plugin</artifactId>
-	      <reportSets>
-					<reportSet>
-					  <reports>
-	                       <report>project-team</report>
-						   <report>mailing-list</report>
-                           <report>issue-tracking</report>
-                           <report>license</report>
-                           <report>scm</report>
-					  </reports>
-					</reportSet>
-	      </reportSets>
-	    </plugin>
-	  </plugins>
+    <plugins>
+      <plugin>
+        <inherited>false</inherited>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-project-info-reports-plugin</artifactId>
+        <reportSets>
+          <reportSet>
+            <reports>
+              <report>project-team</report>
+              <report>mailing-list</report>
+              <report>issue-tracking</report>
+              <report>license</report>
+              <report>scm</report>
+            </reports>
+          </reportSet>
+        </reportSets>
+      </plugin>
+    </plugins>
   </reporting>
 
   <scm>
@@ -340,8 +348,18 @@
   </scm>
 
   <organization>
-     <name>Apache Software Foundation</name>
-     <url>http://www.apache.org/</url>
-   </organization>
+    <name>Apache Software Foundation</name>
+    <url>http://www.apache.org/</url>
+  </organization>
+
+  <pluginRepositories>
+    <pluginRepository>
+      <snapshots>
+        <enabled>true</enabled>
+      </snapshots>
+      <id>atanion</id>
+      <url>http://www.atanion.com/maven2</url>
+    </pluginRepository>
+  </pluginRepositories>
 
-</project>
\ No newline at end of file
+</project>