You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by ba...@apache.org on 2006/06/12 02:12:58 UTC

svn commit: r413553 - in /myfaces/maven/trunk/jsfcomponents-archetype/src/main/resources/archetype-resources: core/pom.xml examples/pom.xml pom.xml

Author: baranda
Date: Sun Jun 11 17:12:58 2006
New Revision: 413553

URL: http://svn.apache.org/viewvc?rev=413553&view=rev
Log:
Fixed myfaces api and core dependencies to 1.1.3 and added the myfaces maven repository

Modified:
    myfaces/maven/trunk/jsfcomponents-archetype/src/main/resources/archetype-resources/core/pom.xml
    myfaces/maven/trunk/jsfcomponents-archetype/src/main/resources/archetype-resources/examples/pom.xml
    myfaces/maven/trunk/jsfcomponents-archetype/src/main/resources/archetype-resources/pom.xml

Modified: myfaces/maven/trunk/jsfcomponents-archetype/src/main/resources/archetype-resources/core/pom.xml
URL: http://svn.apache.org/viewvc/myfaces/maven/trunk/jsfcomponents-archetype/src/main/resources/archetype-resources/core/pom.xml?rev=413553&r1=413552&r2=413553&view=diff
==============================================================================
--- myfaces/maven/trunk/jsfcomponents-archetype/src/main/resources/archetype-resources/core/pom.xml (original)
+++ myfaces/maven/trunk/jsfcomponents-archetype/src/main/resources/archetype-resources/core/pom.xml Sun Jun 11 17:12:58 2006
@@ -60,7 +60,7 @@
         <dependency>
             <groupId>org.apache.myfaces.core</groupId>
             <artifactId>myfaces-api</artifactId>
-            <version>1.1.4-SNAPSHOT</version>
+            <version>1.1.3</version>
             <scope>provided</scope>
         </dependency>
 

Modified: myfaces/maven/trunk/jsfcomponents-archetype/src/main/resources/archetype-resources/examples/pom.xml
URL: http://svn.apache.org/viewvc/myfaces/maven/trunk/jsfcomponents-archetype/src/main/resources/archetype-resources/examples/pom.xml?rev=413553&r1=413552&r2=413553&view=diff
==============================================================================
--- myfaces/maven/trunk/jsfcomponents-archetype/src/main/resources/archetype-resources/examples/pom.xml (original)
+++ myfaces/maven/trunk/jsfcomponents-archetype/src/main/resources/archetype-resources/examples/pom.xml Sun Jun 11 17:12:58 2006
@@ -42,12 +42,12 @@
                 <dependency>
                     <groupId>org.apache.myfaces.core</groupId>
                     <artifactId>myfaces-api</artifactId>
-                    <version>1.1.4-SNAPSHOT</version>
+                    <version>1.1.3</version>
                 </dependency>
                 <dependency>
                     <groupId>org.apache.myfaces.core</groupId>
                     <artifactId>myfaces-impl</artifactId>
-                    <version>1.1.4-SNAPSHOT</version>
+                    <version>1.1.3</version>
                     <!-- Sandbox examples must only have runtime dependency to myfaces-impl
                  so that it will be automatically added to war. But there must not be
                  any compile dependency on impl so that is is always possible to use

Modified: myfaces/maven/trunk/jsfcomponents-archetype/src/main/resources/archetype-resources/pom.xml
URL: http://svn.apache.org/viewvc/myfaces/maven/trunk/jsfcomponents-archetype/src/main/resources/archetype-resources/pom.xml?rev=413553&r1=413552&r2=413553&view=diff
==============================================================================
--- myfaces/maven/trunk/jsfcomponents-archetype/src/main/resources/archetype-resources/pom.xml (original)
+++ myfaces/maven/trunk/jsfcomponents-archetype/src/main/resources/archetype-resources/pom.xml Sun Jun 11 17:12:58 2006
@@ -9,12 +9,19 @@
   <version>${version}</version>
 
   <description>
-    This is the project for my funky components. This will build both the core and the examples
+      This is the project for my funky components. This will build both the core and the examples
   </description>
 
-  <modules>
-    <module>core</module>
-    <module>examples</module>
-  </modules>
+    <modules>
+        <module>core</module>
+        <module>examples</module>
+    </modules>
+
+    <repositories>
+        <repository>
+            <id>Myfaces repository</id>
+            <url>http://myfaces.zones.apache.org/dist/maven-repository</url>
+        </repository>
+    </repositories>
 
 </project>