One more fix, please. After Matthias changed the svn:externals, current12/pom.xml only needs <module>s for 'core' and 'shared'.
-- Wendy On 6/10/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote:
Author: dennisbyrne Date: Sat Jun 10 17:37:24 2006 New Revision: 413390 URL: http://svn.apache.org/viewvc?rev=413390&view=rev Log: initial commit for master pom - 'mvn clean install' works from a fresh co Added: myfaces/current12/pom.xml Added: myfaces/current12/pom.xml URL: http://svn.apache.org/viewvc/myfaces/current12/pom.xml?rev=413390&view=auto ============================================================================== --- myfaces/current12/pom.xml (added) +++ myfaces/current12/pom.xml Sat Jun 10 17:37:24 2006 @@ -0,0 +1,31 @@ +<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</groupId> + <artifactId>myfaces-build</artifactId> + <packaging>pom</packaging> + <version>1.2.0-SNAPSHOT</version> + <name>Build Project</name> + <url>http://myfaces.apache.org</url> + + <scm> + <connection>scm:svn:http://svn.apache.org/repos/asf/myfaces/current12</connection> + <developerConnection>scm:svn:https://svn.apache.org/repos/asf/myfaces/current12</developerConnection> + <url>http://svn.apache.org/viewcvs.cgi/myfaces/current12</url> + </scm> + + <modules> + <module>maven</module> + <module>shared</module> + <module>core</module> + <module>tomahawk</module> + <module>site</module> + </modules> + + <build> + <defaultGoal>install</defaultGoal> + </build> + +</project> +
