-
Notifications
You must be signed in to change notification settings - Fork 39
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
Add Gradle installation instructions to README #430
Conversation
README.md
Outdated
|
||
```groovy | ||
plugins { | ||
// The gradle plugin is an external contribution. |
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.
I got these lines from this page . Maybe we can rephrase?
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.
In the Maven section above we link to that page, and then only document the "delta". Perhaps we can directly link to the gradle-errorprone-plugin, and then only document what further changes are necessary?
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.
I am working on this, will push a suggestion ~soon.
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.
It looks better already.
Looks good. No mutations were possible for these changes. |
83499e4
to
9cecf22
Compare
Looks good. No mutations were possible for these changes. |
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.
Quick comment; I hope to have a closer look ~this weekend. (I know ~nothing about Gradle, so will need to properly sit down for this.)
README.md
Outdated
|
||
```groovy | ||
plugins { | ||
// The gradle plugin is an external contribution. |
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.
In the Maven section above we link to that page, and then only document the "delta". Perhaps we can directly link to the gradle-errorprone-plugin, and then only document what further changes are necessary?
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 for opening a PR @ghokun!
Pushed a suggestion. Also not so known with Gradle so have to take some more time for this.
README.md
Outdated
@@ -94,6 +96,33 @@ it: | |||
Prone Support. Alternatively reference this project's `self-check` profile | |||
definition. --> | |||
|
|||
#### Gradle (Groovy) |
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.
I think we can also drop "(Groovy)" 🤔.
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.
I agree. A quick search shows that only configuration part differs.
README.md
Outdated
|
||
```groovy | ||
plugins { | ||
// The gradle plugin is an external contribution. |
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.
I am working on this, will push a suggestion ~soon.
Looks good. No mutations were possible for these changes. |
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.
No changes from my side anymore, it looks good!
d4e1ebb
to
cab058f
Compare
Looks good. No mutations were possible for these changes. |
cab058f
to
c6ea368
Compare
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.
Rebased and added a tiny commit; very clear!
Suggested commit message:
Add Gradle installation instructions to README (#430)
README.md
Outdated
// Error Prone Support's Refaster rules. | ||
errorprone("tech.picnic.error-prone-support:refaster-runner:${errorProneSupportVersion}") | ||
} | ||
|
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.
Looks good. No mutations were possible for these changes. |
c6ea368
to
e673d81
Compare
Looks good. No mutations were possible for these changes. |
I have been using
error-prone-support
in a personal toy project and realized that there is no installation instruction forgradle
in website. This PR adds that.