Fix coordinates
Consolidated Home for Grails Profiles
clone https://github.com/apache/grails-core ./gradlew assemble unzip build/distributions/grails-7.0.0-SNAPSHOT.zip bin/grails
Verify profiles.version in grails-core/dependencies.gradle matches version from https://github.com/apache/grails-profiles
Create USER_HOME/.grails/settings.groovy
grails {
profiles {
repositories {
mavenLocal()
grailsCentral {
url = "https://repo.grails.org/grails/core"
snapshotsEnabled = true
}
}
apacheSnapshot {
url = "https://repository.apache.org/content/groups/snapshots"
snapshotsEnabled = true
}
}
}
}
clone https://github.com/apache/grails-profiles ./gradlew build ./gradlew publishToMavenLocal
mkdir testProfiles
cd testProfiles/
{path to grails-shell cli snapshot}/grails create-app TestProfile
./gradlew dependencies --refresh-dependencies