Skip to content

Commit

Permalink
Grace: update gradle build scripts
Browse files Browse the repository at this point in the history
Fix plugins not applied grace-plugin
  • Loading branch information
rainboyan committed Mar 15, 2024
1 parent 425a2b7 commit 19454e9
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 0 deletions.
4 changes: 4 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,10 @@ subprojects { project->
apply plugin: "org.gradle.test-retry"
apply plugin: "io.spring.dependency-management"

if (project.name.startsWith('grace-plugin')) {
apply plugin: 'org.graceframework.grace-plugin'
}

sourceCompatibility = 17
targetCompatibility = 17

Expand Down
6 changes: 6 additions & 0 deletions grace-plugin-async/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,9 @@ dependencies {
testImplementation "org.grace:grace-test:$graceVersion"
testImplementation "org.springframework:spring-test:$springVersion"
}

jar {
enabled = true
archiveClassifier.set('')
includeEmptyDirs = false
}
6 changes: 6 additions & 0 deletions grace-plugin-events/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,9 @@ dependencies {
api project(":grace-events"), project(":grace-events-transform")
api project(":grace-events-compat")
}

jar {
enabled = true
archiveClassifier.set('')
includeEmptyDirs = false
}

0 comments on commit 19454e9

Please sign in to comment.