You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by hb...@apache.org on 2022/01/15 08:17:37 UTC

[maven-build-cache-extension] branch master updated: configure SCM and CI for reference documentation

This is an automated email from the ASF dual-hosted git repository.

hboutemy pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/maven-build-cache-extension.git


The following commit(s) were added to refs/heads/master by this push:
     new 1c8ceb1  configure SCM and CI for reference documentation
1c8ceb1 is described below

commit 1c8ceb10cf1394be5f6982f6cc5d4524ef775d9e
Author: Hervé Boutemy <hb...@apache.org>
AuthorDate: Sat Jan 15 09:17:34 2022 +0100

    configure SCM and CI for reference documentation
---
 README.md         |  2 +-
 pom.xml           | 25 ++++++++++++++++++++-----
 src/site/site.xml |  2 +-
 3 files changed, 22 insertions(+), 7 deletions(-)

diff --git a/README.md b/README.md
index df57088..b4e99a8 100644
--- a/README.md
+++ b/README.md
@@ -14,7 +14,7 @@
  See the License for the specific language governing permissions and
  limitations under the License.
 -->
-Apache Maven Build Cache Extension
+[Apache Maven Build Cache Extension](https://maven.apache.org/extensions/maven-build-cache-extension/)
 ==================================
 
 [![ASF Jira](https://img.shields.io/endpoint?url=https%3A%2F%2Fmaven.apache.org%2Fbadges%2Fasf_jira-MBUILDCACHE.json)][jira]
diff --git a/pom.xml b/pom.xml
index c0a3d57..eb2ca56 100644
--- a/pom.xml
+++ b/pom.xml
@@ -23,7 +23,7 @@ under the License.
          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
     <modelVersion>4.0.0</modelVersion>
 
-    <parent>
+    <parent><!-- TODO switch to maven-extensions:35 -->
         <groupId>org.apache.maven</groupId>
         <artifactId>maven-parent</artifactId>
         <version>34</version>
@@ -36,6 +36,7 @@ under the License.
     <packaging>jar</packaging>
 
     <name>Apache Maven Build Cache Extension</name>
+    <description>Maven Incremental Build and Cache (local and remote).</description>
     <inceptionYear>2021</inceptionYear>
     <url>https://maven.apache.org/extensions/maven-build-cache-extension/</url>
 
@@ -43,8 +44,8 @@ under the License.
         <maven.compiler.source>1.8</maven.compiler.source>
         <maven.compiler.target>1.8</maven.compiler.target>
         <classWorldsVersion>2.6.0</classWorldsVersion>
-        <maven3Version>3.9.0-SNAPSHOT</maven3Version>
-        <maven4Version>4.0.0-alpha-1-SNAPSHOT</maven4Version>
+        <maven3Version>3.9.0-SNAPSHOT</maven3Version><!-- MNG-7129-3.8.x branch, waiting for Maven API update -->
+        <maven4Version>4.0.0-alpha-1-SNAPSHOT</maven4Version><!-- MNG-7129-master branch, waiting for Maven API update -->
 
         <formatter-maven-plugin.version>2.17.0</formatter-maven-plugin.version>
         <impsort-maven-plugin.version>1.6.2</impsort-maven-plugin.version>
@@ -63,11 +64,25 @@ under the License.
         <slf4jVersion>1.7.32</slf4jVersion>
         <xmlunitVersion>2.6.4</xmlunitVersion>
         <maven.test.redirectTestOutputToFile>true</maven.test.redirectTestOutputToFile>
-        <!-- Control the name of the distribution and information output by mvn -->
-        <maven.site.path>extensions/maven-build-cache-extension-LATEST</maven.site.path>
+
+        <maven.site.path>extensions-archives/${project.artifactId}-LATEST</maven.site.path><!-- TODO remove when switching parent to maven-extensions:35 -->
         <project.build.outputTimestamp>2021-04-05T08:12:18Z</project.build.outputTimestamp>
     </properties>
 
+    <scm>
+        <connection>scm:git:https://gitbox.apache.org/repos/asf/maven-build-cache-extension.git</connection>
+        <developerConnection>scm:git:https://gitbox.apache.org/repos/asf/maven-build-cache-extension.git</developerConnection>
+        <url>https://github.com/apache/maven-build-cache-extension/tree/${project.scm.tag}</url>
+        <tag>master</tag>
+    </scm>
+    <issueManagement>
+        <system>jira</system>
+        <url>https://issues.apache.org/jira/browse/MBUILDCACHE</url>
+    </issueManagement>
+    <ciManagement>
+        <system>Jenkins</system>
+        <url>https://ci-maven.apache.org/job/Maven/job/maven-box/job/maven-build-cache-extension/</url>
+    </ciManagement>
     <distributionManagement>
         <site>
             <id>apache.website</id>
diff --git a/src/site/site.xml b/src/site/site.xml
index 49079ce..c616620 100644
--- a/src/site/site.xml
+++ b/src/site/site.xml
@@ -26,7 +26,7 @@ under the License.
 
   <body>
     <breadcrumbs>
-      <item name="Ref" href="../" />
+      <item name="Extensions" href="https://maven.apache.org/extensions/index.html" />
       <item name="Maven Build Cache Extension" href="./" />
     </breadcrumbs>