You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@turbine.apache.org by gk...@apache.org on 2021/09/21 11:56:46 UTC

[turbine-fulcrum-intake] branch master updated: update skin in site, and fix git in pom

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

gk pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/turbine-fulcrum-intake.git


The following commit(s) were added to refs/heads/master by this push:
     new c83c3f4  update skin in site, and fix git in pom
c83c3f4 is described below

commit c83c3f43e6c906852b3b68bbbbecc641e9079eca
Author: Georg Kallidis <gk...@apache.org>
AuthorDate: Tue Sep 21 13:56:25 2021 +0200

    update skin in site, and fix git in pom
---
 .gitignore        |  2 +-
 pom.xml           |  5 +++--
 src/site/site.xml | 13 +++++++++++++
 3 files changed, 17 insertions(+), 3 deletions(-)

diff --git a/.gitignore b/.gitignore
index 3da00e9..b18ed6a 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,4 +1,4 @@
-target
+target/
 *.log
 
 .classpath
diff --git a/pom.xml b/pom.xml
index 0b7c4fb..858b303 100644
--- a/pom.xml
+++ b/pom.xml
@@ -35,7 +35,7 @@
   <!-- Required for staging to work -->
   <distributionManagement>
        <site>
-        <id>apache.website</id>
+        <id>apache.org</id>
         <!-- scmPubUrl uses turbine.site.path
         If not defined scmPubUrl uses default value ${project.distributionManagement.site.url} -->
         <url>scm:git:${turbine.scmPubUrl}</url>
@@ -45,7 +45,8 @@
   <scm>
     <connection>scm:git:https://gitbox.apache.org/repos/asf/turbine-fulcrum-intake.git</connection>
     <developerConnection>scm:git:https://gitbox.apache.org/repos/asf/turbine-fulcrum-intake.git</developerConnection>
-    <url>https://gitbox.apache.org/repos/asf/turbine-fulcrum-intake.git</url>
+    <url>https://github.com/apache/${turbine.site.path}/tree/${project.scm.tag}</url>
+    <tag>HEAD</tag>
   </scm>
 
   <developers>
diff --git a/src/site/site.xml b/src/site/site.xml
index b73ddda..3508561 100644
--- a/src/site/site.xml
+++ b/src/site/site.xml
@@ -19,10 +19,23 @@
 -->
 <project name="Fulcrum Intake">
 
+  <skin>
+    <groupId>org.apache.maven.skins</groupId>
+    <artifactId>maven-fluido-skin</artifactId>
+    <version>1.9</version>
+  </skin>
+  
   <body>
     <menu name="Overview">
       <item name="Main"                 href="/index.html"/>
       <item name="Howto"                href="/howto.html"/>
     </menu>
   </body>
+  
+    <custom>
+      <fluidoSkin>
+        <topBarEnabled>false</topBarEnabled>
+        <sideBarEnabled>true</sideBarEnabled>
+      </fluidoSkin>
+  </custom>
 </project>