-
Notifications
You must be signed in to change notification settings - Fork 98
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
More updates for 7.0.0-M1 #170
Conversation
Updated Asciidoctor to `4.0.4`, enabling the removal of the transitive dependency workaround and the Ruby repository configuration.
Add an `.sdkmanrc` file to define JDK version for consistent development environment setup.
- Extract java configuration - Combine test configuration to one file
This prevents the Grails Gradle Plugin from unnecessarily excluding `slf4j-simple` in the generated POMs (grails/grails-gradle-plugin#222)
plugin/build.gradle
Outdated
|
||
repositories { | ||
maven { url = 'https://repo.grails.org/grails/core' } | ||
mavenCentral() | ||
if (System.getenv('GITHUB_MAVEN_PASSWORD') && !grailsVersion.endsWith('-SNAPSHOT')) { | ||
logger.lifecycle('Adding Milestone Grails Core Repo for project {}', project.name) | ||
logger.lifecycle('Adding Grails Core Milestone Repo for project {}', project.name) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This really is the staging repo - it can be used for release or milestone
@@ -3,9 +3,8 @@ buildscript { | |||
maven { url = 'https://repo.grails.org/grails/core' } | |||
} | |||
dependencies { | |||
classpath "org.grails:grails-bom:$grailsVersion" | |||
classpath platform("org.grails:grails-bom:$grailsVersion") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why is the bom required on the gradle classpath?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Without it, I have to set the version of asset-pipeline-gradle
.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is genius! We could remove the assetPipelinePluginVersion properties in several projects by doing this too.
5827b2b
to
16fb710
Compare
No description provided.