flogger
flogger copied to clipboard
Add Maven coordinates to README.md
@ronshapiro would you be up for this (since I'm a Maven noob).
Does this solve the issue? https://github.com/google/flogger/pull/57
We have this already: https://github.com/google/flogger#1-add-the-dependencies-on-flogger
Were you asking for something else?
Yes, those aren't in the correct format for Maven and are easy to miss. What most projects do is something like
To add a dependency on Guava using Maven, use the following:
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>27.0.1-jre</version>\
</dependency>
To add a dependency using Gradle:
dependencies {
compile 'com.google.guava:guava:27.0.1-jre'
}
I agree with @elharo. It's a matter of usability mostly. The actual example can be generated as well (although besides to scope / point of this)