We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4242a18 commit 897e428Copy full SHA for 897e428
plugin/build.gradle
@@ -1,6 +1,16 @@
1
buildscript {
2
repositories {
3
maven { url = 'https://repo.grails.org/grails/core' }
4
+ if (System.getenv("GITHUB_MAVEN_PASSWORD") && !grailsVersion.endsWith('-SNAPSHOT')) {
5
+ System.out.println("Adding Grails Core Repo")
6
+ maven {
7
+ url = 'https://maven.pkg.github.com/grails/grails-core'
8
+ credentials {
9
+ username = 'DOES_NOT_MATTER'
10
+ password = System.getenv("GITHUB_MAVEN_PASSWORD")
11
+ }
12
13
14
}
15
dependencies {
16
classpath platform("org.grails:grails-bom:$grailsVersion")
0 commit comments