Author: Alex.Kolonitsky
Date: 2009-08-24 08:45:22 -0400 (Mon, 24 Aug 2009)
New Revision: 15274
Modified:
root/pom.xml
root/richfaces.xml
root/ui/trunk/components/core/pom.xml
Log:
Update 4.0 ALPHA1 assembler for new structure
https://jira.jboss.org/jira/browse/RF-7745
Modified: root/pom.xml
===================================================================
--- root/pom.xml 2009-08-24 12:28:20 UTC (rev 15273)
+++ root/pom.xml 2009-08-24 12:45:22 UTC (rev 15274)
@@ -49,7 +49,7 @@
<executions>
<execution>
<configuration>
-
<finalName>richfaces-${version}.ALPHA1</finalName>
+
<finalName>richfaces-${version}</finalName>
<descriptor>richfaces.xml</descriptor>
</configuration>
<id>richfaces</id>
@@ -60,7 +60,7 @@
</execution>
<execution>
<configuration>
-
<finalName>richfaces-examples-${version}.ALPHA1</finalName>
+
<finalName>richfaces-examples-${version}</finalName>
<descriptor>richfaces-examples.xml</descriptor>
</configuration>
<id>richfaces-examples</id>
Modified: root/richfaces.xml
===================================================================
--- root/richfaces.xml 2009-08-24 12:28:20 UTC (rev 15273)
+++ root/richfaces.xml 2009-08-24 12:45:22 UTC (rev 15274)
@@ -15,7 +15,7 @@
<includes>
<include>org.richfaces.framework:richfaces-api</include>
<include>org.richfaces.framework:richfaces-impl</include>
- <include>org.richfaces.ui:components</include>
+ <include>org.richfaces.ui.components:core-ui</include>
</includes>
<sources>
Modified: root/ui/trunk/components/core/pom.xml
===================================================================
--- root/ui/trunk/components/core/pom.xml 2009-08-24 12:28:20 UTC (rev 15273)
+++ root/ui/trunk/components/core/pom.xml 2009-08-24 12:45:22 UTC (rev 15274)
@@ -50,4 +50,50 @@
<scope>test</scope>
</dependency>
</dependencies>
+
+ <profiles>
+ <profile>
+ <id>release</id>
+
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-javadoc-plugin</artifactId>
+ <version>2.2</version>
+ <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>
+
</project>
\ No newline at end of file