You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by mf...@apache.org on 2010/06/24 20:15:47 UTC

svn commit: r957661 - /myfaces/portlet-bridge/core/trunk/pom.xml

Author: mfreedman
Date: Thu Jun 24 18:15:47 2010
New Revision: 957661

URL: http://svn.apache.org/viewvc?rev=957661&view=rev
Log:
Scott neglected to add the <layout>legacy</layout> tag when adding the java maven 1 repository to the pom. This fixes that.

Modified:
    myfaces/portlet-bridge/core/trunk/pom.xml

Modified: myfaces/portlet-bridge/core/trunk/pom.xml
URL: http://svn.apache.org/viewvc/myfaces/portlet-bridge/core/trunk/pom.xml?rev=957661&r1=957660&r2=957661&view=diff
==============================================================================
--- myfaces/portlet-bridge/core/trunk/pom.xml (original)
+++ myfaces/portlet-bridge/core/trunk/pom.xml Thu Jun 24 18:15:47 2010
@@ -1,340 +1,341 @@
-<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">
-  <modelVersion>4.0.0</modelVersion>
-  
-  <groupId>org.apache.myfaces.portlet-bridge</groupId>
-  <artifactId>portlet-bridge</artifactId>
-  <packaging>pom</packaging>
-  <name>MyFaces Portlet Bridge</name>
-  <version>1.0.1-SNAPSHOT</version>	 
-  <inceptionYear>2007</inceptionYear>  
-  <description>
-  Portlet Bridge for JavaServer Faces is a subproject of Apache MyFaces which provides an
-  implementation of the standardized Portlet Bridge as outlined by JSR-301 and subsequent
-  specifications.  This project will work with MyFaces as well as the R.I. and intended to
-  be used to develop the Portlet Bridge Reference Implementation.
-  </description>
-  
-  <url>http://myfaces.apache.org/portlet-bridge/1.0</url>
-  
-  <parent>
-    <artifactId>portlet-bridge-master-pom</artifactId>
-    <groupId>org.apache.myfaces.portlet-bridge</groupId>
-    <version>3</version>
-  </parent>
-
-  <properties>
-    <latestRelease>1.0.0-beta-2</latestRelease>
-    <portletSpecVersion>1.0</portletSpecVersion>
-    <jsfSpecVersion>1.2</jsfSpecVersion>
-    <specVersion>1.0</specVersion>
-    <jsrNumber>301</jsrNumber>
-    <specLink>http://www.jcp.org/en/jsr/detail?id=${jsrNumber}</specLink>
-    <specName>Portlet ${portletSpecVersion} Bridge for JavaServer Faces ${jsfSpecVersion}</specName>
-    <projectSeries>1.x</projectSeries>
-    <jetty-plugin.version>6.1.16</jetty-plugin.version>
-    <pluto-distribution.version>1.1.6</pluto-distribution.version>
-    <pluto-embedded.version>1.0.1</pluto-embedded.version>
-    <mojarra.version>1.2_03</mojarra.version>
-    <myfaces.version>1.2.2</myfaces.version>
-    <facelets.version>1.1.14</facelets.version>
-    <blueprints.version>5</blueprints.version>
-  </properties>
-  
-  <!-- issueManagement is in parent -->
-  <!-- ciManagement are in parent -->
-  <!-- mailingLists are in parent -->
-  <!-- developers are in parent -->
-  <!-- contributors are in parent -->
-
-  <scm>
-    <connection>scm:svn:http://svn.apache.org/repos/asf/myfaces/portlet-bridge/core/trunk/</connection>
-    <developerConnection>scm:svn:https://svn.apache.org/repos/asf/myfaces/portlet-bridge/core/trunk/</developerConnection>
-    <url>http://svn.apache.org/viewcvs.cgi/myfaces/portlet-bridge/core/trunk/</url>
-  </scm>
-
-  <distributionManagement>
-    <site>
-      <id>apache-site</id>
-      <url>scpexe://minotaur.apache.org/www/myfaces.apache.org/portlet-bridge/1.0</url>
-    </site>
-  </distributionManagement>
-  
-  <!-- This is needed for JSF 1.2 -->  
-  <repositories>
-    <repository>
-      <id>maven1-repository.dev.java.net</id>
-      <name>Java.net Repository for Maven</name>
-      <url>http://download.java.net/maven/1</url>
-      <releases>
-        <enabled>true</enabled>
-      </releases>
-      <snapshots>
-        <enabled>false</enabled>
-      </snapshots>
-    </repository>
-  </repositories>
-
-  <modules>
-    <module>api</module>
-    <module>impl</module>
-    <module>examples</module>
-  </modules>
-
-  <!-- Versions and scope of dependencies -->
-  <dependencyManagement>
-    <dependencies>
-
-        <!-- Blueprints-->
-        <dependency>
-          <groupId>com.sun.javaee.blueprints</groupId>
-          <artifactId>bp-ui-simple</artifactId>
-          <version>5</version>
-        </dependency>
-
-	  <!-- Facelets -->
-        <dependency>
-          <groupId>com.sun.facelets</groupId>
-          <artifactId>jsf-facelets</artifactId>
-          <version>1.1.14</version>
-        </dependency>
-
-        <!-- Portlet API -->
-        <dependency>
-          <groupId>portlet-api</groupId>
-          <artifactId>portlet-api</artifactId>
-          <version>1.0</version>
-          <scope>provided</scope>
-        </dependency>
-
-        <!-- Servlet API -->
-        <dependency>
-          <groupId>javax.servlet</groupId>
-          <artifactId>servlet-api</artifactId>
-          <version>2.4</version>
-          <scope>provided</scope>
-        </dependency>
-
-        <!-- JSP API -->
-        <dependency>
-          <groupId>javax.servlet.jsp</groupId>
-          <artifactId>jsp-api</artifactId>
-          <version>2.1</version>
-          <scope>provided</scope>
-        </dependency>
-
-        <!-- J2EE Annotations -->
-        <dependency>
-          <groupId>org.apache.geronimo.specs</groupId>
-          <artifactId>geronimo-annotation_1.0_spec</artifactId>
-          <version>1.0</version>
-          <scope>provided</scope>
-        </dependency>
-
-        <!-- MyFaces API -->
-        <dependency>
-          <groupId>org.apache.myfaces.core</groupId>
-          <artifactId>myfaces-api</artifactId>
-          <version>${myfaces.version}</version>
-	    <!-- <scope>provided</scope> -->
-        </dependency>
-        
-        <dependency>
-          <groupId>org.apache.myfaces.core</groupId>
-          <artifactId>myfaces-impl</artifactId>
-          <version>${myfaces.version}</version>
-	    <!-- <scope>provided</scope> -->
-        </dependency>
-        
-       <!-- JSF R.I. API -->
-        <dependency>
-          <groupId>javax.faces</groupId>
-          <artifactId>jsf-api</artifactId>
-          <!-- As per spec, 1.2_03 is the minimum R.I. for version 1.0 bridge -->
-          <version>${mojarra.version}</version>
-          <scope>provided</scope>
-        </dependency>
-
-        <dependency>
-          <groupId>javax.faces</groupId>
-          <artifactId>jsf-impl</artifactId>
-          <!-- As per spec, 1.2_03 is the minimum R.I. for version 1.0 bridge -->
-          <version>${mojarra.version}</version>
-          <scope>provided</scope>
-        </dependency>
-                
-        <!-- Jetty Pluto Plugin -->        
-        <dependency>
-          <groupId>com.bekk.boss</groupId>
-          <artifactId>maven-jetty-pluto-embedded</artifactId>
-          <version>${pluto-embedded.version}</version>
-        </dependency>
-      
-        <dependency>
-          <groupId>javax.activation</groupId>
-          <artifactId>activation</artifactId>
-          <version>1.1</version>
-        </dependency>
-
-        <!-- JSF Portlet Bridge API -->
-        <dependency>
-          <groupId>${pom.groupId}</groupId>
-          <artifactId>portlet-bridge-api</artifactId>
-          <version>${project.version}</version>
-        </dependency>
-
-        <!-- JSF Portlet Bridge Impl -->
-        <dependency>
-          <groupId>${pom.groupId}</groupId>
-          <artifactId>portlet-bridge-impl</artifactId>
-          <version>${project.version}</version>
-        </dependency>
-      </dependencies>
-  </dependencyManagement>
-  
-  <build>
-    <plugins>
-      <plugin>
-        <artifactId>maven-remote-resources-plugin</artifactId>
-        <version>1.0-alpha-6</version>
-        <executions>
-          <execution>
-            <goals>
-              <goal>process</goal>
-            </goals>
-            <configuration>
-              <resourceBundles>
-                <resourceBundle>org.apache:apache-jar-resource-bundle:1.3</resourceBundle>
-              </resourceBundles>
-              <properties>
-                <addLicense>true</addLicense>
-              </properties>
-            </configuration>
-          </execution>
-        </executions>
-      </plugin>
-      
-      <!-- Generates the Javadocs for the Website.  Wagon will transport it -->
-      <plugin>
-        <artifactId>maven-javadoc-plugin</artifactId>
-        <configuration>
-          <aggregate>false</aggregate>
-          <linksource>true</linksource>
-          <breakiterator>true</breakiterator>
-          <quiet>true</quiet>
-          <verbose>false</verbose>
-          <source>${jdk.version}</source>
-          <charset>UTF-8</charset>
-          <links>
-            <link>http://java.sun.com/j2se/1.5.0/docs/api</link>
-            <link>http://java.sun.com/javaee/javaserverfaces/1.2_MR1/docs/api</link>
-            <link>http://portals.apache.org/pluto/portlet-1.0-apidocs/</link>
-          </links>
-        </configuration>
-      </plugin>
-
-      <plugin>
-        <artifactId>maven-jar-plugin</artifactId>
-        <configuration>
-          <archive>
-            <manifestEntries>
-              <Specification-Title>${specName}</Specification-Title>
-              <Specification-Version>${specVersion}</Specification-Version>
-              <Specification-Vendor>Java Community (JSR-301)</Specification-Vendor>
-            </manifestEntries>
-          </archive>
-        </configuration>
-      </plugin>
-    </plugins>
-    <pluginManagement>
-      <plugins>
-        <plugin>
-          <groupId>org.mortbay.jetty</groupId>
-          <artifactId>maven-jetty-plugin</artifactId>
-          <version>${jetty-plugin.version}</version>
-        </plugin>
-        
-        <plugin>
-          <groupId>org.apache.pluto</groupId>
-          <artifactId>maven-pluto-plugin</artifactId>
-          <version>${pluto-distribution.version}</version>
-          <executions>  
-            <execution>  
-              <phase>generate-resources</phase>  
-              <goals>  
-                <goal>assemble</goal>  
-              </goals>  
-            </execution>  
-          </executions>  
-        </plugin>  
-      </plugins>
-    </pluginManagement>
-  </build>
-  
-  <profiles>  
-    <!-- This profile is invoked by -DprepareRelease=true.  This allows mvn release:prepare to
-         run successfully on the assembly projects. -->
-    <profile>
-      <id>prepare-release</id>
-      <activation>
-        <property>
-          <name>prepareRelease</name>
-        </property>
-      </activation>
-      <modules>
-        <module>assembly</module>
-      </modules>
-      <build>
-        <plugins>
-          <plugin>
-            <artifactId>maven-release-plugin</artifactId>
-            <configuration>
-              <arguments>-DprepareRelease</arguments>
-            </configuration>
-          </plugin>
-        </plugins>
-      </build>
-    </profile>
-    
-    <profile>
-      <id>perform-release</id>
-      <activation>
-        <property>
-          <name>performRelease</name>
-          <value>true</value>
-        </property>
-      </activation>
-      <modules>
-        <module>assembly</module>
-      </modules>
-      <build>
-        <plugins>
-          <plugin>
-            <artifactId>maven-javadoc-plugin</artifactId>
-            <version>2.2</version>
-            <executions>
-              <execution>
-                <id>attach-javadocs</id>
-                <goals>
-                  <goal>jar</goal>
-                </goals>
-              </execution>
-            </executions>
-          </plugin>
-          <plugin>
-            <groupId>org.apache.maven.plugins</groupId>
-            <artifactId>maven-scm-plugin</artifactId>
-            <executions>
-              <execution>
-                <phase>validate</phase>
-                <id>getting-scm.revision</id>
-                <goals>
-                  <goal>update</goal>
-                </goals>
-              </execution>
-            </executions>
-          </plugin>
-        </plugins>
-      </build>
-    </profile>
-  </profiles>      
-</project>
+<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">
+  <modelVersion>4.0.0</modelVersion>
+  
+  <groupId>org.apache.myfaces.portlet-bridge</groupId>
+  <artifactId>portlet-bridge</artifactId>
+  <packaging>pom</packaging>
+  <name>MyFaces Portlet Bridge</name>
+  <version>1.0.1-SNAPSHOT</version>	 
+  <inceptionYear>2007</inceptionYear>  
+  <description>
+  Portlet Bridge for JavaServer Faces is a subproject of Apache MyFaces which provides an
+  implementation of the standardized Portlet Bridge as outlined by JSR-301 and subsequent
+  specifications.  This project will work with MyFaces as well as the R.I. and intended to
+  be used to develop the Portlet Bridge Reference Implementation.
+  </description>
+  
+  <url>http://myfaces.apache.org/portlet-bridge/1.0</url>
+  
+  <parent>
+    <artifactId>portlet-bridge-master-pom</artifactId>
+    <groupId>org.apache.myfaces.portlet-bridge</groupId>
+    <version>3</version>
+  </parent>
+
+  <properties>
+    <latestRelease>1.0.0-beta-2</latestRelease>
+    <portletSpecVersion>1.0</portletSpecVersion>
+    <jsfSpecVersion>1.2</jsfSpecVersion>
+    <specVersion>1.0</specVersion>
+    <jsrNumber>301</jsrNumber>
+    <specLink>http://www.jcp.org/en/jsr/detail?id=${jsrNumber}</specLink>
+    <specName>Portlet ${portletSpecVersion} Bridge for JavaServer Faces ${jsfSpecVersion}</specName>
+    <projectSeries>1.x</projectSeries>
+    <jetty-plugin.version>6.1.16</jetty-plugin.version>
+    <pluto-distribution.version>1.1.6</pluto-distribution.version>
+    <pluto-embedded.version>1.0.1</pluto-embedded.version>
+    <mojarra.version>1.2_03</mojarra.version>
+    <myfaces.version>1.2.2</myfaces.version>
+    <facelets.version>1.1.14</facelets.version>
+    <blueprints.version>5</blueprints.version>
+  </properties>
+  
+  <!-- issueManagement is in parent -->
+  <!-- ciManagement are in parent -->
+  <!-- mailingLists are in parent -->
+  <!-- developers are in parent -->
+  <!-- contributors are in parent -->
+
+  <scm>
+    <connection>scm:svn:http://svn.apache.org/repos/asf/myfaces/portlet-bridge/core/trunk/</connection>
+    <developerConnection>scm:svn:https://svn.apache.org/repos/asf/myfaces/portlet-bridge/core/trunk/</developerConnection>
+    <url>http://svn.apache.org/viewcvs.cgi/myfaces/portlet-bridge/core/trunk/</url>
+  </scm>
+
+  <distributionManagement>
+    <site>
+      <id>apache-site</id>
+      <url>scpexe://minotaur.apache.org/www/myfaces.apache.org/portlet-bridge/1.0</url>
+    </site>
+  </distributionManagement>
+  
+  <!-- This is needed for JSF 1.2 -->  
+  <repositories>
+    <repository>
+      <id>maven1-repository.dev.java.net</id>
+      <name>Java.net Repository for Maven</name>
+      <url>http://download.java.net/maven/1</url>
+      <layout>legacy</layout>
+      <releases>
+        <enabled>true</enabled>
+      </releases>
+      <snapshots>
+        <enabled>false</enabled>
+      </snapshots>
+    </repository>
+  </repositories>
+
+  <modules>
+    <module>api</module>
+    <module>impl</module>
+    <module>examples</module>
+  </modules>
+
+  <!-- Versions and scope of dependencies -->
+  <dependencyManagement>
+    <dependencies>
+
+        <!-- Blueprints-->
+        <dependency>
+          <groupId>com.sun.javaee.blueprints</groupId>
+          <artifactId>bp-ui-simple</artifactId>
+          <version>5</version>
+        </dependency>
+
+	  <!-- Facelets -->
+        <dependency>
+          <groupId>com.sun.facelets</groupId>
+          <artifactId>jsf-facelets</artifactId>
+          <version>1.1.14</version>
+        </dependency>
+
+        <!-- Portlet API -->
+        <dependency>
+          <groupId>portlet-api</groupId>
+          <artifactId>portlet-api</artifactId>
+          <version>1.0</version>
+          <scope>provided</scope>
+        </dependency>
+
+        <!-- Servlet API -->
+        <dependency>
+          <groupId>javax.servlet</groupId>
+          <artifactId>servlet-api</artifactId>
+          <version>2.4</version>
+          <scope>provided</scope>
+        </dependency>
+
+        <!-- JSP API -->
+        <dependency>
+          <groupId>javax.servlet.jsp</groupId>
+          <artifactId>jsp-api</artifactId>
+          <version>2.1</version>
+          <scope>provided</scope>
+        </dependency>
+
+        <!-- J2EE Annotations -->
+        <dependency>
+          <groupId>org.apache.geronimo.specs</groupId>
+          <artifactId>geronimo-annotation_1.0_spec</artifactId>
+          <version>1.0</version>
+          <scope>provided</scope>
+        </dependency>
+
+        <!-- MyFaces API -->
+        <dependency>
+          <groupId>org.apache.myfaces.core</groupId>
+          <artifactId>myfaces-api</artifactId>
+          <version>${myfaces.version}</version>
+	    <!-- <scope>provided</scope> -->
+        </dependency>
+        
+        <dependency>
+          <groupId>org.apache.myfaces.core</groupId>
+          <artifactId>myfaces-impl</artifactId>
+          <version>${myfaces.version}</version>
+	    <!-- <scope>provided</scope> -->
+        </dependency>
+        
+       <!-- JSF R.I. API -->
+        <dependency>
+          <groupId>javax.faces</groupId>
+          <artifactId>jsf-api</artifactId>
+          <!-- As per spec, 1.2_03 is the minimum R.I. for version 1.0 bridge -->
+          <version>${mojarra.version}</version>
+          <scope>provided</scope>
+        </dependency>
+
+        <dependency>
+          <groupId>javax.faces</groupId>
+          <artifactId>jsf-impl</artifactId>
+          <!-- As per spec, 1.2_03 is the minimum R.I. for version 1.0 bridge -->
+          <version>${mojarra.version}</version>
+          <scope>provided</scope>
+        </dependency>
+                
+        <!-- Jetty Pluto Plugin -->        
+        <dependency>
+          <groupId>com.bekk.boss</groupId>
+          <artifactId>maven-jetty-pluto-embedded</artifactId>
+          <version>${pluto-embedded.version}</version>
+        </dependency>
+      
+        <dependency>
+          <groupId>javax.activation</groupId>
+          <artifactId>activation</artifactId>
+          <version>1.1</version>
+        </dependency>
+
+        <!-- JSF Portlet Bridge API -->
+        <dependency>
+          <groupId>${pom.groupId}</groupId>
+          <artifactId>portlet-bridge-api</artifactId>
+          <version>${project.version}</version>
+        </dependency>
+
+        <!-- JSF Portlet Bridge Impl -->
+        <dependency>
+          <groupId>${pom.groupId}</groupId>
+          <artifactId>portlet-bridge-impl</artifactId>
+          <version>${project.version}</version>
+        </dependency>
+      </dependencies>
+  </dependencyManagement>
+  
+  <build>
+    <plugins>
+      <plugin>
+        <artifactId>maven-remote-resources-plugin</artifactId>
+        <version>1.0-alpha-6</version>
+        <executions>
+          <execution>
+            <goals>
+              <goal>process</goal>
+            </goals>
+            <configuration>
+              <resourceBundles>
+                <resourceBundle>org.apache:apache-jar-resource-bundle:1.3</resourceBundle>
+              </resourceBundles>
+              <properties>
+                <addLicense>true</addLicense>
+              </properties>
+            </configuration>
+          </execution>
+        </executions>
+      </plugin>
+      
+      <!-- Generates the Javadocs for the Website.  Wagon will transport it -->
+      <plugin>
+        <artifactId>maven-javadoc-plugin</artifactId>
+        <configuration>
+          <aggregate>false</aggregate>
+          <linksource>true</linksource>
+          <breakiterator>true</breakiterator>
+          <quiet>true</quiet>
+          <verbose>false</verbose>
+          <source>${jdk.version}</source>
+          <charset>UTF-8</charset>
+          <links>
+            <link>http://java.sun.com/j2se/1.5.0/docs/api</link>
+            <link>http://java.sun.com/javaee/javaserverfaces/1.2_MR1/docs/api</link>
+            <link>http://portals.apache.org/pluto/portlet-1.0-apidocs/</link>
+          </links>
+        </configuration>
+      </plugin>
+
+      <plugin>
+        <artifactId>maven-jar-plugin</artifactId>
+        <configuration>
+          <archive>
+            <manifestEntries>
+              <Specification-Title>${specName}</Specification-Title>
+              <Specification-Version>${specVersion}</Specification-Version>
+              <Specification-Vendor>Java Community (JSR-301)</Specification-Vendor>
+            </manifestEntries>
+          </archive>
+        </configuration>
+      </plugin>
+    </plugins>
+    <pluginManagement>
+      <plugins>
+        <plugin>
+          <groupId>org.mortbay.jetty</groupId>
+          <artifactId>maven-jetty-plugin</artifactId>
+          <version>${jetty-plugin.version}</version>
+        </plugin>
+        
+        <plugin>
+          <groupId>org.apache.pluto</groupId>
+          <artifactId>maven-pluto-plugin</artifactId>
+          <version>${pluto-distribution.version}</version>
+          <executions>  
+            <execution>  
+              <phase>generate-resources</phase>  
+              <goals>  
+                <goal>assemble</goal>  
+              </goals>  
+            </execution>  
+          </executions>  
+        </plugin>  
+      </plugins>
+    </pluginManagement>
+  </build>
+  
+  <profiles>  
+    <!-- This profile is invoked by -DprepareRelease=true.  This allows mvn release:prepare to
+         run successfully on the assembly projects. -->
+    <profile>
+      <id>prepare-release</id>
+      <activation>
+        <property>
+          <name>prepareRelease</name>
+        </property>
+      </activation>
+      <modules>
+        <module>assembly</module>
+      </modules>
+      <build>
+        <plugins>
+          <plugin>
+            <artifactId>maven-release-plugin</artifactId>
+            <configuration>
+              <arguments>-DprepareRelease</arguments>
+            </configuration>
+          </plugin>
+        </plugins>
+      </build>
+    </profile>
+    
+    <profile>
+      <id>perform-release</id>
+      <activation>
+        <property>
+          <name>performRelease</name>
+          <value>true</value>
+        </property>
+      </activation>
+      <modules>
+        <module>assembly</module>
+      </modules>
+      <build>
+        <plugins>
+          <plugin>
+            <artifactId>maven-javadoc-plugin</artifactId>
+            <version>2.2</version>
+            <executions>
+              <execution>
+                <id>attach-javadocs</id>
+                <goals>
+                  <goal>jar</goal>
+                </goals>
+              </execution>
+            </executions>
+          </plugin>
+          <plugin>
+            <groupId>org.apache.maven.plugins</groupId>
+            <artifactId>maven-scm-plugin</artifactId>
+            <executions>
+              <execution>
+                <phase>validate</phase>
+                <id>getting-scm.revision</id>
+                <goals>
+                  <goal>update</goal>
+                </goals>
+              </execution>
+            </executions>
+          </plugin>
+        </plugins>
+      </build>
+    </profile>
+  </profiles>      
+</project>