Updated version/readme

This commit is contained in:
nathan 2017-02-01 00:44:59 +01:00
parent ade60fa139
commit 0fefd91020
2 changed files with 5 additions and 6 deletions

View File

@ -37,20 +37,19 @@ try {
<h4>We now release to maven!</h4>
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.
```
<dependency>
<groupId>com.dorkbox</groupId>
<artifactId>Annotations</artifactId>
<version>2.10</version>
<version>2.11</version>
</dependency>
```
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/

View File

@ -199,7 +199,7 @@ class AnnotationDetector implements Builder, Cursor {
*/
public static
String getVersion() {
return "2.10";
return "2.11";
}
/**