You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@any23.apache.org by si...@apache.org on 2012/01/12 16:30:37 UTC

svn commit: r1230588 - /incubator/any23/trunk/pom.xml

Author: simonetripodi
Date: Thu Jan 12 15:30:37 2012
New Revision: 1230588

URL: http://svn.apache.org/viewvc?rev=1230588&view=rev
Log:
xml elements reorganized according to http://maven.apache.org/developers/conventions/code.html

Modified:
    incubator/any23/trunk/pom.xml

Modified: incubator/any23/trunk/pom.xml
URL: http://svn.apache.org/viewvc/incubator/any23/trunk/pom.xml?rev=1230588&r1=1230587&r2=1230588&view=diff
==============================================================================
--- incubator/any23/trunk/pom.xml (original)
+++ incubator/any23/trunk/pom.xml Thu Jan 12 15:30:37 2012
@@ -170,6 +170,15 @@
     </mailingList>
   </mailingLists>
 
+  <modules>
+    <module>any23-core</module>
+    <module>plugins/basic-crawler</module>
+    <module>plugins/html-scraper</module>
+    <module>plugins/office-scraper</module>
+    <module>plugins/integration-test</module>
+    <module>any23-service</module>
+  </modules>
+
   <scm>
     <developerConnection>scm:svn:https://svn.apache.org/repos/asf/incubator/any23/trunk/</developerConnection>
     <connection>scm:svn:https://svn.apache.org/repos/asf/incubator/any23/</connection>
@@ -194,52 +203,6 @@
     <sesame.version>2.6.1</sesame.version>
   </properties>
 
-  <!-- Project repository configuration. -->
-
-  <repositories>
-    <!-- Specific repository for Any23 dependencies without a dedicated repository. -->
-    <repository>
-      <id>any23-repository-external</id>
-      <url>http://any23.googlecode.com/svn/repo-ext</url>
-    </repository>
-    <!-- Specific repository for Aduna / Sesame related dependencies. -->
-    <repository>
-      <id>aduna-software-release-repo</id>
-      <name>Aduna SW Release Repository</name>
-      <url>http://repo.aduna-software.org/maven2/releases</url>
-      <layout>default</layout>
-    </repository>
-    <!-- Generic repository. -->
-    <repository>
-      <id>ibiblio-mirror-repo</id>
-      <name>Ibiblio Mirror Repository</name>
-      <url>http://mirrors.ibiblio.org/pub/mirrors/maven2</url>
-      <layout>default</layout>
-    </repository>
-    <!-- Generic repository. -->
-    <repository>
-      <id>java-maven2-repo</id>
-      <name>Java.net Repository for Maven</name>
-      <url>http://download.java.net/maven/2</url>
-      <layout>default</layout>
-    </repository>
-    <!-- Generic repository. -->
-    <repository>
-      <id>apache-public-repo</id>
-      <name>Apache Public Repository</name>
-      <url>https://repository.apache.org/content/groups/public</url>
-      <layout>default</layout>
-    </repository>
-    <!-- Generic repository. -->
-    <repository>
-      <id>apache-releases</id>
-      <name>Apache Releases</name>
-      <url>https://repository.apache.org/content/repositories/releases/</url>
-      <layout>default</layout>
-    </repository>
-
-  </repositories>
-
   <dependencyManagement>
     <dependencies>
       <dependency>
@@ -432,120 +395,50 @@
     <!-- END: Test Dependencies -->
   </dependencies>
 
