Skip to content

Commit

Permalink
Removing gradle.plugin from group/pluginId
Browse files Browse the repository at this point in the history
  • Loading branch information
Devon Stewart committed Feb 20, 2021
1 parent 77b2c41 commit 7b72035
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ Common example of how to generate the client code and use it in your project:
```build.gradle
plugins {
id('java')
id('com.twilio.guardrail.gradle.plugin')
id('com.twilio.guardrail')
}
repositories {
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ dependencies {
testImplementation 'cglib:cglib-nodep:3.3.0'
}

group = 'com.twilio.guardrail.gradle.plugin'
group = 'com.twilio.guardrail'

version = gitVersion()

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ class GuardrailGradlePluginFunctionalTest extends Specification {
new File(projectDir, "settings.gradle") << ""
new File(projectDir, "build.gradle") << """
plugins {
id('com.twilio.guardrail.gradle.plugin')
id('com.twilio.guardrail')
}
guardrail {
Expand Down

0 comments on commit 7b72035

Please sign in to comment.