Skip to content

Commit e17fb09

Browse files
committed
Update build scripts
1 parent b9033e2 commit e17fb09

File tree

2 files changed

+8
-12
lines changed

2 files changed

+8
-12
lines changed

buildSrc/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ repositories {
55
}
66

77
dependencies {
8+
implementation "io.github.gradle-nexus:publish-plugin:2.0.0"
89
implementation "org.graceframework:grace-gradle-plugin:2023.0.3"
910
implementation "org.graceframework.plugins:asset-pipeline-gradle:6.0.1"
1011
implementation "org.graceframework.plugins:database-migration:6.0.1"
1112
implementation "com.github.erdi:webdriver-binaries-gradle-plugin:3.2"
12-
implementation "io.github.gradle-nexus:publish-plugin:2.0.0"
1313
}

plugin/build.gradle

Lines changed: 7 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
1-
buildscript {
2-
repositories {
3-
mavenCentral()
4-
}
1+
plugins {
2+
id "eclipse"
3+
id "idea"
4+
id "groovy"
5+
id "org.graceframework.grace-plugin"
6+
id "maven-publish"
7+
id "signing"
58
}
69

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

15-
apply plugin: "eclipse"
16-
apply plugin: "idea"
17-
apply plugin: "groovy"
18-
apply plugin: "org.graceframework.grace-plugin"
19-
apply plugin: "maven-publish"
20-
apply plugin: "signing"
21-
2218
repositories {
2319
mavenCentral()
2420
maven {

0 commit comments

Comments
 (0)