Author: jbalunas(a)redhat.com
Date: 2010-05-07 15:01:25 -0400 (Fri, 07 May 2010)
New Revision: 16932
Added:
root/build/bom/trunk/pom.xml
root/build/parent/trunk/pom.xml
Log:
Initial draft versions of project parent, and bom modules based on -
http://community.jboss.org/wiki/RichFaces40BuildDirectoryStructure
Added: root/build/bom/trunk/pom.xml
===================================================================
--- root/build/bom/trunk/pom.xml (rev 0)
+++ root/build/bom/trunk/pom.xml 2010-05-07 19:01:25 UTC (rev 16932)
@@ -0,0 +1,112 @@
+
+ <!--
+ JBoss, Home of Professional Open Source Copyright 2010, Red Hat,
+ Inc. and individual contributors by the @authors tag. See the
+ copyright.txt in the distribution for a full listing of
+ individual contributors. This is free software; you can
+ redistribute it and/or modify it under the terms of the GNU
+ Lesser General Public License as published by the Free Software
+ Foundation; either version 2.1 of the License, or (at your
+ option) any later version. This software is distributed in the
+ hope that it will be useful, but WITHOUT ANY WARRANTY; without
+ even the implied warranty of MERCHANTABILITY or FITNESS FOR A
+ PARTICULAR PURPOSE. See the GNU Lesser General Public License
+ for more details. You should have received a copy of the GNU
+ Lesser General Public License along with this software; if not,
+ write to the Free Software Foundation, Inc., 51 Franklin St,
+ Fifth Floor, Boston, MA 02110-1301 USA, or see the FSF site:
+
http://www.fsf.org.
+ -->
+<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.richfaces</groupId>
+ <artifactId>richfaces-bom</artifactId>
+ <packaging>pom</packaging>
+ <version>4.0.0-SNAPSHOT</version>
+ <name>RichFaces BOM</name>
+
+ <parent>
+ <groupId>org.jboss</groupId>
+ <artifactId>jboss-parent</artifactId>
+ <version>5</version>
+ </parent>
+
+ <description>
+ The RichFaces "Bill of Materials". This defines all runtime dependency
versions for RichFaces.
+ </description>
+
+ <
url>http://www.jboss.org/richfaces</url>
+
+ <properties>
+ <!-- RichFaces Modules Versions -->
+ <richfaces.core.version>4.0.0-SNAPSHOT</richfaces.core.version>
+
<richfaces.commons.version>4.0.0-SNAPSHOT</richfaces.commons.version>
+
<richfaces.ui.core.version>4.0.0-SNAPSHOT</richfaces.ui.core.version>
+
<richfaces.ui.input.version>4.0.0-SNAPSHOT</richfaces.ui.input.version>
+
<richfaces.ui.output.version>4.0.0-SNAPSHOT</richfaces.ui.output.version>
+
<richfaces.ui.iteration.version>4.0.0-SNAPSHOT</richfaces.ui.iteration.version>
+ <!-- cdk is not really a runtime dependency for RichFaces
+ <richfaces.cdk.version>4.0.0-SNAPSHOT</richfaces.cdk.version>
+ -->
+ </properties>
+
+ <!-- Runtime dependency management -->
+ <dependencyManagement>
+ <dependencies>
+ <!-- RichFaces -->
+ <dependency>
+ <groupId>org.richfaces.core</groupId>
+ <artifactId>core</artifactId>
+ <version>${richfaces.core.version}</version>
+ </dependency>
+
+ <dependency>
+ <groupId>org.richfaces.commons</groupId>
+ <artifactId>commons</artifactId>
+ <version>${richfaces.commons.version}</version>
+ </dependency>
+
+ <dependency>
+ <groupId>org.richfaces.ui</groupId>
+ <artifactId>core</artifactId>
+ <version>${richfaces.ui.core.version}</version>
+ </dependency>
+
+ <dependency>
+ <groupId>org.richfaces.ui</groupId>
+ <artifactId>input</artifactId>
+ <version>${richfaces.ui.input.version}</version>
+ </dependency>
+
+ <dependency>
+ <groupId>org.richfaces.ui</groupId>
+ <artifactId>output</artifactId>
+ <version>${richfaces.ui.output.version}</version>
+ </dependency>
+
+ <dependency>
+ <groupId>org.richfaces.ui</groupId>
+ <artifactId>iteration</artifactId>
+ <version>${richfaces.ui.iteration.version}</version>
+ </dependency>
+
+ <!-- cdk is not really a runtime dependency for RichFaces
+ <dependency>
+ <groupId>org.richfaces</groupId>
+ <artifactId>cdk</artifactId>
+ <version>${richfaces.cdk.version}</version>
+ </dependency>
+ -->
+
+ </dependencies>
+ </dependencyManagement>
+
+ <scm>
+
<
connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/root/build...
+
<
developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/root...
+ <
url>http://fisheye.jboss.org/browse/richfaces</url>
+ </scm>
+
+</project>
Added: root/build/parent/trunk/pom.xml
===================================================================
--- root/build/parent/trunk/pom.xml (rev 0)
+++ root/build/parent/trunk/pom.xml 2010-05-07 19:01:25 UTC (rev 16932)
@@ -0,0 +1,130 @@
+
+ <!--
+ JBoss, Home of Professional Open Source Copyright 2010, Red Hat,
+ Inc. and individual contributors by the @authors tag. See the
+ copyright.txt in the distribution for a full listing of
+ individual contributors. This is free software; you can
+ redistribute it and/or modify it under the terms of the GNU
+ Lesser General Public License as published by the Free Software
+ Foundation; either version 2.1 of the License, or (at your
+ option) any later version. This software is distributed in the
+ hope that it will be useful, but WITHOUT ANY WARRANTY; without
+ even the implied warranty of MERCHANTABILITY or FITNESS FOR A
+ PARTICULAR PURPOSE. See the GNU Lesser General Public License
+ for more details. You should have received a copy of the GNU
+ Lesser General Public License along with this software; if not,
+ write to the Free Software Foundation, Inc., 51 Franklin St,
+ Fifth Floor, Boston, MA 02110-1301 USA, or see the FSF site:
+
http://www.fsf.org.
+ -->
+<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.richfaces</groupId>
+ <artifactId>richfaces-parent</artifactId>
+ <packaging>pom</packaging>
+ <version>1-SNAPSHOT</version>
+ <name>RichFaces Parent</name>
+
+ <parent>
+ <groupId>org.jboss</groupId>
+ <artifactId>jboss-parent</artifactId>
+ <version>5</version>
+ </parent>
+
+ <description>
+ The Parent for all RichFaces sub-projects. This specifies build and project
meta-data. Runtime dependencies are imported via the richfaces-bom.
+ </description>
+
+ <
url>http://www.jboss.org/richfaces</url>
+
+ <licenses>
+ <license>
+ <name>GNU Lesser General Public License, Version 2.1</name>
+ <distribution>repo</distribution>
+ <
url>http://www.gnu.org/licenses/lgpl-2.1.txt</url>
+ </license>
+ </licenses>
+
+ <developers>
+ <developer>
+ <name>RichFaces committers</name>
+ </developer>
+ </developers>
+
+ <issueManagement>
+ <system>jira</system>
+ <
url>https://jira.jboss.org/jira/browse/RF</url>
+ </issueManagement>
+
+ <properties>
+
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
+ <richfaces.version>4.0.0-SNAPSHOT</richfaces.version>
+ </properties>
+
+ <!-- Repository management, including extra repositories if needed -->
+ <repositories>
+ <repository>
+ <id>jboss-public-repository-group</id>
+ <name>JBoss Public Maven Repository Group</name>
+
<
url>https://repository.jboss.org/nexus/content/groups/public/</url>
+ <layout>default</layout>
+ <releases>
+ <enabled>true</enabled>
+ <updatePolicy>never</updatePolicy>
+ </releases>
+ <snapshots>
+ <enabled>true</enabled>
+ <updatePolicy>never</updatePolicy>
+ </snapshots>
+ </repository>
+ </repositories>
+
+ <pluginRepositories>
+ <pluginRepository>
+ <id>jboss-public-repository-group</id>
+ <name>JBoss Public Maven Repository Group</name>
+
<
url>https://repository.jboss.org/nexus/content/groups/public/</url>
+ <layout>default</layout>
+ <releases>
+ <enabled>true</enabled>
+ <updatePolicy>never</updatePolicy>
+ </releases>
+ <snapshots>
+ <enabled>true</enabled>
+ <updatePolicy>never</updatePolicy>
+ </snapshots>
+ </pluginRepository>
+ </pluginRepositories>
+
+ <!-- Dependency management - import bom, and define any test, or other
dependencies -->
+ <dependencyManagement>
+ <dependencies>
+ <dependency>
+ <groupId>org.richfaces</groupId>
+ <artifactId>richfaces-bom</artifactId>
+ <version>${richfaces.version}</version>
+ <type>pom</type>
+ <scope>import</scope>
+ </dependency>
+ </dependencies>
+
+ <!-- Test Dependencies -->
+ </dependencyManagement>
+
+ <!-- Build -->
+
+ <!-- Plugin config, including versions to use in the build -->
+
+ <!-- Profiles -->
+
+ <!-- SCM and distribution management -->
+
+ <scm>
+
<
connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/root/build...
+
<
developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/root...
+ <
url>http://fisheye.jboss.org/browse/richfaces</url>
+ </scm>
+
+</project>