You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openwebbeans.apache.org by st...@apache.org on 2009/01/21 15:46:09 UTC

svn commit: r736319 - /incubator/openwebbeans/trunk/webbeans-impl/pom.xml

Author: struberg
Date: Wed Jan 21 06:46:09 2009
New Revision: 736319

URL: http://svn.apache.org/viewvc?rev=736319&view=rev
Log:
OWB-53 OWB-56 * move the version to the parent pom
* create attached test-jar artifact
* remove reporting plugins which have been moved to the parent pom
* add the findbugs-maven-plugin

Modified:
    incubator/openwebbeans/trunk/webbeans-impl/pom.xml

Modified: incubator/openwebbeans/trunk/webbeans-impl/pom.xml
URL: http://svn.apache.org/viewvc/incubator/openwebbeans/trunk/webbeans-impl/pom.xml?rev=736319&r1=736318&r2=736319&view=diff
==============================================================================
--- incubator/openwebbeans/trunk/webbeans-impl/pom.xml (original)
+++ incubator/openwebbeans/trunk/webbeans-impl/pom.xml Wed Jan 21 06:46:09 2009
@@ -27,8 +27,6 @@
 	</parent>
 	<artifactId>openwebbeans-impl</artifactId>
 	<name>OpenWebBeans :: WebBeans-Impl</name>
-	<packaging>jar</packaging>
-	<version>1.0.0-SNAPSHOT</version>
 	<description>Implementation of the Web Beans API</description>
 
 	<dependencies>
@@ -96,14 +94,28 @@
 		</dependency>
 	</dependencies>
 
+    <build>
+        <!-- additionally create a jar with all the test classes for use in the TCK module -->
+        <plugins>
+            <plugin>
+                <artifactId>maven-jar-plugin</artifactId>
+                <executions>
+                    <execution>
+                        <goals>
+                            <goal>test-jar</goal>
+                        </goals>
+                    </execution>
+                </executions>
+            </plugin>
+        </plugins>
+    </build>
+    
 	<reporting>
 		<plugins>
 			<!-- Apache plugins in alphabetical order -->
 			<plugin>
 				<groupId>org.apache.maven.plugins</groupId>
-				<artifactId>
-					maven-project-info-reports-plugin
-				</artifactId>
+				<artifactId>maven-project-info-reports-plugin</artifactId>
 				<version>2.1</version>
 				<reportSets>
 					<reportSet>
@@ -146,33 +158,6 @@
 					</plugin>
 					<plugin>
 						<groupId>org.apache.maven.plugins</groupId>
-						<artifactId>maven-javadoc-plugin</artifactId>
-						<version>2.4</version>
-						<configuration>
-							<quiet>true</quiet>
-							<links>
-								<link>
-									http://java.sun.com/j2ee/1.4/docs/api
-								</link>
-								<link>
-									http://java.sun.com/j2se/1.5.0/docs/api
-								</link>
-								<link>
-									http://myfaces.apache.org/core12/myfaces-api/apidocs/
-								</link>
-							</links>
-						</configuration>
-						<reportSets>
-							<reportSet>
-								<reports>
-									<report>javadoc</report>
-									<report>test-javadoc</report>
-								</reports>
-							</reportSet>
-						</reportSets>
-					</plugin>
-					<plugin>
-						<groupId>org.apache.maven.plugins</groupId>
 						<artifactId>maven-jxr-plugin</artifactId>
 						<version>2.1</version>
 						<configuration>
@@ -251,6 +236,15 @@
 						<artifactId>taglist-maven-plugin</artifactId>
 						<version>2.2</version>
 					</plugin>
+                    <plugin>
+                        <groupId>org.codehaus.mojo</groupId>
+                        <artifactId>findbugs-maven-plugin</artifactId>
+                        <version>1.2</version>
+                        <configuration>
+                            <threshold>Low</threshold>
+                        </configuration>
+                    </plugin>
+                    
 				</plugins>
 			</reporting>
 		</profile>