You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@logging.apache.org by bo...@apache.org on 2017/08/01 12:20:45 UTC

logging-chainsaw git commit: make site build work with Maven 3.x

Repository: logging-chainsaw
Updated Branches:
  refs/heads/master f09419950 -> a31d41b24


make site build work with Maven 3.x


Project: http://git-wip-us.apache.org/repos/asf/logging-chainsaw/repo
Commit: http://git-wip-us.apache.org/repos/asf/logging-chainsaw/commit/a31d41b2
Tree: http://git-wip-us.apache.org/repos/asf/logging-chainsaw/tree/a31d41b2
Diff: http://git-wip-us.apache.org/repos/asf/logging-chainsaw/diff/a31d41b2

Branch: refs/heads/master
Commit: a31d41b24aae80fe23c010ea7b979b66781ed10b
Parents: f094199
Author: Stefan Bodewig <st...@innoq.com>
Authored: Tue Aug 1 14:20:21 2017 +0200
Committer: Stefan Bodewig <st...@innoq.com>
Committed: Tue Aug 1 14:20:21 2017 +0200

----------------------------------------------------------------------
 pom.xml           | 42 +++++++++++++++++++++++++++++++++---------
 src/site/site.xml |  2 +-
 2 files changed, 34 insertions(+), 10 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/logging-chainsaw/blob/a31d41b2/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index 32c4408..2776407 100644
--- a/pom.xml
+++ b/pom.xml
@@ -131,7 +131,7 @@
       <plugin>
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-project-info-reports-plugin</artifactId>
-        <version>2.2</version>
+        <version>2.8.1</version>
       </plugin>
       <plugin>
         <artifactId>maven-surefire-plugin</artifactId>
@@ -371,6 +371,14 @@
           <verbose>false</verbose>
         </configuration>
       </plugin>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-site-plugin</artifactId>
+        <version>${site.plugin.version}</version>
+        <configuration>
+          <locales>en</locales>
+        </configuration>
+      </plugin>
     </plugins>
   </build>
   <repositories>
@@ -467,7 +475,7 @@
       <plugin>
          <groupId>org.apache.maven.plugins</groupId>
          <artifactId>maven-jxr-plugin</artifactId>
-         <version>2.2</version>
+         <version>2.5</version>
       </plugin>
       <plugin>
         <groupId>org.apache.maven.plugins</groupId>
@@ -508,21 +516,37 @@
           <encoding>UTF-8</encoding>
         </configuration>
       </plugin>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-project-info-reports-plugin</artifactId>
+        <version>2.8.1</version>
+        <reportSets>
+          <reportSet>
+            <reports>
+              <report>cim</report>
+              <report>scm</report>
+              <report>license</report>
+              <report>project-team</report>
+              <report>issue-tracking</report>
+              <report>mailing-list</report>
+              <report>dependencies</report>
+            </reports>
+          </reportSet>
+        </reportSets>
+      </plugin>
     </plugins>
   </reporting>
-    <distributionManagement>
-    <repository>
-      <id>logging.repo</id>
-      <url>scp://people.apache.org/www/people.apache.org/builds/logging/repo/</url>
-    </repository>
+  <distributionManagement>
+    <downloadUrl>https://logging.apache.org/log4j/chainsaw/download.html</downloadUrl>
     <site>
-      <id>logging.site</id>
-      <url>file:///${user.dir}/target/site-deploy</url>
+      <id>www.example.com</id>
+      <url>scp://www.example.com/www/docs/project/</url>
     </site>
   </distributionManagement>
   <properties>
     <chainsaw.mainclass>org.apache.log4j.chainsaw.LogUI</chainsaw.mainclass>
     <javadoc.plugin.version>2.10.4</javadoc.plugin.version>
+    <site.plugin.version>3.4</site.plugin.version>
   </properties>
   <profiles>
     <profile>

http://git-wip-us.apache.org/repos/asf/logging-chainsaw/blob/a31d41b2/src/site/site.xml
----------------------------------------------------------------------
diff --git a/src/site/site.xml b/src/site/site.xml
index fd04f03..4ef2f91 100644
--- a/src/site/site.xml
+++ b/src/site/site.xml
@@ -56,7 +56,7 @@
 	
 	<menu name="Development">
 		<item name="Repository" href="/source-repository.html"/>
-		<item name="Cross Reference" href="/jxr.html"/>
+		<item name="Cross Reference" href="/xref/index.html"/>
 		<item name="Dependencies" href="/dependencies.html"/>
 		<item name="Continuous Integration" href="/integration.html"/>
 		<item name="Duplication" href="/cpd.html"/>