You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@isis.apache.org by da...@apache.org on 2021/03/12 19:33:59 UTC

[isis-app-helloworld] 01/01: adds repositories, bumps to 2.0.0-M5

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

danhaywood pushed a commit to branch jdo
in repository https://gitbox.apache.org/repos/asf/isis-app-helloworld.git

commit daff235bc5c8d3d6343921d3b1557ac4dcfbca73
Author: danhaywood <da...@haywood-associates.co.uk>
AuthorDate: Fri Mar 12 19:33:44 2021 +0000

    adds repositories, bumps to 2.0.0-M5
---
 pom.xml | 30 +++++++++++++++++++++++++++++-
 1 file changed, 29 insertions(+), 1 deletion(-)

diff --git a/pom.xml b/pom.xml
index 6049106..c1e7f4b 100644
--- a/pom.xml
+++ b/pom.xml
@@ -7,7 +7,7 @@
 	<parent>
 		<groupId>org.apache.isis.app</groupId>
 		<artifactId>isis-app-starter-parent</artifactId>
-		<version>2.0.0-SNAPSHOT</version>
+		<version>2.0.0-M5</version>
 		<relativePath/>
 	</parent>
 
@@ -138,6 +138,34 @@ Uncomment to override.
 				</plugins>
 			</build>
 		</profile>
+		<profile>
+			<id>staging</id>
+			<activation>
+				<property>
+					<name>!skip.staging</name>
+				</property>
+			</activation>
+			<repositories>
+				<repository>
+					<id>staging</id>
+					<url>https://repository.apache.org/content/groups/staging/</url>
+				</repository>
+			</repositories>
+		</profile>
+		<profile>
+			<id>nightly</id>
+			<activation>
+				<property>
+					<name>!skip.nightly</name>
+				</property>
+			</activation>
+			<repositories>
+				<repository>
+					<id>nightly-builds</id>
+					<url>https://nexus.incode.work/repository/nightly-builds/</url>
+				</repository>
+			</repositories>
+		</profile>
 	</profiles>
 
 </project>