[richfaces-svn-commits] JBoss Rich Faces SVN: r18819 - modules/build/parent/branches/RF-9112.

richfaces-svn-commits at lists.jboss.org richfaces-svn-commits at lists.jboss.org
Thu Aug 19 11:38:57 EDT 2010


Author: jbalunas at redhat.com
Date: 2010-08-19 11:38:56 -0400 (Thu, 19 Aug 2010)
New Revision: 18819

Modified:
   modules/build/parent/branches/RF-9112/pom.xml
Log:
RF-9112 Stripped richfaces-parent - CODING IN PROGRESS

Modified: modules/build/parent/branches/RF-9112/pom.xml
===================================================================
--- modules/build/parent/branches/RF-9112/pom.xml	2010-08-19 15:32:41 UTC (rev 18818)
+++ modules/build/parent/branches/RF-9112/pom.xml	2010-08-19 15:38:56 UTC (rev 18819)
@@ -83,7 +83,6 @@
             </snapshots>
         </repository>
     </repositories>
-
     <pluginRepositories>
         <pluginRepository>
             <id>jboss-public-repository-group</id>
@@ -125,74 +124,6 @@
                     </configuration>
                 </plugin>
 
-
-                <!-- Build -->
-                <plugin>
-                    <artifactId>maven-compiler-plugin</artifactId>
-                    <configuration>
-                        <source>1.5</source>
-                        <target>1.5</target>
-                    </configuration>
-                </plugin>
-                <plugin>
-                    <groupId>org.apache.maven.plugins</groupId>
-                    <artifactId>maven-jar-plugin</artifactId>
-                    <configuration>
-                        <archive>
-                            <index>true</index>
-                            <manifest>
-                                <addDefaultSpecificationEntries>
-                                    true
-                                </addDefaultSpecificationEntries>
-                                <addDefaultImplementationEntries>
-                                    true
-                                </addDefaultImplementationEntries>
-                            </manifest>
-                            <manifestEntries>
-                                <mode>development</mode>
-                                <Build-Number>${buildNumber}
-                                </Build-Number>
-                            </manifestEntries>
-                        </archive>
-                    </configuration>
-                </plugin>
-                <plugin>
-                    <groupId>org.codehaus.mojo</groupId>
-                    <artifactId>javacc-maven-plugin</artifactId>
-                    <version>2.4</version>
-                </plugin>
-
-                <!-- reporting -->
-                <plugin>
-                    <groupId>com.atlassian.maven.plugins</groupId>
-                    <artifactId>maven-clover2-plugin</artifactId>
-                </plugin>
-                <plugin>
-                    <groupId>org.apache.maven.plugins</groupId>
-                    <artifactId>maven-checkstyle-plugin</artifactId>
-                    <version>2.3</version>
-                    <configuration>
-                        <configLocation>richfaces-checkstyle/richfaces-checkstyle.xml
-                        </configLocation>
-                    </configuration>
-                    <executions>
-                        <execution>
-                            <id>richfaces-checkstyle-report</id>
-                            <phase>process-sources</phase>
-                            <goals>
-                                <goal>check</goal>
-                            </goals>
-                        </execution>
-                    </executions>
-                    <dependencies>
-                        <dependency>
-                            <groupId>org.richfaces</groupId>
-                            <artifactId>richfaces-build-checkstyle</artifactId>
-                            <version>${richfaces.checkstyle.version}</version>
-                        </dependency>
-                    </dependencies>
-                </plugin>
-
                 <!-- dev -->
                 <plugin>
                     <artifactId>maven-eclipse-plugin</artifactId>
@@ -201,26 +132,6 @@
                         <downloadSources>true</downloadSources>
                     </configuration>
                 </plugin>
-
-                <!--
-                    docs TODO should move to profiles probably a "doc" profile
-                -->
-                <plugin>
-                    <groupId>gr.abiss.mvn.plugins</groupId>
-                    <artifactId>maven-jstools-plugin</artifactId>
-                    <version>0.7</version>
-                    <configuration>
-                        <jsDir>${project.basedir}/src/main/resources/META-INF/resources
-                        </jsDir>
-                        <includes>**/*.js</includes>
-                        <caseSensitive>true</caseSensitive>
-                    </configuration>
-                </plugin>
-                <plugin>
-                    <groupId>org.apache.maven.plugins</groupId>
-                    <artifactId>maven-javadoc-plugin</artifactId>
-                    <version>2.2</version>
-                </plugin>
             </plugins>
         </pluginManagement>
         <plugins>
@@ -232,85 +143,9 @@
             </plugin>
         </plugins>
     </build>
-
-    <!-- Profiles -->
-    <profiles>
-        <profile>
-            <id>release</id>
-            <build>
-                <plugins>
-                    <plugin>
-                        <!-- TODO move to doc profile? -->
-                        <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>
-                </plugins>
-            </build>
-        </profile>
-        <profile>
-            <!--
-                Triggers generated documentation as part of builds ( javadoc,
-                jsdoc, etc...
-            -->
-            <id>doc</id>
-            <!-- TODO -->
-        </profile>
-        <profile>
-            <!-- Triggers clover reports to be generated -->
-            <id>clover</id>
-            <build>
-                <plugins>
-                    <plugin>
-                        <groupId>com.atlassian.maven.plugins</groupId>
-                        <artifactId>maven-clover2-plugin</artifactId>
-                        <configuration>
-                            <licenseLocation>
-                                ${clover.license.path}
-                            </licenseLocation>
-                            <jdk>1.5</jdk>
-                            <generatePdf>false</generatePdf>
-                            <generateXml>true</generateXml>
-                            <generateHtml>true</generateHtml>
-                        </configuration>
-                        <executions>
-                            <execution>
-                                <id>instrument</id>
-                                <phase>verify</phase>
-                                <goals>
-                                    <goal>instrument</goal>
-                                    <goal>check</goal>
-                                    <goal>clover</goal>
-                                </goals>
-                            </execution>
-                        </executions>
-                    </plugin>
-                </plugins>
-            </build>
-        </profile>
-        <profile>
-            <!-- Required when in JBoss hudson env to have clover reports generate -->
-            <id>hudson</id>
-            <properties>
-                <clover.license.path>/home/hudson/config_repository/resources/richfaces/richfaces-clover-license.txt
-                </clover.license.path>
-            </properties>
-        </profile>
-    </profiles>
     
     <distributionManagement>
+        <!-- Other items inherited from jboss-parent -->
         <downloadUrl>http://www.jboss.org/richfaces/download</downloadUrl>
     </distributionManagement>
 



More information about the richfaces-svn-commits mailing list