This is an automated email from the ASF dual-hosted git repository. jamesfredley pushed a commit to branch apache-coordinates in repository https://gitbox.apache.org/repos/asf/grails-profiles.git
commit 20ccc8d631cbe0469a10fd3efa8b8b8f351b3ff1 Author: James Fredley <[email protected]> AuthorDate: Fri Apr 18 17:07:01 2025 -0400 Add apache snapshot repository --- README.md | 5 +++++ base/profile.yml | 2 ++ build.gradle | 2 ++ profile/skeleton/build.gradle | 2 ++ 4 files changed, 11 insertions(+) diff --git a/README.md b/README.md index 382b321..78fdcba 100644 --- a/README.md +++ b/README.md @@ -26,6 +26,11 @@ Create **USER_HOME/.grails/settings.groovy** snapshotsEnabled = true } } + apacheSnapshot { + url = "https://repository.apache.org/content/groups/snapshots/" + snapshotsEnabled = true + } + } } } diff --git a/base/profile.yml b/base/profile.yml index 47054fd..b35ff5c 100644 --- a/base/profile.yml +++ b/base/profile.yml @@ -4,9 +4,11 @@ skeleton: binaryExtensions: ['png','gif','jpg','jpeg','ico','icns','pdf','zip','jar','class'] repositories: - "https://repo.grails.org/grails/core" + - "https://repository.apache.org/content/groups/snapshots/" build: repositories: - "https://repo.grails.org/grails/core" + - "https://repository.apache.org/content/groups/snapshots/" plugins: - eclipse - idea diff --git a/build.gradle b/build.gradle index 95f281f..37c256e 100644 --- a/build.gradle +++ b/build.gradle @@ -1,6 +1,7 @@ buildscript { repositories { mavenCentral() + maven { url "https://repository.apache.org/content/groups/snapshots/" } maven { url "https://repo.grails.org/grails/core" } // mavenLocal() // for local testing, do not commit uncommented } @@ -25,6 +26,7 @@ subprojects { Project subproject -> repositories { mavenCentral() + maven { url "https://repository.apache.org/content/groups/snapshots/" } maven { url "https://repo.grails.org/grails/core" } // mavenLocal() // for local testing, do not commit uncommented } diff --git a/profile/skeleton/build.gradle b/profile/skeleton/build.gradle index eb855e3..de506f0 100644 --- a/profile/skeleton/build.gradle +++ b/profile/skeleton/build.gradle @@ -3,6 +3,7 @@ buildscript { gradlePluginPortal() mavenCentral() maven { url "https://repo.grails.org/grails/core" } + maven { url "https://repository.apache.org/content/groups/snapshots/" } // mavenLocal() // for local testing, do not commit uncommented } dependencies { @@ -19,6 +20,7 @@ version '1.0.0-SNAPSHOT' repositories { mavenCentral() maven { url "https://repo.grails.org/grails/core" } + maven { url "https://repository.apache.org/content/groups/snapshots/" } // mavenLocal() // for local testing, do not commit uncommented }
