You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@directory.apache.org by fe...@apache.org on 2008/03/17 23:24:00 UTC

svn commit: r638098 - in /directory/daemon/branches/bigbang: bootstrappers/pom.xml plugin/pom.xml pom.xml

Author: felixk
Date: Mon Mar 17 15:23:55 2008
New Revision: 638098

URL: http://svn.apache.org/viewvc?rev=638098&view=rev
Log:
Re-enable distributionManagement section
Add checkstyle report (needs still configuration for checkstyle)

Reports see @ http://people.apache.org/~felixk/projects/directory/daemon/index.html

Modified:
    directory/daemon/branches/bigbang/bootstrappers/pom.xml
    directory/daemon/branches/bigbang/plugin/pom.xml
    directory/daemon/branches/bigbang/pom.xml

Modified: directory/daemon/branches/bigbang/bootstrappers/pom.xml
URL: http://svn.apache.org/viewvc/directory/daemon/branches/bigbang/bootstrappers/pom.xml?rev=638098&r1=638097&r2=638098&view=diff
==============================================================================
--- directory/daemon/branches/bigbang/bootstrappers/pom.xml (original)
+++ directory/daemon/branches/bigbang/bootstrappers/pom.xml Mon Mar 17 15:23:55 2008
@@ -32,6 +32,7 @@
     an installation footprint.
   </description>
 
+<!-- 
   <distributionManagement>
     <site>
       <id>apache.websites</id>
@@ -40,6 +41,7 @@
       </url>
     </site>
   </distributionManagement>
+-->
 
   <build>
     <plugins>

Modified: directory/daemon/branches/bigbang/plugin/pom.xml
URL: http://svn.apache.org/viewvc/directory/daemon/branches/bigbang/plugin/pom.xml?rev=638098&r1=638097&r2=638098&view=diff
==============================================================================
--- directory/daemon/branches/bigbang/plugin/pom.xml (original)
+++ directory/daemon/branches/bigbang/plugin/pom.xml Mon Mar 17 15:23:55 2008
@@ -31,12 +31,14 @@
     A plugin that builds installers using bootstrappers and commons-daemon procrun and jsvc
   </description>
 
+<!-- 
   <distributionManagement>
     <site>
       <id>apache.websites</id>
       <url>scp://minotaur.apache.org/www/directory.apache.org/newsite/subprojects/daemon/</url>
     </site>
   </distributionManagement>
+-->
 
   <dependencies>
     <dependency>

Modified: directory/daemon/branches/bigbang/pom.xml
URL: http://svn.apache.org/viewvc/directory/daemon/branches/bigbang/pom.xml?rev=638098&r1=638097&r2=638098&view=diff
==============================================================================
--- directory/daemon/branches/bigbang/pom.xml (original)
+++ directory/daemon/branches/bigbang/pom.xml Mon Mar 17 15:23:55 2008
@@ -125,6 +125,14 @@
     </plugins>
   </build>
 
+  <distributionManagement>
+    <site>
+      <id>apache.directory.studio</id>
+      <!-- FIXME set final url according to CI -->
+      <url>scpexe://people.apache.org/home/felixk/public_html/projects/directory/daemon/</url>
+    </site>
+  </distributionManagement>
+
   <reporting>
     <excludeDefaults>true</excludeDefaults>
     <plugins>
@@ -134,11 +142,17 @@
         <reportSets>
           <reportSet>
             <reports>
+	      <!--
               <report>project-team</report>
               <report>mailing-list</report>
               <report>issue-tracking</report>
               <report>license</report>
               <report>scm</report>
+	      -->
+              <report>license</report>
+              <report>dependencies</report>
+              <report>issue-tracking</report>
+              <report>index</report>
             </reports>
           </reportSet>
         </reportSets>
@@ -150,6 +164,71 @@
         <configuration>
           <aggregate>true</aggregate>
         </configuration>
+      </plugin>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-surefire-report-plugin</artifactId>
+        <configuration>
+          <aggregate>true</aggregate>
+        </configuration>
+      </plugin>
+      <plugin>
+        <artifactId>maven-jxr-plugin</artifactId>
+        <configuration>
+          <aggregate>true</aggregate>
+        </configuration>
+      </plugin>
+      <plugin>
+        <artifactId>maven-pmd-plugin</artifactId>
+        <configuration>
+          <linkXref>true</linkXref>
+          <sourceEncoding>utf-8</sourceEncoding>
+          <minimumTokens>100</minimumTokens>
+          <targetJdk>1.5</targetJdk>
+          <aggregate>true</aggregate>
+        </configuration>
+      </plugin>
+      <plugin>
+        <groupId>org.codehaus.mojo</groupId>
+        <artifactId>taglist-maven-plugin</artifactId>
+        <configuration>
+          <tags>
+            <tag>TODO</tag>
+            <tag>@todo</tag>
+            <tag>@deprecated</tag>
+            <tag>FIXME</tag>
+          </tags>
+        </configuration>
+      </plugin>
+      <plugin>
+        <groupId>org.codehaus.mojo</groupId>
+        <artifactId>findbugs-maven-plugin</artifactId>
+        <version>1.1.1</version>
+        <configuration>
+          <xmlOutput>false</xmlOutput>
+          <!--
+            <xmlOutput>true|false</xmlOutput>
+            <xmlOutputDirectory>directory location of xml findbugs report</xmlOutputDirectory>
+            <threshold>High|Normal|Low|Exp|Ignore</threshold>
+            <effort>Min|Default|Max</effort>
+            <excludeFilterFile>findbugs-exclude.xml</excludeFilterFile>
+            <includeFilterFile>findbugs-include.xml</includeFilterFile>
+            <visitors>FindDeadLocalStores,UnreadFields</visitors>
+            <omitVisitors>FindDeadLocalStores,UnreadFields</omitVisitors>
+            <onlyAnalyze>org.codehaus.mojo.findbugs.*</onlyAnalyze>
+            <pluginList>/libs/fb-contrib/fb-contrib-2.8.0.jar</pluginList>
+            <debug>true|false</debug>
+            <relaxed>true|false</relaxed>
+          -->
+        </configuration>
+      </plugin>
+      <plugin>
+        <groupId>org.codehaus.mojo</groupId>
+        <artifactId>cobertura-maven-plugin</artifactId>
+      </plugin>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-checkstyle-plugin</artifactId>
       </plugin>
     </plugins>
   </reporting>