Skip to content

Commit

Permalink
chore: upgrade Gradle project to use 1.0 of the plugin-publish plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
uglyog committed Jun 28, 2022
1 parent 66ad21e commit 0c06625
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
6 changes: 5 additions & 1 deletion provider/gradle/build.gradle
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
plugins {
id "com.gradle.plugin-publish" version "0.11.0"
id "com.gradle.plugin-publish" version "1.0.0-rc-3"
}

dependencies {
implementation project(":provider")
implementation gradleApi()
implementation localGroovy()
implementation 'com.github.ajalt:mordant:1.2.1'
implementation 'commons-io:commons-io:2.11.0'
implementation "org.apache.commons:commons-lang3:${project.commonsLang3Version}"
Expand All @@ -27,11 +28,14 @@ pluginBundle {
vcsUrl = 'https://github.com/DiUS/pact-jvm.git'
description = 'Gradle plugin for verifying pacts against a provider.'
tags = ['pact', 'cdc', 'consumerdrivencontracts', 'microservicetesting']
}

gradlePlugin {
plugins {
pactProviderPlugin {
id = 'au.com.dius.pact'
displayName = 'Gradle Pact Provider plugin'
implementationClass = 'au.com.dius.pact.provider.gradle.PactPlugin'
}
}
}
Expand Down

This file was deleted.

0 comments on commit 0c06625

Please sign in to comment.