Skip to content

Reuse CreateReleaseDropDownTask from grails-docs-core #1145

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

Merged
merged 6 commits into from
Aug 1, 2025
Merged
Show file tree
Hide file tree
Changes from 5 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .github/workflows/gradle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,8 @@ jobs:
steps:
- name: "📥 Checkout repository"
uses: actions/checkout@v4
with:
fetch-tags: true
- name: "☕️ Setup JDK"
uses: actions/setup-java@v4
with:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -218,6 +218,7 @@ jobs:
with:
token: ${{ secrets.GITHUB_TOKEN }}
ref: v${{ needs.publish.outputs.release_version }}
fetch-tags: true
- name: "☕️ Setup JDK"
uses: actions/setup-java@v4
with:
Expand Down
17 changes: 1 addition & 16 deletions buildSrc/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -56,20 +56,5 @@ dependencies {
implementation 'org.apache.grails:grails-gradle-plugins'
implementation "org.nosphere.apache.rat:org.nosphere.apache.rat.gradle.plugin:${versions.get('ratVersion')}"
implementation "org.gradle.crypto.checksum:org.gradle.crypto.checksum.gradle.plugin:${versions.get('gradleCryptoChecksumVersion')}"

testImplementation 'org.spockframework:spock-core', {
exclude(group: 'org.codehaus.groovy') // Use Gradle provided version because: Could not resolve org.codehaus.groovy:groovy:3.0.12
}
testRuntimeOnly 'org.junit.platform:junit-platform-launcher', {
// In Gradle 9, this needs to be declared
// https://docs.gradle.org/8.3/userguide/upgrading_version_8.html#test_framework_implementation_dependencies
}
}

tasks.withType(Test).configureEach {
onlyIf {
!project.hasProperty('skipTests')
}

useJUnitPlatform()
implementation 'org.apache.grails:grails-docs-core'
}

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

Loading
Loading