-  <profiles>
-    <!-- Generates Javadoc with browsable UML. -->
-    <profile>
-      <id>umlgraphdoc</id>
-      <build>
-        <plugins>
-          <plugin>
-            <groupId>org.apache.maven.plugins</groupId>
-            <artifactId>maven-javadoc-plugin</artifactId>
-            <version>${maven.javadoc.plugin.version}</version>
-            <configuration>
-              <!--
-                NOTE:
-                This plugin is optional since it needs the GraphViz 
-                external dependency.
-                You can downalod it here: http://www.graphviz.org/
-              -->
-              <doclet>org.umlgraph.doclet.UmlGraphDoc</doclet>
-              <docletArtifact>
-                <groupId>org.umlgraph</groupId>
-                <artifactId>UmlGraph</artifactId>
-                <version>5.1</version>
-              </docletArtifact>
-            </configuration>
-            <executions>
-              <execution>
-                <id>aggregate</id>
-                <goals>
-                  <goal>aggregate</goal>
-                </goals>
-                <phase>site</phase>
-              </execution>
-            </executions>
-          </plugin>
-        </plugins>
-      </build>
-    </profile>
-  </profiles>
-
-  <reporting>
-    <plugins>
-      <!-- Main project infos. -->
-      <plugin>
-        <groupId>org.apache.maven.plugins</groupId>
-        <artifactId>maven-project-info-reports-plugin</artifactId>
-        <version>2.4</version>
-      </plugin>
-
-      <!-- Javadoc plugin. -->
-      <plugin>
-        <groupId>org.apache.maven.plugins</groupId>
-        <artifactId>maven-javadoc-plugin</artifactId>
-        <version>${maven.javadoc.plugin.version}</version>
-      </plugin>
-
-      <!-- Browsable documentation. -->
-      <plugin>
-        <groupId>org.apache.maven.plugins</groupId>
-        <artifactId>maven-jxr-plugin</artifactId>
-        <version>2.3</version>
-        <configuration>
-          <aggregate>true</aggregate>
-        </configuration>
-      </plugin>
-
-      <!-- Changelog report. -->
-      <plugin>
-        <groupId>org.apache.maven.plugins</groupId>
-        <artifactId>maven-changelog-plugin</artifactId>
-        <version>2.2</version>
-        <configuration>
-          <type>range</type>
-          <range>60</range>
-        </configuration>
-      </plugin>
-
-      <!-- Cobertura report. -->
-      <plugin>
-        <groupId>org.codehaus.mojo</groupId>
-        <artifactId>cobertura-maven-plugin</artifactId>
-        <version>2.5.1</version>
-      </plugin>
-
-      <!-- findBugs report. -->
-      <!-- TODO: deactivated because not working with Maven 3. Tried with 2.3.2/2.3.1/2.3 with no result.
-      <plugin>
-        <groupId>org.codehaus.mojo</groupId>
-        <artifactId>findbugs-maven-plugin</artifactId>
-        <version>1.1.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.deri.any23.*</onlyAnalyze>
-          <debug>true</debug>
-          <relaxed>true</relaxed>
-          <xmlOutputDirectory>target/findbugs-reports</xmlOutputDirectory>
-          <findbugsXmlOutput>target/findbugs-reports</findbugsXmlOutput>
-        </configuration>
-      </plugin>
-      -->
-
-      <!-- Check style report. -->
-      <plugin>
-        <groupId>org.apache.maven.plugins</groupId>
-        <artifactId>maven-checkstyle-plugin</artifactId>
-        <version>2.7</version>
-      </plugin>
+  <!-- Project repository configuration. -->
 
-    </plugins>
-  </reporting>
+  <repositories>
+    <!-- Specific repository for Any23 dependencies without a dedicated repository. -->
+    <repository>
+      <id>any23-repository-external</id>
+      <url>http://any23.googlecode.com/svn/repo-ext</url>
+    </repository>
+    <!-- Specific repository for Aduna / Sesame related dependencies. -->
+    <repository>
+      <id>aduna-software-release-repo</id>
+      <name>Aduna SW Release Repository</name>
+      <url>http://repo.aduna-software.org/maven2/releases</url>
+      <layout>default</layout>
+    </repository>
+    <!-- Generic repository. -->
+    <repository>
+      <id>ibiblio-mirror-repo</id>
+      <name>Ibiblio Mirror Repository</name>
+      <url>http://mirrors.ibiblio.org/pub/mirrors/maven2</url>
+      <layout>default</layout>
+    </repository>
+    <!-- Generic repository. -->
+    <repository>
+      <id>java-maven2-repo</id>
+      <name>Java.net Repository for Maven</name>
+      <url>http://download.java.net/maven/2</url>
+      <layout>default</layout>
+    </repository>
+    <!-- Generic repository. -->
+    <repository>
+      <id>apache-public-repo</id>
+      <name>Apache Public Repository</name>
+      <url>https://repository.apache.org/content/groups/public</url>
+      <layout>default</layout>
+    </repository>
+    <!-- Generic repository. -->
+    <repository>
+      <id>apache-releases</id>
+      <name>Apache Releases</name>
+      <url>https://repository.apache.org/content/repositories/releases/</url>
+      <layout>default</layout>
+    </repository>
+  </repositories>
 
   <build>
     <plugins>
