Skip to content

Commit

Permalink
[skip ci] pre-release 4.0.0-M1
Browse files Browse the repository at this point in the history
  • Loading branch information
jdaugherty committed Dec 24, 2024
1 parent c703cb8 commit 487b9eb
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 13 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
SIGNING_KEY: ${{ secrets.SIGNING_KEY }}
SIGNING_PASSPHRASE: ${{ secrets.SIGNING_PASSPHRASE }}
with:
arguments: -Psigning.secretKeyRingFile=${{ github.workspace }}/secring.gpg publishToSonatype closeAndReleaseSonatypeStagingRepository
arguments: -U -Psigning.secretKeyRingFile=${{ github.workspace }}/secring.gpg publishToSonatype closeAndReleaseSonatypeStagingRepository

- name: Generate Documentation
if: success()
Expand Down
12 changes: 2 additions & 10 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -17,17 +17,14 @@ plugins {
id "idea"
}


version = projectVersion
group = 'org.grails.plugins'

apply plugin: "org.grails.grails-plugin"
apply plugin: 'org.grails.grails-doc'
apply plugin: 'org.grails.grails-publish'


repositories {
mavenLocal()
mavenCentral()
maven { url = 'https://repo.grails.org/grails/core' }
}
Expand All @@ -36,12 +33,8 @@ compileJava {
options.release = 17
}

repositories {
mavenCentral()
maven { url "https://repo.grails.org/grails/core" }
}

dependencies {
implementation platform("org.grails:grails-bom:$grailsVersion")

api "org.quartz-scheduler:quartz:$quartzVersion"

Expand All @@ -56,7 +49,7 @@ dependencies {

testImplementation "org.spockframework:spock-core"

testRuntimeOnly "org.slf4j:slf4j-nop:$slf4jVersion" // Get rid of warning about missing slf4j implementation during test task
testRuntimeOnly "org.slf4j:slf4j-nop" // Get rid of warning about missing slf4j implementation during test task
}

jar {
Expand All @@ -68,7 +61,6 @@ test {
useJUnitPlatform()
}


configurations.register('groovydocConfiguration')
configurations.register('guideConfiguration')

Expand Down
3 changes: 1 addition & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
projectVersion=4.0.0-SNAPSHOT

grailsVersion=7.0.0-SNAPSHOT
grailsVersion=7.0.0-M1
quartzVersion=2.5.0
slf4jVersion =2.0.16

slf4jPreventExclusion=true

Expand Down

0 comments on commit 487b9eb

Please sign in to comment.