-
Notifications
You must be signed in to change notification settings - Fork 460
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
gradle: resolve plugin dependencies via buildscript repositories not … #100
Conversation
Looks like a few tests will need buildscript {
repositories { mavenCentral() }
} I guess Gradle testkit doesn't use any repositories by default. |
... not via project repositories
@@ -3,6 +3,7 @@ | |||
### Version 3.3.0-SNAPSHOT - TBD ([javadoc](https://diffplug.github.io/spotless/javadoc/snapshot/), [snapshot](https://oss.sonatype.org/content/repositories/snapshots/com/diffplug/spotless/spotless-plugin-gradle/)) | |||
|
|||
* Added support for groovy formatting (huge thanks to Frank Vennemeyer! [#94](https://github.com/diffplug/spotless/pull/94), [#89](https://github.com/diffplug/spotless/pull/89), [#88](https://github.com/diffplug/spotless/pull/88), [#85](https://github.com/diffplug/spotless/pull/85)) | |||
* When special-purpose formatters need to be downloaded from maven, they are now resolved using the buildscript repositories rather than the project repositories. (thanks to [cal101](https://github.com/cal101) [#100](https://github.com/diffplug/spotless/pull/100)) | |||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Did I attribute you correctly? Happy to use a different name besides cal101 or a different link besides your github profile.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Attribute as you like.
Typo in your first message "our" -> "out".
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks - force-push fixed.
Looks great! I just tweaked some error message handling that your PR brought to light. When you get a chance, signoff on the attribution I used above and I'll merge & ship. |
How do you expect it to be signed off? |
No GPG sign or anything, just a comment that I picked the right name. Merge-ho! |
It'll be in 3.3.0-SNAPSHOT once the CI finishes, and I'll release 3.3.0 later today. |
…via project repositories (#99)