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:58 UTC

[isis-app-helloworld] branch jdo updated (1c5e393 -> daff235)

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

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


    from 1c5e393  use JDOQL for query, reconcile whitespace with jpa version
     add 9c3ba93  reconciling with simpleapp
     new daff235  adds repositories, bumps to 2.0.0-M5

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .github/workflows/build-and-test.yml | 100 +++++++++++++++++++++++++++++++++++
 .github/workflows/mavenJdk15.yml     |  56 --------------------
 .github/workflows/mavenJdk8.yml      |  61 ---------------------
 pom.xml                              |  30 ++++++++++-
 4 files changed, 129 insertions(+), 118 deletions(-)
 create mode 100644 .github/workflows/build-and-test.yml
 delete mode 100644 .github/workflows/mavenJdk15.yml
 delete mode 100644 .github/workflows/mavenJdk8.yml


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

Posted by da...@apache.org.
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>