Author: tommaso
Date: Wed Oct 20 08:57:02 2010
New Revision: 1024554
URL: http://svn.apache.org/viewvc?rev=1024554&view=rev
Log:
[AMBER-8] - fixed findbugs version and configuration for site generation, added fluido-skin
as a skin, removed reporting plugin in spec-api module that is already defined in parent
Modified:
incubator/amber/trunk/ (props changed)
incubator/amber/trunk/pom.xml
incubator/amber/trunk/spec-api/pom.xml
incubator/amber/trunk/src/site/site.xml
Propchange: incubator/amber/trunk/
------------------------------------------------------------------------------
--- svn:ignore (original)
+++ svn:ignore Wed Oct 20 08:57:02 2010
@@ -1 +1,3 @@
target
+
+*.iml
Modified: incubator/amber/trunk/pom.xml
URL: http://svn.apache.org/viewvc/incubator/amber/trunk/pom.xml?rev=1024554&r1=1024553&r2=1024554&view=diff
==============================================================================
--- incubator/amber/trunk/pom.xml (original)
+++ incubator/amber/trunk/pom.xml Wed Oct 20 08:57:02 2010
@@ -292,18 +292,10 @@
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>findbugs-maven-plugin</artifactId>
- <version>1.1.1</version>
+ <version>2.3.1</version>
<configuration>
<xmlOutput>true</xmlOutput>
<xmlOutputDirectory>target/findbugs-reports</xmlOutputDirectory>
- <threshold>High</threshold>
- <effort>Max</effort>
- <visitors>FindDeadLocalStores</visitors>
- <omitVisitors>FindDeadLocalStores</omitVisitors>
- <onlyAnalyze>org.apache.amber.*</onlyAnalyze>
- <debug>true</debug>
- <relaxed>true</relaxed>
- <xmlOutputDirectory>target/findbugs-reports</xmlOutputDirectory>
<findbugsXmlOutput>target/findbugs-reports</findbugsXmlOutput>
</configuration>
</plugin>
@@ -532,4 +524,11 @@
<module>server</module>
</modules>
+ <distributionManagement>
+ <site>
+ <id>website</id>
+ <url>${siteUrl}</url>
+ </site>
+ </distributionManagement>
+
</project>
Modified: incubator/amber/trunk/spec-api/pom.xml
URL: http://svn.apache.org/viewvc/incubator/amber/trunk/spec-api/pom.xml?rev=1024554&r1=1024553&r2=1024554&view=diff
==============================================================================
--- incubator/amber/trunk/spec-api/pom.xml (original)
+++ incubator/amber/trunk/spec-api/pom.xml Wed Oct 20 08:57:02 2010
@@ -30,24 +30,4 @@
<packaging>jar</packaging>
<name>Apache Amber: Specification API</name>
- <reporting>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-project-info-reports-plugin</artifactId>
- <version>2.2</version>
- <reportSets>
- <reportSet>
- <reports>
- <report>dependencies</report>
- <report>dependency-convergence</report>
- <report>index</report>
- <report>summary</report>
- </reports>
- </reportSet>
- </reportSets>
- </plugin>
- </plugins>
- </reporting>
-
</project>
Modified: incubator/amber/trunk/src/site/site.xml
URL: http://svn.apache.org/viewvc/incubator/amber/trunk/src/site/site.xml?rev=1024554&r1=1024553&r2=1024554&view=diff
==============================================================================
--- incubator/amber/trunk/src/site/site.xml (original)
+++ incubator/amber/trunk/src/site/site.xml Wed Oct 20 08:57:02 2010
@@ -39,5 +39,9 @@
<item name="Apache Incubator" href="http://incubator.apache.org/"/>
</menu>
</body>
-
+ <skin>
+ <groupId>com.googlecode.fluido-skin</groupId>
+ <artifactId>fluido-skin</artifactId>
+ <version>1.3</version>
+ </skin>
</project>
|