diff --git a/README.md b/README.md index dda967a..d6352c8 100644 --- a/README.md +++ b/README.md @@ -37,20 +37,19 @@ try {

We now release to maven!

-There is a hard dependency in the POM file for the utilities library, which is an extremely small subset of a much larger library; including only what is *necessary* for this particular project to function. - -This project is **kept in sync** with the utilities library, so "jar hell" is not an issue. Please note that the util library (in it's entirety) is not added since there are **many** dependencies that are not *necessary* for this project. No reason to require a massive amount of dependencies for one or two classes/methods. +This project **includes** some utility classes, which are an extremely small subset of a much larger library; including only what is *necessary* for this particular project to function. Additionally this project is **kept in sync** with the utilities library, so "jar hell" is not an issue, and the latest release will always include the same utility files as all other projects in the dorkbox repository at that time. + + Please note that the utility classes have their source code included in the release, and eventually the entire utility library will be provided as a dorkbox repository. ``` com.dorkbox Annotations - 2.10 + 2.11 ``` Or if you don't want to use Maven, you can access the files directly here: https://oss.sonatype.org/content/repositories/releases/com/dorkbox/Annotations/ -https://oss.sonatype.org/content/repositories/releases/com/dorkbox/Annotations-Dorkbox-Util/ https://repo1.maven.org/maven2/org/slf4j/slf4j-api/ diff --git a/src/dorkbox/annotation/AnnotationDetector.java b/src/dorkbox/annotation/AnnotationDetector.java index 342d150..540225a 100644 --- a/src/dorkbox/annotation/AnnotationDetector.java +++ b/src/dorkbox/annotation/AnnotationDetector.java @@ -199,7 +199,7 @@ class AnnotationDetector implements Builder, Cursor { */ public static String getVersion() { - return "2.10"; + return "2.11"; } /**