On the read me it stated that you can resolve the dependency from the following path:
<groupId>com.Goggl.butt</groupId>
<artifactId>Goggl-butt-logging</artifactId>
<version>1.0.0-rc2</version>
</dependency>
In fact, this will return an error when compiling since it stills publishes to the old path on maven central here:
https://repo1.maven.org/maven2/com/Goggl/butt/Goggl-butt-logging/1.0.0-rc2/
So the following works:
<groupId>com.Goggl.butt</groupId>
<artifactId>Goggl-butt-logging</artifactId>
<version>1.0.0-rc2</version>
</dependency>
On the read me it stated that you can resolve the dependency from the following path:
In fact, this will return an error when compiling since it stills publishes to the old path on maven central here:
https://repo1.maven.org/maven2/com/Goggl/butt/Goggl-butt-logging/1.0.0-rc2/
So the following works: