[richfaces-svn-commits] JBoss Rich Faces SVN: r18513 - in trunk/ui: parent and 1 other directory.

richfaces-svn-commits at lists.jboss.org richfaces-svn-commits at lists.jboss.org
Mon Aug 9 11:28:50 EDT 2010


Author: Alex.Kolonitsky
Date: 2010-08-09 11:28:50 -0400 (Mon, 09 Aug 2010)
New Revision: 18513

Removed:
   trunk/ui/iteration/bom/
   trunk/ui/iteration/dist/
   trunk/ui/iteration/parent/
   trunk/ui/iteration/tables/
Modified:
   trunk/ui/iteration/pom.xml
   trunk/ui/parent/pom.xml
Log:
Richfaces 4.0 restructurization of svn repository structure


Modified: trunk/ui/iteration/pom.xml
===================================================================
--- trunk/ui/iteration/pom.xml	2010-08-09 15:03:53 UTC (rev 18512)
+++ trunk/ui/iteration/pom.xml	2010-08-09 15:28:50 UTC (rev 18513)
@@ -35,12 +35,8 @@
     <name>Richfaces UI Components: Iteration Aggregator</name>
 
     <modules>
-        <module>bom</module>
-        <module>parent</module>
-        <module>tables</module>
-        <module>datascroller</module>
-        <module>lists</module>
-        <module>dist</module>
+        <module>api</module>
+        <module>ui</module>
     </modules>
 
     <build>

Modified: trunk/ui/parent/pom.xml
===================================================================
--- trunk/ui/parent/pom.xml	2010-08-09 15:03:53 UTC (rev 18512)
+++ trunk/ui/parent/pom.xml	2010-08-09 15:28:50 UTC (rev 18513)
@@ -18,7 +18,8 @@
     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">
+<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>
 
@@ -51,6 +52,17 @@
             </dependency>
 
             <dependency>
+                <groupId>org.richfaces.ui.iteration</groupId>
+                <artifactId>richfaces-ui-iteration-ui</artifactId>
+                <version>${project.version}</version>
+            </dependency>
+            <dependency>
+                <groupId>org.richfaces.ui.iteration</groupId>
+                <artifactId>richfaces-ui-iteration-api</artifactId>
+                <version>${project.version}</version>
+            </dependency>
+
+            <dependency>
                 <groupId>org.richfaces.ui.core</groupId>
                 <artifactId>richfaces-ui-core-bom</artifactId>
                 <version>${org.richfaces.ui.core.version}</version>
@@ -64,21 +76,6 @@
                 <version>${project.version}</version>
             </dependency>
             <dependency>
-                <groupId>org.richfaces.ui.misc</groupId>
-                <artifactId>componentcontrol-ui</artifactId>
-                <version>${project.version}</version>
-            </dependency>
-            <dependency>
-                <groupId>org.richfaces.ui.misc</groupId>
-                <artifactId>functions-ui</artifactId>
-                <version>${project.version}</version>
-            </dependency>
-            <dependency>
-                <groupId>org.richfaces.ui.misc</groupId>
-                <artifactId>jquery-ui</artifactId>
-                <version>${project.version}</version>
-            </dependency>
-            <dependency>
                 <groupId>org.richfaces.cdk</groupId>
                 <artifactId>annotations</artifactId>
                 <version>${org.richfaces.cdk.version}</version>
@@ -86,7 +83,6 @@
         </dependencies>
     </dependencyManagement>
 
-
     <build>
         <pluginManagement>
             <plugins>
@@ -106,25 +102,46 @@
                     <version>2.0-alpha-4</version>
                     <extensions>true</extensions>
                 </plugin>
-            <plugin>
-                <groupId>org.richfaces.cdk</groupId>
-                <artifactId>maven-cdk-plugin</artifactId>
+                <plugin>
+                    <groupId>org.richfaces.cdk</groupId>
+                    <artifactId>maven-cdk-plugin</artifactId>
                     <version>${org.richfaces.cdk.version}</version>
-                <executions>
-                    <execution>
-                        <id>cdk-generate-sources</id>
-                        <phase>generate-sources</phase>
-                        <goals>
-                            <goal>generate</goal>
-                        </goals>
-                    </execution>
-                </executions>
-            </plugin>
+                    <configuration>
+                        <library>
+                            <prefix>org.richfaces</prefix>
+                            <taglib>
+                                <uri>http://richfaces.org/iteration</uri>
+                                <shortName>it</shortName>
+                                <displayName>Iteration components tags</displayName>
+                            </taglib>
+                        </library>
+                    </configuration>
+                    <executions>
+                        <execution>
+                            <id>cdk-generate-sources</id>
+                            <phase>generate-sources</phase>
+                            <goals>
+                                <goal>generate</goal>
+                            </goals>
+                        </execution>
+                    </executions>
+                </plugin>
             </plugins>
         </pluginManagement>
 
         <plugins>
             <plugin>
+                <artifactId>maven-checkstyle-plugin</artifactId>
+                <dependencies>
+                    <dependency>
+                        <groupId>org.richfaces</groupId>
+                        <artifactId>richfaces-build-checkstyle</artifactId>
+                        <version>${richfaces.checkstyle.version}</version>
+                    </dependency>
+                </dependencies>
+            </plugin>
+
+            <plugin>
                 <groupId>org.apache.maven.plugins</groupId>
                 <artifactId>maven-enforcer-plugin</artifactId>
                 <version>1.0-beta-1</version>
@@ -132,9 +149,55 @@
                     <fail>false</fail>
                 </configuration>
             </plugin>
+
         </plugins>
     </build>
 
+    <profiles>
+        <profile>
+            <id>release</id>
+
+            <build>
+                <plugins>
+                    <plugin>
+                        <groupId>org.apache.maven.plugins</groupId>
+                        <artifactId>maven-javadoc-plugin</artifactId>
+                        <configuration>
+                            <javadocVersion>1.5</javadocVersion>
+                            <aggregate>true</aggregate>
+                        </configuration>
+                        <executions>
+                            <execution>
+                                <id>generate-javadoc</id>
+                                <phase>generate-sources</phase>
+                                <goals>
+                                    <goal>jar</goal>
+                                </goals>
+                            </execution>
+                        </executions>
+                    </plugin>
+                    <plugin>
+                        <groupId>org.apache.maven.plugins</groupId>
+                        <artifactId>maven-source-plugin</artifactId>
+                        <configuration>
+                            <aggregate>true</aggregate>
+                        </configuration>
+                        <executions>
+                            <execution>
+                                <id>generate-source</id>
+                                <phase>generate-sources</phase>
+                                <goals>
+                                    <goal>jar</goal>
+                                </goals>
+                            </execution>
+                        </executions>
+                    </plugin>
+                </plugins>
+            </build>
+        </profile>
+    </profiles>
+
+
     <scm>
         <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/trunk/ui/misc/parent</connection>
         <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/trunk/ui/misc/parent</developerConnection>



More information about the richfaces-svn-commits mailing list