JBoss Rich Faces SVN: r17482 - in root/cdk/trunk: dist and 1 other directory.
by richfaces-svn-commits@lists.jboss.org
Author: Alex.Kolonitsky
Date: 2010-06-03 10:06:31 -0400 (Thu, 03 Jun 2010)
New Revision: 17482
Modified:
root/cdk/trunk/dist/pom.xml
root/cdk/trunk/pom.xml
Log:
destribution managment for cdk
Modified: root/cdk/trunk/dist/pom.xml
===================================================================
--- root/cdk/trunk/dist/pom.xml 2010-06-03 13:37:40 UTC (rev 17481)
+++ root/cdk/trunk/dist/pom.xml 2010-06-03 14:06:31 UTC (rev 17482)
@@ -20,21 +20,21 @@
<url>http://fisheye.jboss.org/browse/Richfaces/cdk</url>
</scm>
- <distributionManagement>
- <downloadUrl>
- http://labs.jboss.com/portal/jbossrichfaces/downloads
+ <distributionManagement>
+ <downloadUrl>
+ http://www.jboss.org/richfaces/download
</downloadUrl>
- <repository>
- <id>jboss-releases-repository</id>
- <uniqueVersion>false</uniqueVersion>
- <url>${releaseRepository}</url>
- </repository>
- <snapshotRepository>
- <id>jboss-snapshots-repository</id>
- <uniqueVersion>true</uniqueVersion>
- <url>${snapshotRepository}</url>
- </snapshotRepository>
- </distributionManagement>
+ <repository>
+ <id>jboss-releases-repository</id>
+ <name>JBoss Releases Repository</name>
+ <url>${jboss.releases.repo.url}</url>
+ </repository>
+ <snapshotRepository>
+ <id>jboss-snapshots-repository</id>
+ <name>JBoss Snapshots Repository</name>
+ <url>${jboss.snapshots.repo.url}</url>
+ </snapshotRepository>
+ </distributionManagement>
<!-- Minimal build configuration -->
<build>
Modified: root/cdk/trunk/pom.xml
===================================================================
--- root/cdk/trunk/pom.xml 2010-06-03 13:37:40 UTC (rev 17481)
+++ root/cdk/trunk/pom.xml 2010-06-03 14:06:31 UTC (rev 17482)
@@ -19,8 +19,8 @@
<module>parent</module>
<module>plugins</module>
<module>archetypes</module>
- <!-- <module>docs</module> -->
- <module>dist</module>
+ <!-- <module>docs</module> -->
+ <module>dist</module>
</modules>
<!-- SCM and distribution management -->
<scm>
@@ -29,26 +29,23 @@
<url>http://fisheye.jboss.org/browse/Richfaces/cdk</url>
</scm>
- <distributionManagement>
- <downloadUrl>
- http://labs.jboss.com/portal/jbossrichfaces/downloads
+ <distributionManagement>
+ <downloadUrl>
+ http://www.jboss.org/richfaces/download
</downloadUrl>
- <repository>
- <id>jboss-releases-repository</id>
- <uniqueVersion>false</uniqueVersion>
- <url>${releaseRepository}</url>
- </repository>
- <snapshotRepository>
- <id>jboss-snapshots-repository</id>
- <uniqueVersion>true</uniqueVersion>
- <url>${snapshotRepository}</url>
- </snapshotRepository>
- <!--site>
- <url>file:target/site2</url>
- </site-->
- </distributionManagement>
+ <repository>
+ <id>jboss-releases-repository</id>
+ <name>JBoss Releases Repository</name>
+ <url>${jboss.releases.repo.url}</url>
+ </repository>
+ <snapshotRepository>
+ <id>jboss-snapshots-repository</id>
+ <name>JBoss Snapshots Repository</name>
+ <url>${jboss.snapshots.repo.url}</url>
+ </snapshotRepository>
+ </distributionManagement>
- <!-- Minimal build configuration -->
+ <!-- Minimal build configuration -->
<build>
<finalName>cdk</finalName>
<plugins>
15 years, 6 months
JBoss Rich Faces SVN: r17481 - root/dist/trunk.
by richfaces-svn-commits@lists.jboss.org
Author: jbalunas(a)redhat.com
Date: 2010-06-03 09:37:40 -0400 (Thu, 03 Jun 2010)
New Revision: 17481
Modified:
root/dist/trunk/pom.xml
Log:
Updated version variables
Modified: root/dist/trunk/pom.xml
===================================================================
--- root/dist/trunk/pom.xml 2010-06-03 13:37:32 UTC (rev 17480)
+++ root/dist/trunk/pom.xml 2010-06-03 13:37:40 UTC (rev 17481)
@@ -39,8 +39,9 @@
<org.richfaces.commons.version>4.0.0-SNAPSHOT</org.richfaces.commons.version>
<org.richfaces.core.version>4.0.0-SNAPSHOT</org.richfaces.core.version>
<org.richfaces.ui.dist.version>4.0.0-SNAPSHOT</org.richfaces.ui.dist.version>
- <org.richfaces.examples.version>4.0.0-SNAPSHOT</org.richfaces.examples.version>
- <org.richfaces.archetypes.version>4.0.0-SNAPSHOT</org.richfaces.archetypes.version>
+ <org.richfaces.examples.core-demo.version>4.0.0-SNAPSHOT</org.richfaces.examples.core-demo.version>
+ <org.richfaces.examples.richfaces-showcase.version>4.0.0-SNAPSHOT</org.richfaces.examples.richfaces-showcase.version>
+ <org.richfaces.archetypes.richfaces-archetype-simpleapp.version>4.0.0-SNAPSHOT</org.richfaces.archetypes.richfaces-archetype-simpleapp.version>
</properties>
<dependencies>
@@ -80,13 +81,13 @@
<dependency>
<groupId>org.richfaces.examples</groupId>
<artifactId>core-demo</artifactId>
- <version>${org.richfaces.examples.version}</version>
+ <version>${org.richfaces.examples.core-demo.version}</version>
<type>war</type>
</dependency>
<dependency>
<groupId>org.richfaces.examples</groupId>
<artifactId>richfaces-showcase</artifactId>
- <version>${org.richfaces.examples.version}</version>
+ <version>${org.richfaces.examples.richfaces-showcase.version}</version>
<type>war</type>
<classifier>tomcat6</classifier>
</dependency>
@@ -95,7 +96,7 @@
<dependency>
<groupId>org.richfaces.archetypes</groupId>
<artifactId>richfaces-archetype-simpleapp</artifactId>
- <version>${org.richfaces.archetypes.version}</version>
+ <version>${org.richfaces.archetypes.richfaces-archetype-simpleapp.version}</version>
</dependency>
</dependencies>
15 years, 6 months
JBoss Rich Faces SVN: r17480 - root/archetypes/richfaces-archetype-simpleapp/trunk/src/main/resources/archetype-resources.
by richfaces-svn-commits@lists.jboss.org
Author: Alex.Kolonitsky
Date: 2010-06-03 09:37:32 -0400 (Thu, 03 Jun 2010)
New Revision: 17480
Modified:
root/archetypes/richfaces-archetype-simpleapp/trunk/src/main/resources/archetype-resources/pom.xml
Log:
add variable with project version to archetype
Modified: root/archetypes/richfaces-archetype-simpleapp/trunk/src/main/resources/archetype-resources/pom.xml
===================================================================
--- root/archetypes/richfaces-archetype-simpleapp/trunk/src/main/resources/archetype-resources/pom.xml 2010-06-03 13:22:41 UTC (rev 17479)
+++ root/archetypes/richfaces-archetype-simpleapp/trunk/src/main/resources/archetype-resources/pom.xml 2010-06-03 13:37:32 UTC (rev 17480)
@@ -30,6 +30,7 @@
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
+ <org.richfaces.ui.dist.version>4.0.0-SNAPSHOT</org.richfaces.ui.dist.version>
</properties>
<build>
@@ -129,7 +130,7 @@
<dependency>
<groupId>org.richfaces.ui.dist</groupId>
<artifactId>richfaces-components-bom</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>${org.richfaces.ui.dist.version}</version>
<scope>import</scope>
<type>pom</type>
</dependency>
15 years, 6 months
JBoss Rich Faces SVN: r17479 - root/examples/richfaces-showcase/trunk.
by richfaces-svn-commits@lists.jboss.org
Author: jbalunas(a)redhat.com
Date: 2010-06-03 09:22:41 -0400 (Thu, 03 Jun 2010)
New Revision: 17479
Modified:
root/examples/richfaces-showcase/trunk/pom.xml
Log:
updated showcase for release, and consistency
Modified: root/examples/richfaces-showcase/trunk/pom.xml
===================================================================
--- root/examples/richfaces-showcase/trunk/pom.xml 2010-06-03 13:14:44 UTC (rev 17478)
+++ root/examples/richfaces-showcase/trunk/pom.xml 2010-06-03 13:22:41 UTC (rev 17479)
@@ -19,11 +19,14 @@
<name>Richfaces Examples: Richfaces Showcase Application</name>
<properties>
+ <!-- FIXME these should be through the richfaces-parent -->
<snapshotRepository>dav:https://repository.jboss.org/nexus/content/repositories/snapshots/</snapshotRepository>
- <jetty.port>8080</jetty.port>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
+
+ <jetty.port>8080</jetty.port>
<richfaces.checkstyle.version>1</richfaces.checkstyle.version>
+ <org.richfaces.ui.dist.version>4.0.0-SNAPSHOT</org.richfaces.ui.dist.version>
</properties>
<dependencyManagement>
@@ -31,7 +34,7 @@
<dependency>
<groupId>org.richfaces.ui.dist</groupId>
<artifactId>richfaces-components-bom</artifactId>
- <version>${project.version}</version>
+ <version>${org.richfaces.ui.dist.version}</version>
<scope>import</scope>
<type>pom</type>
</dependency>
@@ -248,6 +251,7 @@
</profiles>
<repositories>
+ <!-- FIXME - This should be set globally in parent -->
<repository>
<id>maven-repository2.dev.java.net</id>
<name>Java.net Repository for Maven 2</name>
@@ -257,4 +261,10 @@
</snapshots>
</repository>
</repositories>
+
+ <scm>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/root/examples/richfaces-...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/root/examples/richfaces-sho...</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces</url>
+ </scm>
</project>
15 years, 6 months
JBoss Rich Faces SVN: r17478 - root/dist/trunk.
by richfaces-svn-commits@lists.jboss.org
Author: Alex.Kolonitsky
Date: 2010-06-03 09:14:44 -0400 (Thu, 03 Jun 2010)
New Revision: 17478
Modified:
root/dist/trunk/pom.xml
Log:
add variables with project version
Modified: root/dist/trunk/pom.xml
===================================================================
--- root/dist/trunk/pom.xml 2010-06-03 13:10:42 UTC (rev 17477)
+++ root/dist/trunk/pom.xml 2010-06-03 13:14:44 UTC (rev 17478)
@@ -35,49 +35,58 @@
<packaging>pom</packaging>
<name>Richfaces Assembler</name>
+ <properties>
+ <org.richfaces.commons.version>4.0.0-SNAPSHOT</org.richfaces.commons.version>
+ <org.richfaces.core.version>4.0.0-SNAPSHOT</org.richfaces.core.version>
+ <org.richfaces.ui.dist.version>4.0.0-SNAPSHOT</org.richfaces.ui.dist.version>
+ <org.richfaces.examples.version>4.0.0-SNAPSHOT</org.richfaces.examples.version>
+ <org.richfaces.archetypes.version>4.0.0-SNAPSHOT</org.richfaces.archetypes.version>
+ </properties>
+
<dependencies>
<dependency>
<groupId>org.richfaces.ui.dist</groupId>
<artifactId>richfaces-components-api</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>${org.richfaces.ui.dist.version}</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui.dist</groupId>
<artifactId>richfaces-components-impl</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>${org.richfaces.ui.dist.version}</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui.dist</groupId>
<artifactId>richfaces-components-ui</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>${org.richfaces.ui.dist.version}</version>
</dependency>
+
<dependency>
<groupId>org.richfaces.core</groupId>
<artifactId>richfaces-core-api</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>${org.richfaces.core.version}</version>
</dependency>
<dependency>
<groupId>org.richfaces.core</groupId>
<artifactId>richfaces-core-impl</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>${org.richfaces.core.version}</version>
</dependency>
<dependency>
<groupId>org.richfaces.commons</groupId>
<artifactId>richfaces-commons-api</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>${org.richfaces.commons.version}</version>
</dependency>
<!-- Examples -->
<dependency>
<groupId>org.richfaces.examples</groupId>
<artifactId>core-demo</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>${org.richfaces.examples.version}</version>
<type>war</type>
</dependency>
<dependency>
<groupId>org.richfaces.examples</groupId>
<artifactId>richfaces-showcase</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>${org.richfaces.examples.version}</version>
<type>war</type>
<classifier>tomcat6</classifier>
</dependency>
@@ -86,7 +95,7 @@
<dependency>
<groupId>org.richfaces.archetypes</groupId>
<artifactId>richfaces-archetype-simpleapp</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>${org.richfaces.archetypes.version}</version>
</dependency>
</dependencies>
15 years, 6 months
JBoss Rich Faces SVN: r17477 - in root/examples: core-demo/trunk and 1 other directory.
by richfaces-svn-commits@lists.jboss.org
Author: jbalunas(a)redhat.com
Date: 2010-06-03 09:10:42 -0400 (Thu, 03 Jun 2010)
New Revision: 17477
Modified:
root/examples/core-demo/trunk/pom.xml
root/examples/pom.xml
Log:
Updated for release and consistency
Modified: root/examples/core-demo/trunk/pom.xml
===================================================================
--- root/examples/core-demo/trunk/pom.xml 2010-06-03 12:15:19 UTC (rev 17476)
+++ root/examples/core-demo/trunk/pom.xml 2010-06-03 13:10:42 UTC (rev 17477)
@@ -36,11 +36,14 @@
<name>RichFaces Examples: Core</name>
<properties>
+ <!-- FIXME - these should be from the parent -->
<snapshotRepository>dav:https://repository.jboss.org/nexus/content/repositories/snapshots/</snapshotRepository>
- <jetty.port>8080</jetty.port>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
+
+ <jetty.port>8080</jetty.port>
<richfaces.checkstyle.version>1</richfaces.checkstyle.version>
+ <org.richfaces.ui.core.version>4.0.0-SNAPSHOT</org.richfaces.ui.core.version>
</properties>
<dependencyManagement>
@@ -48,7 +51,7 @@
<dependency>
<groupId>org.richfaces.ui.core</groupId>
<artifactId>richfaces-ui-core-bom</artifactId>
- <version>${project.version}</version>
+ <version>${org.richfaces.ui.core.version}</version>
<scope>import</scope>
<type>pom</type>
</dependency>
@@ -211,6 +214,8 @@
</goals>
<phase>package</phase>
<configuration>
+ <!-- TODO - basedir might have a problem with release realitive
+ path might be better to use ${project.build.directory} -->
<classesDirectory>${basedir}/target/sources/sources</classesDirectory>
<classifier>sources</classifier>
</configuration>
@@ -257,6 +262,7 @@
</profiles>
<repositories>
+ <!-- FIXME - should come from parent I believe -->
<repository>
<id>maven-repository2.dev.java.net</id>
<name>Java.net Repository for Maven 2</name>
@@ -266,4 +272,10 @@
</snapshots>
</repository>
</repositories>
+
+ <scm>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/root/examples/core-demo/...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/root/examples/core-demo/trunk</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces</url>
+ </scm>
</project>
Modified: root/examples/pom.xml
===================================================================
--- root/examples/pom.xml 2010-06-03 12:15:19 UTC (rev 17476)
+++ root/examples/pom.xml 2010-06-03 13:10:42 UTC (rev 17477)
@@ -20,9 +20,11 @@
<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/xsd/maven-4.0.0.xsd">
-
<modelVersion>4.0.0</modelVersion>
+ <!-- This aggregator pom, is not released, and is only used to make it easy to build all of the
+ examples at once from trunk. -->
+
<parent>
<groupId>org.richfaces</groupId>
<artifactId>richfaces-parent</artifactId>
15 years, 6 months
JBoss Rich Faces SVN: r17476 - root.
by richfaces-svn-commits@lists.jboss.org
Author: Alex.Kolonitsky
Date: 2010-06-03 08:15:19 -0400 (Thu, 03 Jun 2010)
New Revision: 17476
Modified:
root/pom.xml
Log:
fix build
Modified: root/pom.xml
===================================================================
--- root/pom.xml 2010-06-03 11:41:40 UTC (rev 17475)
+++ root/pom.xml 2010-06-03 12:15:19 UTC (rev 17476)
@@ -15,11 +15,11 @@
<!-- These trunk settings, and this pom.xml will be removed -->
<!-- Added bom, parent, for temp integration -->
<!--<module>build/parent/tags/richfaces-parent-5</module>-->
- <!--<module>build/bom/trunk</module>-->
+ <module>build/bom/trunk</module>
<!--<module>build/resources/trunk/checkstyle</module>-->
<!--<module>build/resources/trunk/faces-shade-transformers</module>-->
+ <module>commons/trunk</module>
<module>cdk/trunk</module>
- <module>commons/trunk</module>
<module>core/trunk</module>
<!-- richfaces ui -->
@@ -31,7 +31,7 @@
<!--<module>ui-sandbox</module>-->
<module>examples</module>
<!--<module>doc/${doc.svn.dir}</module>-->
- <!--<module>archetypes</module>-->
+ <module>archetypes</module>
</modules>
<profiles>
15 years, 6 months
JBoss Rich Faces SVN: r17475 - in root: archetypes/richfaces-archetype-simpleapp/trunk/src/main/resources/archetype-resources and 9 other directories.
by richfaces-svn-commits@lists.jboss.org
Author: Alex.Kolonitsky
Date: 2010-06-03 07:41:40 -0400 (Thu, 03 Jun 2010)
New Revision: 17475
Modified:
root/archetypes/richfaces-archetype-simpleapp/trunk/src/main/resources/archetype-resources/pom.xml
root/cdk/trunk/pom.xml
root/dist/trunk/pom.xml
root/examples/core-demo/trunk/pom.xml
root/examples/iteration-demo/trunk/pom.xml
root/examples/misc-demo/trunk/pom.xml
root/examples/repeater-demo/trunk/pom.xml
root/examples/richfaces-showcase/trunk/pom.xml
root/pom.xml
root/ui/dist/trunk/richfaces-components-api/pom.xml
root/ui/dist/trunk/richfaces-components-impl/pom.xml
Log:
fix build
Modified: root/archetypes/richfaces-archetype-simpleapp/trunk/src/main/resources/archetype-resources/pom.xml
===================================================================
--- root/archetypes/richfaces-archetype-simpleapp/trunk/src/main/resources/archetype-resources/pom.xml 2010-06-03 01:04:09 UTC (rev 17474)
+++ root/archetypes/richfaces-archetype-simpleapp/trunk/src/main/resources/archetype-resources/pom.xml 2010-06-03 11:41:40 UTC (rev 17475)
@@ -127,7 +127,7 @@
<dependencyManagement>
<dependencies>
<dependency>
- <groupId>org.richfaces.ui</groupId>
+ <groupId>org.richfaces.ui.dist</groupId>
<artifactId>richfaces-components-bom</artifactId>
<version>4.0.0-SNAPSHOT</version>
<scope>import</scope>
@@ -138,7 +138,7 @@
<dependencies>
<dependency>
- <groupId>org.richfaces.ui</groupId>
+ <groupId>org.richfaces.ui.dist</groupId>
<artifactId>richfaces-components-ui</artifactId>
</dependency>
Modified: root/cdk/trunk/pom.xml
===================================================================
--- root/cdk/trunk/pom.xml 2010-06-03 01:04:09 UTC (rev 17474)
+++ root/cdk/trunk/pom.xml 2010-06-03 11:41:40 UTC (rev 17475)
@@ -70,7 +70,7 @@
<configuration>
<skip>true</skip>
</configuration>
- </plugin>
+ </plugin>
</plugins>
</build>
Modified: root/dist/trunk/pom.xml
===================================================================
--- root/dist/trunk/pom.xml 2010-06-03 01:04:09 UTC (rev 17474)
+++ root/dist/trunk/pom.xml 2010-06-03 11:41:40 UTC (rev 17475)
@@ -37,17 +37,17 @@
<dependencies>
<dependency>
- <groupId>org.richfaces.ui</groupId>
+ <groupId>org.richfaces.ui.dist</groupId>
<artifactId>richfaces-components-api</artifactId>
<version>4.0.0-SNAPSHOT</version>
</dependency>
<dependency>
- <groupId>org.richfaces.ui</groupId>
+ <groupId>org.richfaces.ui.dist</groupId>
<artifactId>richfaces-components-impl</artifactId>
<version>4.0.0-SNAPSHOT</version>
</dependency>
<dependency>
- <groupId>org.richfaces.ui</groupId>
+ <groupId>org.richfaces.ui.dist</groupId>
<artifactId>richfaces-components-ui</artifactId>
<version>4.0.0-SNAPSHOT</version>
</dependency>
@@ -102,7 +102,7 @@
<plugin>
<artifactId>maven-dependency-plugin</artifactId>
<configuration>
- <includeGroupIds>org.richfaces.core,org.richfaces.commons,org.richfaces.ui</includeGroupIds>
+ <includeGroupIds>org.richfaces.core,org.richfaces.commons,org.richfaces.ui.dist</includeGroupIds>
</configuration>
<executions>
<execution>
Modified: root/examples/core-demo/trunk/pom.xml
===================================================================
--- root/examples/core-demo/trunk/pom.xml 2010-06-03 01:04:09 UTC (rev 17474)
+++ root/examples/core-demo/trunk/pom.xml 2010-06-03 11:41:40 UTC (rev 17475)
@@ -46,21 +46,13 @@
<dependencyManagement>
<dependencies>
<dependency>
- <groupId>org.richfaces.ui</groupId>
+ <groupId>org.richfaces.ui.core</groupId>
<artifactId>richfaces-ui-core-bom</artifactId>
<version>${project.version}</version>
<scope>import</scope>
<type>pom</type>
</dependency>
- <dependency>
- <groupId>org.richfaces.ui</groupId>
- <artifactId>richfaces-ui-misc-bom</artifactId>
- <version>${project.version}</version>
- <scope>import</scope>
- <type>pom</type>
- </dependency>
-
<!-- simple logger binding: only messages of level INFO and higher are printed-->
<dependency>
<groupId>org.slf4j</groupId>
@@ -106,7 +98,7 @@
<artifactId>jstl</artifactId>
</dependency>
<dependency>
- <groupId>org.richfaces.ui</groupId>
+ <groupId>org.richfaces.ui.core</groupId>
<artifactId>richfaces-ui-core-ui</artifactId>
</dependency>
@@ -274,4 +266,4 @@
</snapshots>
</repository>
</repositories>
-</project>
\ No newline at end of file
+</project>
Modified: root/examples/iteration-demo/trunk/pom.xml
===================================================================
--- root/examples/iteration-demo/trunk/pom.xml 2010-06-03 01:04:09 UTC (rev 17474)
+++ root/examples/iteration-demo/trunk/pom.xml 2010-06-03 11:41:40 UTC (rev 17475)
@@ -46,21 +46,7 @@
<dependencyManagement>
<dependencies>
<dependency>
- <groupId>org.richfaces.ui</groupId>
- <artifactId>richfaces-ui-core-bom</artifactId>
- <version>${project.version}</version>
- <scope>import</scope>
- <type>pom</type>
- </dependency>
- <dependency>
- <groupId>org.richfaces.ui</groupId>
- <artifactId>richfaces-ui-misc-bom</artifactId>
- <version>${project.version}</version>
- <scope>import</scope>
- <type>pom</type>
- </dependency>
- <dependency>
- <groupId>org.richfaces.ui</groupId>
+ <groupId>org.richfaces.ui.iteration</groupId>
<artifactId>richfaces-ui-iteration-bom</artifactId>
<version>${project.version}</version>
<scope>import</scope>
@@ -85,15 +71,15 @@
<dependencies>
<dependency>
- <groupId>org.richfaces.ui</groupId>
+ <groupId>org.richfaces.ui.iteration</groupId>
<artifactId>richfaces-ui-iteration-api</artifactId>
</dependency>
<dependency>
- <groupId>org.richfaces.ui</groupId>
+ <groupId>org.richfaces.ui.iteration</groupId>
<artifactId>richfaces-ui-iteration-ui</artifactId>
</dependency>
<dependency>
- <groupId>org.richfaces.ui</groupId>
+ <groupId>org.richfaces.ui.iteration</groupId>
<artifactId>richfaces-ui-iteration-impl</artifactId>
</dependency>
@@ -227,4 +213,4 @@
</snapshots>
</repository>
</repositories>
-</project>
\ No newline at end of file
+</project>
Modified: root/examples/misc-demo/trunk/pom.xml
===================================================================
--- root/examples/misc-demo/trunk/pom.xml 2010-06-03 01:04:09 UTC (rev 17474)
+++ root/examples/misc-demo/trunk/pom.xml 2010-06-03 11:41:40 UTC (rev 17475)
@@ -46,15 +46,7 @@
<dependencyManagement>
<dependencies>
<dependency>
- <groupId>org.richfaces.ui</groupId>
- <artifactId>richfaces-ui-core-bom</artifactId>
- <version>${project.version}</version>
- <scope>import</scope>
- <type>pom</type>
- </dependency>
-
- <dependency>
- <groupId>org.richfaces.ui</groupId>
+ <groupId>org.richfaces.ui.misc</groupId>
<artifactId>richfaces-ui-misc-bom</artifactId>
<version>${project.version}</version>
<scope>import</scope>
@@ -79,7 +71,7 @@
<dependencies>
<dependency>
- <groupId>org.richfaces.ui</groupId>
+ <groupId>org.richfaces.ui.misc</groupId>
<artifactId>richfaces-ui-misc-ui</artifactId>
</dependency>
@@ -203,4 +195,4 @@
</snapshots>
</repository>
</repositories>
-</project>
\ No newline at end of file
+</project>
Modified: root/examples/repeater-demo/trunk/pom.xml
===================================================================
--- root/examples/repeater-demo/trunk/pom.xml 2010-06-03 01:04:09 UTC (rev 17474)
+++ root/examples/repeater-demo/trunk/pom.xml 2010-06-03 11:41:40 UTC (rev 17475)
@@ -47,21 +47,13 @@
<dependencyManagement>
<dependencies>
<dependency>
- <groupId>org.richfaces.ui</groupId>
- <artifactId>richfaces-ui-core-bom</artifactId>
+ <groupId>org.richfaces</groupId>
+ <artifactId>richfaces-bom</artifactId>
<version>${project.version}</version>
<scope>import</scope>
<type>pom</type>
</dependency>
- <dependency>
- <groupId>org.richfaces.ui</groupId>
- <artifactId>richfaces-ui-misc-bom</artifactId>
- <version>${project.version}</version>
- <scope>import</scope>
- <type>pom</type>
- </dependency>
-
<!-- simple logger binding: only messages of level INFO and higher are printed-->
<dependency>
<groupId>org.slf4j</groupId>
@@ -190,4 +182,4 @@
</snapshots>
</repository>
</repositories>
-</project>
\ No newline at end of file
+</project>
Modified: root/examples/richfaces-showcase/trunk/pom.xml
===================================================================
--- root/examples/richfaces-showcase/trunk/pom.xml 2010-06-03 01:04:09 UTC (rev 17474)
+++ root/examples/richfaces-showcase/trunk/pom.xml 2010-06-03 11:41:40 UTC (rev 17475)
@@ -29,7 +29,7 @@
<dependencyManagement>
<dependencies>
<dependency>
- <groupId>org.richfaces.ui</groupId>
+ <groupId>org.richfaces.ui.dist</groupId>
<artifactId>richfaces-components-bom</artifactId>
<version>${project.version}</version>
<scope>import</scope>
@@ -40,7 +40,7 @@
<dependencies>
<dependency>
- <groupId>org.richfaces.ui</groupId>
+ <groupId>org.richfaces.ui.dist</groupId>
<artifactId>richfaces-components-ui</artifactId>
</dependency>
<dependency>
Modified: root/pom.xml
===================================================================
--- root/pom.xml 2010-06-03 01:04:09 UTC (rev 17474)
+++ root/pom.xml 2010-06-03 11:41:40 UTC (rev 17475)
@@ -14,13 +14,13 @@
<modules>
<!-- These trunk settings, and this pom.xml will be removed -->
<!-- Added bom, parent, for temp integration -->
- <module>build/parent/tags/richfaces-parent-5</module>
- <module>build/bom/trunk</module>
+ <!--<module>build/parent/tags/richfaces-parent-5</module>-->
+ <!--<module>build/bom/trunk</module>-->
<!--<module>build/resources/trunk/checkstyle</module>-->
- <module>build/resources/trunk/faces-shade-transformers</module>
+ <!--<module>build/resources/trunk/faces-shade-transformers</module>-->
+ <module>cdk/trunk</module>
<module>commons/trunk</module>
<module>core/trunk</module>
- <module>cdk/trunk</module>
<!-- richfaces ui -->
<module>ui/core/trunk</module>
@@ -31,7 +31,7 @@
<!--<module>ui-sandbox</module>-->
<module>examples</module>
<!--<module>doc/${doc.svn.dir}</module>-->
- <module>archetypes</module>
+ <!--<module>archetypes</module>-->
</modules>
<profiles>
Modified: root/ui/dist/trunk/richfaces-components-api/pom.xml
===================================================================
--- root/ui/dist/trunk/richfaces-components-api/pom.xml 2010-06-03 01:04:09 UTC (rev 17474)
+++ root/ui/dist/trunk/richfaces-components-api/pom.xml 2010-06-03 11:41:40 UTC (rev 17475)
@@ -146,7 +146,7 @@
<configuration>
<classifier>sources</classifier>
- <includeGroupIds>${assembly.projects.group}.core, ${assembly.projects.group}.misc, ${assembly.projects.group}.iteration</includeGroupIds>
+ <includeGroupIds>org.richfaces.ui.iteration</includeGroupIds>
<useSubDirectoryPerArtifact>true</useSubDirectoryPerArtifact>
<excludeTransitive>true</excludeTransitive>
</configuration>
Modified: root/ui/dist/trunk/richfaces-components-impl/pom.xml
===================================================================
--- root/ui/dist/trunk/richfaces-components-impl/pom.xml 2010-06-03 01:04:09 UTC (rev 17474)
+++ root/ui/dist/trunk/richfaces-components-impl/pom.xml 2010-06-03 11:41:40 UTC (rev 17475)
@@ -180,7 +180,7 @@
<configuration>
<classifier>sources</classifier>
- <includeGroupIds>${assembly.projects.group}.core, ${assembly.projects.group}.misc, ${assembly.projects.group}.iteration</includeGroupIds>
+ <includeGroupIds>org.richfaces.ui.iteration</includeGroupIds>
<useSubDirectoryPerArtifact>true</useSubDirectoryPerArtifact>
<excludeTransitive>true</excludeTransitive>
</configuration>
15 years, 6 months
JBoss Rich Faces SVN: r17474 - in root/ui/dist/trunk: bom and 4 other directories.
by richfaces-svn-commits@lists.jboss.org
Author: jbalunas(a)redhat.com
Date: 2010-06-02 21:04:09 -0400 (Wed, 02 Jun 2010)
New Revision: 17474
Added:
root/ui/dist/trunk/parent/
root/ui/dist/trunk/parent/pom.xml
Modified:
root/ui/dist/trunk/bom/pom.xml
root/ui/dist/trunk/pom.xml
root/ui/dist/trunk/richfaces-components-api/pom.xml
root/ui/dist/trunk/richfaces-components-impl/pom.xml
root/ui/dist/trunk/richfaces-components-ui/pom.xml
Log:
Updated ui/dist with parent, and used bom dependencies to make it easier to work with, and release
Modified: root/ui/dist/trunk/bom/pom.xml
===================================================================
--- root/ui/dist/trunk/bom/pom.xml 2010-06-02 23:32:48 UTC (rev 17473)
+++ root/ui/dist/trunk/bom/pom.xml 2010-06-03 01:04:09 UTC (rev 17474)
@@ -20,7 +20,7 @@
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.ui</groupId>
+ <groupId>org.richfaces.ui.dist</groupId>
<artifactId>richfaces-components-bom</artifactId>
<packaging>pom</packaging>
<version>4.0.0-SNAPSHOT</version>
@@ -39,9 +39,11 @@
<url>http://www.jboss.org/richfaces</url>
<properties>
- <richfaces.commons.version>4.0.0-SNAPSHOT</richfaces.commons.version>
- <richfaces.core.version>4.0.0-SNAPSHOT</richfaces.core.version>
- <richfaces.bom.version>4.0.0-SNAPSHOT</richfaces.bom.version>
+ <org.richfaces.commons.version>4.0.0-SNAPSHOT</org.richfaces.commons.version>
+ <org.richfaces.core.version>4.0.0-SNAPSHOT</org.richfaces.core.version>
+ <org.richfaces.ui.core.version>4.0.0-SNAPSHOT</org.richfaces.ui.core.version>
+ <org.richfaces.ui.misc.version>4.0.0-SNAPSHOT</org.richfaces.ui.misc.version>
+ <org.richfaces.ui.iteration.version>4.0.0-SNAPSHOT</org.richfaces.ui.iteration.version>
</properties>
<!-- Runtime dependency management -->
@@ -50,34 +52,54 @@
<dependency>
<groupId>org.richfaces.commons</groupId>
<artifactId>richfaces-commons-bom</artifactId>
- <version>${richfaces.commons.version}</version>
+ <version>${org.richfaces.commons.version}</version>
<scope>import</scope>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.richfaces.core</groupId>
<artifactId>richfaces-core-bom</artifactId>
- <version>${richfaces.core.version}</version>
+ <version>${org.richfaces.core.version}</version>
<scope>import</scope>
<type>pom</type>
</dependency>
+ <dependency>
+ <groupId>org.richfaces.ui.core</groupId>
+ <artifactId>richfaces-ui-core-bom</artifactId>
+ <version>${org.richfaces.ui.core.version}</version>
+ <scope>import</scope>
+ <type>pom</type>
+ </dependency>
+ <dependency>
+ <groupId>org.richfaces.ui.misc</groupId>
+ <artifactId>richfaces-ui-misc-bom</artifactId>
+ <version>${org.richfaces.ui.misc.version}</version>
+ <scope>import</scope>
+ <type>pom</type>
+ </dependency>
+ <dependency>
+ <groupId>org.richfaces.ui.iteration</groupId>
+ <artifactId>richfaces-ui-iteration-bom</artifactId>
+ <version>${org.richfaces.ui.iteration.version}</version>
+ <scope>import</scope>
+ <type>pom</type>
+ </dependency>
<dependency>
- <groupId>org.richfaces.ui</groupId>
+ <groupId>org.richfaces.ui.dist</groupId>
<artifactId>richfaces-components-api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
- <groupId>org.richfaces.ui</groupId>
+ <groupId>org.richfaces.ui.dist</groupId>
<artifactId>richfaces-components-impl</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
- <groupId>org.richfaces.ui</groupId>
+ <groupId>org.richfaces.ui.dist</groupId>
<artifactId>richfaces-components-ui</artifactId>
<version>${project.version}</version>
</dependency>
-
</dependencies>
</dependencyManagement>
Added: root/ui/dist/trunk/parent/pom.xml
===================================================================
--- root/ui/dist/trunk/parent/pom.xml (rev 0)
+++ root/ui/dist/trunk/parent/pom.xml 2010-06-03 01:04:09 UTC (rev 17474)
@@ -0,0 +1,56 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!--
+ 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/xsd/maven-4.0.0.xsd">
+
+ <modelVersion>4.0.0</modelVersion>
+
+ <parent>
+ <groupId>org.richfaces</groupId>
+ <artifactId>richfaces-parent</artifactId>
+ <version>7</version>
+ </parent>
+
+ <groupId>org.richfaces.ui.dist</groupId>
+ <artifactId>richfaces-ui-dist-parent</artifactId>
+ <version>4.0.0-SNAPSHOT</version>
+ <name>Richfaces UI Components: Parent</name>
+ <packaging>pom</packaging>
+
+ <dependencyManagement>
+ <dependencies>
+ <dependency>
+ <groupId>org.richfaces.ui.dist</groupId>
+ <artifactId>richfaces-components-bom</artifactId>
+ <version>${project.version}</version>
+ <scope>import</scope>
+ <type>pom</type>
+ </dependency>
+ </dependencies>
+ </dependencyManagement>
+
+ <scm>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/root/ui/dist/trunk/parent</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/root/ui/dist/trunk/parent</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/</url>
+ </scm>
+</project>
Modified: root/ui/dist/trunk/pom.xml
===================================================================
--- root/ui/dist/trunk/pom.xml 2010-06-02 23:32:48 UTC (rev 17473)
+++ root/ui/dist/trunk/pom.xml 2010-06-03 01:04:09 UTC (rev 17474)
@@ -1,24 +1,22 @@
<?xml version="1.0" encoding="UTF-8"?>
-<!--
- 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.
--->
+ <!--
+ 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
+ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
@@ -36,13 +34,13 @@
<name>Richfaces UI Assembler</name>
<modules>
- <module>bom</module>
- <!-- aggregate modules -->
+ <module>bom</module>
+ <module>parent</module>
<module>richfaces-components-api</module>
<module>richfaces-components-impl</module>
<module>richfaces-components-ui</module>
</modules>
-
+
<build>
<pluginManagement>
<plugins>
@@ -89,7 +87,7 @@
</modules>
</profile>
</profiles>
-
+
<scm>
<connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/root/ui/dist/trunk</connection>
<developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/root/ui/dist/trunk</developerConnection>
Modified: root/ui/dist/trunk/richfaces-components-api/pom.xml
===================================================================
--- root/ui/dist/trunk/richfaces-components-api/pom.xml 2010-06-02 23:32:48 UTC (rev 17473)
+++ root/ui/dist/trunk/richfaces-components-api/pom.xml 2010-06-03 01:04:09 UTC (rev 17474)
@@ -25,9 +25,9 @@
<parent>
<groupId>org.richfaces.ui.dist</groupId>
- <artifactId>richfaces-ui-assembler</artifactId>
+ <artifactId>richfaces-ui-dist-parent</artifactId>
<version>4.0.0-SNAPSHOT</version>
- <relativePath>../pom.xml</relativePath>
+ <relativePath>../parent/pom.xml</relativePath>
</parent>
<groupId>org.richfaces.ui.dist</groupId>
@@ -41,19 +41,6 @@
<faces-shade-transformers.version>1</faces-shade-transformers.version>
</properties>
- <dependencyManagement>
- <!-- TODO these must be updated to follow release script property naming -->
- <dependencies>
- <dependency>
- <groupId>org.richfaces.ui.iteration</groupId>
- <artifactId>richfaces-ui-iteration-bom</artifactId>
- <version>${project.version}</version>
- <scope>import</scope>
- <type>pom</type>
- </dependency>
- </dependencies>
- </dependencyManagement>
-
<dependencies>
<dependency>
<groupId>org.richfaces.ui.iteration</groupId>
Modified: root/ui/dist/trunk/richfaces-components-impl/pom.xml
===================================================================
--- root/ui/dist/trunk/richfaces-components-impl/pom.xml 2010-06-02 23:32:48 UTC (rev 17473)
+++ root/ui/dist/trunk/richfaces-components-impl/pom.xml 2010-06-03 01:04:09 UTC (rev 17474)
@@ -25,9 +25,9 @@
<parent>
<groupId>org.richfaces.ui.dist</groupId>
- <artifactId>richfaces-ui-assembler</artifactId>
+ <artifactId>richfaces-ui-dist-parent</artifactId>
<version>4.0.0-SNAPSHOT</version>
- <relativePath>../pom.xml</relativePath>
+ <relativePath>../parent/pom.xml</relativePath>
</parent>
<groupId>org.richfaces.ui.dist</groupId>
@@ -41,19 +41,6 @@
<faces-shade-transformers.version>1</faces-shade-transformers.version>
</properties>
- <dependencyManagement>
- <dependencies>
- <!-- TODO these must be updated to follow release script property naming -->
- <dependency>
- <groupId>org.richfaces.ui.iteration</groupId>
- <artifactId>richfaces-ui-iteration-bom</artifactId>
- <version>${project.version}</version>
- <scope>import</scope>
- <type>pom</type>
- </dependency>
- </dependencies>
- </dependencyManagement>
-
<dependencies>
<dependency>
<groupId>org.richfaces.ui.iteration</groupId>
@@ -63,7 +50,6 @@
<dependency>
<groupId>org.richfaces.ui.dist</groupId>
<artifactId>richfaces-components-api</artifactId>
- <version>${project.version}</version>
</dependency>
<dependency>
Modified: root/ui/dist/trunk/richfaces-components-ui/pom.xml
===================================================================
--- root/ui/dist/trunk/richfaces-components-ui/pom.xml 2010-06-02 23:32:48 UTC (rev 17473)
+++ root/ui/dist/trunk/richfaces-components-ui/pom.xml 2010-06-03 01:04:09 UTC (rev 17474)
@@ -25,9 +25,9 @@
<parent>
<groupId>org.richfaces.ui.dist</groupId>
- <artifactId>richfaces-ui-assembler</artifactId>
+ <artifactId>richfaces-ui-dist-parent</artifactId>
<version>4.0.0-SNAPSHOT</version>
- <relativePath>../pom.xml</relativePath>
+ <relativePath>../parent/pom.xml</relativePath>
</parent>
<groupId>org.richfaces.ui.dist</groupId>
@@ -41,33 +41,6 @@
<assembly.projects.group>org.richfaces.ui</assembly.projects.group>
</properties>
- <dependencyManagement>
- <dependencies>
- <!-- TODO these must be updated to follow release script property naming -->
- <dependency>
- <groupId>org.richfaces.ui.core</groupId>
- <artifactId>richfaces-ui-core-bom</artifactId>
- <version>${project.version}</version>
- <scope>import</scope>
- <type>pom</type>
- </dependency>
- <dependency>
- <groupId>org.richfaces.ui.misc</groupId>
- <artifactId>richfaces-ui-misc-bom</artifactId>
- <version>${project.version}</version>
- <scope>import</scope>
- <type>pom</type>
- </dependency>
- <dependency>
- <groupId>org.richfaces.ui.iteration</groupId>
- <artifactId>richfaces-ui-iteration-bom</artifactId>
- <version>${project.version}</version>
- <scope>import</scope>
- <type>pom</type>
- </dependency>
- </dependencies>
- </dependencyManagement>
-
<dependencies>
<!-- artifacts for aggregation -->
<dependency>
@@ -87,7 +60,6 @@
<dependency>
<groupId>org.richfaces.ui.dist</groupId>
<artifactId>richfaces-components-impl</artifactId>
- <version>${project.version}</version>
</dependency>
<dependency>
15 years, 6 months
JBoss Rich Faces SVN: r17473 - root/cdk/trunk/docs/guide.
by richfaces-svn-commits@lists.jboss.org
Author: SeanRogers
Date: 2010-06-02 19:32:48 -0400 (Wed, 02 Jun 2010)
New Revision: 17473
Modified:
root/cdk/trunk/docs/guide/pom.xml
Log:
Reverted my changes
Modified: root/cdk/trunk/docs/guide/pom.xml
===================================================================
--- root/cdk/trunk/docs/guide/pom.xml 2010-06-02 20:06:12 UTC (rev 17472)
+++ root/cdk/trunk/docs/guide/pom.xml 2010-06-02 23:32:48 UTC (rev 17473)
@@ -3,16 +3,16 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
- <groupId>org.jboss.richfaces</groupId>
+ <groupId>org.richfaces.cdk.docs</groupId>
<artifactId>guide-${translation}</artifactId>
- <version>1.0</version>
+ <version>4.0.0-SNAPSHOT</version>
<packaging>jdocbook</packaging>
<name>${bookname}-(${translation})</name>
<parent>
- <groupId>org.jboss.richfaces</groupId>
+ <groupId>org.richfaces.cdk</groupId>
<artifactId>docs</artifactId>
- <version>1.0</version>
+ <version>4.0.0-SNAPSHOT</version>
</parent>
<properties>
@@ -59,7 +59,7 @@
<plugin>
<groupId>org.jboss.maven.plugins</groupId>
<artifactId>maven-jdocbook-plugin</artifactId>
- <version>2.2.1</version>
+ <version>2.2.0</version>
<extensions>true</extensions>
<configuration>
<formats>
@@ -96,7 +96,7 @@
<plugin>
<groupId>org.jboss.maven.plugins</groupId>
<artifactId>maven-jdocbook-plugin</artifactId>
- <version>2.2.1</version>
+ <version>2.2.0</version>
<extensions>true</extensions>
<configuration>
<formats>
@@ -123,7 +123,7 @@
<plugin>
<groupId>org.jboss.maven.plugins</groupId>
<artifactId>maven-jdocbook-plugin</artifactId>
- <version>2.2.1</version>
+ <version>2.2.0</version>
<extensions>true</extensions>
<configuration>
<formats>
@@ -150,7 +150,7 @@
<plugin>
<groupId>org.jboss.maven.plugins</groupId>
<artifactId>maven-jdocbook-plugin</artifactId>
- <version>2.2.1</version>
+ <version>2.2.0</version>
<extensions>true</extensions>
<configuration>
<formats>
@@ -178,7 +178,7 @@
<plugin>
<groupId>org.jboss.maven.plugins</groupId>
<artifactId>maven-jdocbook-plugin</artifactId>
- <version>2.2.1</version>
+ <version>2.2.0</version>
<extensions>true</extensions>
<configuration>
<formats>
@@ -217,7 +217,7 @@
<plugin>
<groupId>org.jboss.maven.plugins</groupId>
<artifactId>maven-jdocbook-plugin</artifactId>
- <version>2.2.1</version>
+ <version>2.2.0</version>
<extensions>true</extensions>
<dependencies>
<dependency>
@@ -236,7 +236,7 @@
<sourceDocumentName>${docname}.xml</sourceDocumentName>
<sourceDirectory>.</sourceDirectory>
<imageResource>
- <directory>${translation}</directory>
+ <directory>${project.basedir}/${translation}</directory>
<includes>
<include>images/*</include>
</includes>
15 years, 6 months