@@ -699,16 +592,120 @@
         <version>1.0</version>
         </extension>
     </extensions>
-
   </build>
 
-  <modules>
-    <module>any23-core</module>
-    <module>plugins/basic-crawler</module>
-    <module>plugins/html-scraper</module>
-    <module>plugins/office-scraper</module>
-    <module>plugins/integration-test</module>
-    <module>any23-service</module>
-  </modules>
+  <reporting>
+    <plugins>
+      <!-- Main project infos. -->
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-project-info-reports-plugin</artifactId>
+        <version>2.4</version>
+      </plugin>
+
+      <!-- Javadoc plugin. -->
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-javadoc-plugin</artifactId>
+        <version>${maven.javadoc.plugin.version}</version>
+      </plugin>
+
+      <!-- Browsable documentation. -->
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-jxr-plugin</artifactId>
+        <version>2.3</version>
+        <configuration>
+          <aggregate>true</aggregate>
+        </configuration>
+      </plugin>
+
+      <!-- Changelog report. -->
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-changelog-plugin</artifactId>
+        <version>2.2</version>
+        <configuration>
+          <type>range</type>
+          <range>60</range>
+        </configuration>
+      </plugin>
+
+      <!-- Cobertura report. -->
+      <plugin>
+        <groupId>org.codehaus.mojo</groupId>
+        <artifactId>cobertura-maven-plugin</artifactId>
+        <version>2.5.1</version>
+      </plugin>
+
+      <!-- findBugs report. -->
+      <!-- TODO: deactivated because not working with Maven 3. Tried with 2.3.2/2.3.1/2.3 with no result.
+      <plugin>
+        <groupId>org.codehaus.mojo</groupId>
+        <artifactId>findbugs-maven-plugin</artifactId>
+        <version>1.1.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.deri.any23.*</onlyAnalyze>
+          <debug>true</debug>
+          <relaxed>true</relaxed>
+          <xmlOutputDirectory>target/findbugs-reports</xmlOutputDirectory>
+          <findbugsXmlOutput>target/findbugs-reports</findbugsXmlOutput>
+        </configuration>
+      </plugin>
+      -->
+
+      <!-- Check style report. -->
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-checkstyle-plugin</artifactId>
+        <version>2.7</version>
+      </plugin>
+    </plugins>
+  </reporting>
+
+  <profiles>
+    <!-- Generates Javadoc with browsable UML. -->
+    <profile>
+      <id>umlgraphdoc</id>
+      <build>
+        <plugins>
+          <plugin>
+            <groupId>org.apache.maven.plugins</groupId>
+            <artifactId>maven-javadoc-plugin</artifactId>
+            <version>${maven.javadoc.plugin.version}</version>
+            <configuration>
+              <!--
+                NOTE:
+                This plugin is optional since it needs the GraphViz 
+                external dependency.
+                You can downalod it here: http://www.graphviz.org/
+              -->
+              <doclet>org.umlgraph.doclet.UmlGraphDoc</doclet>
+              <docletArtifact>
+                <groupId>org.umlgraph</groupId>
+                <artifactId>UmlGraph</artifactId>
+                <version>5.1</version>
+              </docletArtifact>
+            </configuration>
+            <executions>
+              <execution>
+                <id>aggregate</id>
+                <goals>
+                  <goal>aggregate</goal>
+                </goals>
+                <phase>site</phase>
+              </execution>
+            </executions>
+          </plugin>
+        </plugins>
+      </build>
+    </profile>
+  </profiles>
 
 </project>