Updated builds + build system

This commit is contained in:
nathan 2016-02-13 18:51:13 +01:00
parent 4db2e1f08d
commit d4b2f4516a
2 changed files with 2 additions and 8 deletions

View File

@ -132,7 +132,7 @@ The MessageBus is available from the Maven Central Repository using the followin
<dependency> <dependency>
<groupId>com.dorkbox</groupId> <groupId>com.dorkbox</groupId>
<artifactId>MessageBus</artifactId> <artifactId>MessageBus</artifactId>
<version>1.7</version> <version>1.9</version>
</dependency> </dependency>
``` ```
@ -143,8 +143,3 @@ https://oss.sonatype.org/content/repositories/releases/com/dorkbox/MessageBus/
This project is distributed under the terms of the Apache v2.0 License. See file "LICENSE" for further references. This project is distributed under the terms of the Apache v2.0 License. See file "LICENSE" for further references.

View File

@ -107,7 +107,7 @@ class MessageBus implements IMessageBus {
*/ */
public static public static
String getVersion() { String getVersion() {
return "1.7"; return "1.9";
} }
private final ErrorHandler errorHandler; private final ErrorHandler errorHandler;
@ -355,4 +355,3 @@ class MessageBus implements IMessageBus {
} }
} }