You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@isis.apache.org by ah...@apache.org on 2022/04/10 05:16:29 UTC

[isis] branch master updated: ISIS-2445: try build local staging repo (5)

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

ahuber pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/isis.git


The following commit(s) were added to refs/heads/master by this push:
     new 96876024fe ISIS-2445: try build local staging repo (5)
96876024fe is described below

commit 96876024fea61d43f78c45dcdd9ee6922b781ba3
Author: Andi Huber <ah...@apache.org>
AuthorDate: Sun Apr 10 07:16:23 2022 +0200

    ISIS-2445: try build local staging repo (5)
---
 isis-parent/pom.xml | 31 +++++++++++++++++++++++++++++++
 1 file changed, 31 insertions(+)

diff --git a/isis-parent/pom.xml b/isis-parent/pom.xml
index 6ce78a45f9..0551c8cff9 100644
--- a/isis-parent/pom.xml
+++ b/isis-parent/pom.xml
@@ -1125,6 +1125,37 @@ under the License.
 			        <url>file://${project.build.directory}/mvn-artifact</url> 
 			    </repository> 
 			</distributionManagement>
+			<build>
+				<plugins>
+					<plugin>
+					    <groupId>com.github.github</groupId>
+					    <artifactId>site-maven-plugin</artifactId>
+					    <version>0.12</version>
+					    <configuration>
+					        <message>Maven artifacts for ${project.version}</message>
+					        <noJekyll>true</noJekyll>
+					        <outputDirectory>${project.build.directory}</outputDirectory>
+					        <branch>refs/heads/master</branch>
+					        <includes>
+					            <include>**/*</include>
+					        </includes>
+					        <merge>true</merge>
+					        <repositoryName>apache</repositoryName>
+					        <repositoryOwner>isis</repositoryOwner>
+					        <server>github</server>
+					    </configuration>
+					    <executions>
+					        <execution>
+					            <goals>
+					                <goal>site</goal>
+					            </goals>
+					            <phase>deploy</phase>
+					        </execution>
+					    </executions>
+					</plugin>
+				</plugins>
+			</build>
+			
 		</profile>
 
 		<!-- APACHE ISIS customisation 15/15: end -->