Skip to content

Commit

Permalink
Update build scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
rainboyan committed Nov 8, 2024
1 parent b9033e2 commit e17fb09
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 12 deletions.
2 changes: 1 addition & 1 deletion buildSrc/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ repositories {
}

dependencies {
implementation "io.github.gradle-nexus:publish-plugin:2.0.0"
implementation "org.graceframework:grace-gradle-plugin:2023.0.3"
implementation "org.graceframework.plugins:asset-pipeline-gradle:6.0.1"
implementation "org.graceframework.plugins:database-migration:6.0.1"
implementation "com.github.erdi:webdriver-binaries-gradle-plugin:3.2"
implementation "io.github.gradle-nexus:publish-plugin:2.0.0"
}
18 changes: 7 additions & 11 deletions plugin/build.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
buildscript {
repositories {
mavenCentral()
}
plugins {
id "eclipse"
id "idea"
id "groovy"
id "org.graceframework.grace-plugin"
id "maven-publish"
id "signing"
}

ext."signing.keyId" = project.hasProperty("signing.keyId") ? project.getProperty('signing.keyId') : System.getenv('SIGNING_KEY')
Expand All @@ -12,13 +15,6 @@ ext.isReleaseVersion = !projectVersion.endsWith("SNAPSHOT")
version projectVersion
group "org.graceframework.plugins"

apply plugin: "eclipse"
apply plugin: "idea"
apply plugin: "groovy"
apply plugin: "org.graceframework.grace-plugin"
apply plugin: "maven-publish"
apply plugin: "signing"

repositories {
mavenCentral()
maven {
Expand Down

0 comments on commit e17fb09

Please sign in to comment.