Skip to content

Commit 84fa682

Browse files
committed
chore: correct publishing Gradle plugin
1 parent 76d846a commit 84fa682

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

provider/gradle/build.gradle

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
1+
plugins {
2+
id "com.gradle.plugin-publish" version "1.0.0-rc-3" apply false
3+
}
4+
15
if (project.hasProperty('isGradleRelease')) {
2-
plugins {
3-
id "com.gradle.plugin-publish" version "1.0.0-rc-3"
4-
}
6+
apply plugin: 'com.gradle.plugin-publish'
57
}
68

79
dependencies {

releasePrep.groovy

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ ask('Tag and Push commits?: [Y]') {
113113
}
114114

115115
ask('Publish artifacts to maven central?: [Y]') {
116-
executeOnShell './gradlew clean publish :provider:gradle:publishPlugins -S -x :pact-publish:publish -PisRelease=true'
116+
executeOnShell './gradlew clean publish -S -x :pact-publish:publish -PisRelease=true'
117117
}
118118

119119
ask('Publish Gradle plugin?: [Y]') {

0 commit comments

Comments
 (0)