You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cayenne.apache.org by nt...@apache.org on 2022/11/15 13:24:49 UTC

[cayenne] branch STABLE-4.0 updated (1736f4f11 -> ee3f458d3)

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

ntimofeev pushed a change to branch STABLE-4.0
in repository https://gitbox.apache.org/repos/asf/cayenne.git


    from 1736f4f11 Enable GitHub actions
     new 04d15c825 Enable GitHub actions
     new ee3f458d3 CAY-2775 Change ObjectStyle maven repository URL

The 2 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/verify-on-pr-4.0.yml   | 2 +-
 .github/workflows/verify-on-push-4.0.yml | 2 +-
 RELEASE-NOTES.txt                        | 1 +
 pom.xml                                  | 4 ++--
 4 files changed, 5 insertions(+), 4 deletions(-)


[cayenne] 02/02: CAY-2775 Change ObjectStyle maven repository URL

Posted by nt...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

ntimofeev pushed a commit to branch STABLE-4.0
in repository https://gitbox.apache.org/repos/asf/cayenne.git

commit ee3f458d38c07e9ea397b054ac223c3344f1af4e
Author: Nikita Timofeev <st...@gmail.com>
AuthorDate: Tue Nov 15 16:24:36 2022 +0300

    CAY-2775 Change ObjectStyle maven repository URL
---
 RELEASE-NOTES.txt | 1 +
 pom.xml           | 4 ++--
 2 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/RELEASE-NOTES.txt b/RELEASE-NOTES.txt
index 8a423c2ae..6e48ee2d4 100644
--- a/RELEASE-NOTES.txt
+++ b/RELEASE-NOTES.txt
@@ -16,6 +16,7 @@ Changes/New Features:
 
 CAY-2519 Use NoopEventManager if SERVER_CONTEXTS_SYNC_PROPERTY is false
 CAY-2570 Use MySQL adapter for latest versions of MariaDB
+CAY-2775 Change ObjectStyle maven repository URL
 
 Bug Fixes:
 
diff --git a/pom.xml b/pom.xml
index 12ce901ac..f29dbb72c 100644
--- a/pom.xml
+++ b/pom.xml
@@ -489,7 +489,7 @@
 		<repository>
 			<id>objectstyle</id>
 			<name>ObjectStyle Repository</name>
-			<url>https://maven.objectstyle.org/nexus/content/groups/cayenne-deps</url>
+			<url>https://maven.objectstyle.org/repos/cayenne-deps/</url>
 			<layout>default</layout>
 			<snapshots>
 				<enabled>false</enabled>
@@ -503,7 +503,7 @@
 		<pluginRepository>
 			<id>objectstyle</id>
 			<name>ObjectStyle repository</name>
-			<url>https://maven.objectstyle.org/nexus/content/groups/cayenne-deps</url>
+			<url>https://maven.objectstyle.org/repos/cayenne-deps/</url>
 			<layout>default</layout>
 			<snapshots>
 				<enabled>false</enabled>


[cayenne] 01/02: Enable GitHub actions

Posted by nt...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

ntimofeev pushed a commit to branch STABLE-4.0
in repository https://gitbox.apache.org/repos/asf/cayenne.git

commit 04d15c8251ff10c1ab242a19483ff72dcb4cef91
Author: Nikita Timofeev <st...@gmail.com>
AuthorDate: Tue Nov 15 16:24:14 2022 +0300

    Enable GitHub actions
---
 .github/workflows/verify-on-pr-4.0.yml   | 2 +-
 .github/workflows/verify-on-push-4.0.yml | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/verify-on-pr-4.0.yml b/.github/workflows/verify-on-pr-4.0.yml
index fdd1fe4a0..0e85d10cb 100644
--- a/.github/workflows/verify-on-pr-4.0.yml
+++ b/.github/workflows/verify-on-pr-4.0.yml
@@ -29,7 +29,7 @@ jobs:
     strategy:
       matrix:
         jdk: [8, 11]
-        db-profile: [hsql, h2, derby, mysql-docker, postgres-docker, sqlserver-docker]
+        db-profile: [hsql, h2, derby, mysql-docker] #TODO: postgres-docker, sqlserver-docker
       fail-fast: true
 
     env:
diff --git a/.github/workflows/verify-on-push-4.0.yml b/.github/workflows/verify-on-push-4.0.yml
index 8cb7ee30f..7679ccbc6 100644
--- a/.github/workflows/verify-on-push-4.0.yml
+++ b/.github/workflows/verify-on-push-4.0.yml
@@ -28,7 +28,7 @@ jobs:
     strategy:
       matrix:
         jdk: [8, 11]
-        db-profile: [hsql, h2, derby, mysql-docker, postgres-docker, sqlserver-docker]
+        db-profile: [hsql, h2, derby, mysql-docker] #TODO: postgres-docker, sqlserver-docker
       fail-fast: false # finish all jobs anyway
 
     env: