Compare commits

...

3 Commits

Author SHA1 Message Date
Robinson
efd6a318fd
version 2.5 2023-08-07 18:47:45 -06:00
Robinson
9fa967706f
updated license 2023-08-07 18:47:32 -06:00
Robinson
5487e2f285
updated build deps 2023-08-07 18:47:20 -06:00
4 changed files with 21 additions and 20 deletions

14
LICENSE
View File

@ -12,12 +12,6 @@
Copyright 2012
Benjamin Diedrichsen
- SLF4J - Simple facade or abstraction for various logging frameworks
[MIT License]
https://www.slf4j.org
Copyright 2023
QOS.ch
- Conversant Disruptor - Disruptor is the highest performing intra-thread transfer mechanism available in Java.
[The Apache Software License, Version 2.0]
https://github.com/conversant/disruptor
@ -30,7 +24,13 @@
Copyright 2023
INRIA, France Telecom
- 1_ClassUtils - Class helpers and utilities for managing class hierarchies.
- SLF4J - Simple facade or abstraction for various logging frameworks
[MIT License]
https://www.slf4j.org
Copyright 2023
QOS.ch
- ClassUtils - Class helpers and utilities for managing class hierarchies.
[The Apache Software License, Version 2.0]
https://git.dorkbox.com/dorkbox/ClassUtils
Copyright 2023

View File

@ -141,7 +141,7 @@ Maven Info
<dependency>
<groupId>com.dorkbox</groupId>
<artifactId>MessageBus</artifactId>
<version>2.4</version>
<version>2.5</version>
</dependency>
</dependencies>
```
@ -151,7 +151,7 @@ Gradle Info
```
dependencies {
...
implementation("com.dorkbox:MessageBus:2.4")
implementation("com.dorkbox:MessageBus:2.5")
}
```

21
build.gradle.kts Executable file → Normal file
View File

@ -1,5 +1,5 @@
/*
* Copyright 2021 dorkbox, llc
* Copyright 2023 dorkbox, llc
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@ -37,7 +37,7 @@ object Extras {
// set for the project
const val description = "Lightweight, extremely fast, and zero-gc message/event bus for Java 8+"
const val group = "com.dorkbox"
const val version = "2.4"
const val version = "2.5"
// set as project.ext
const val name = "MessageBus"
@ -55,6 +55,7 @@ object Extras {
GradleUtils.load("$projectDir/../../gradle.properties", Extras)
GradleUtils.defaults()
GradleUtils.compileConfiguration(JavaVersion.VERSION_1_8)
GradleUtils.jpms(JavaVersion.VERSION_1_9)
licensing {
license(License.APACHE_2) {
@ -88,16 +89,16 @@ tasks.jar.get().apply {
}
dependencies {
implementation("com.dorkbox:ClassUtils:1.1")
implementation("com.dorkbox:Collections:2.2")
implementation("com.dorkbox:Updates:1.1")
implementation("com.dorkbox:Utilities:1.44")
api("com.dorkbox:ClassUtils:1.2")
api("com.dorkbox:Collections:2.3")
api("com.dorkbox:Updates:1.1")
api("com.dorkbox:Utilities:1.44")
implementation("com.lmax:disruptor:3.4.4")
implementation("com.conversantmedia:disruptor:1.2.21")
api("com.lmax:disruptor:3.4.4")
api("com.conversantmedia:disruptor:1.2.21")
implementation("org.ow2.asm:asm:9.5")
implementation("com.esotericsoftware:reflectasm:1.11.9")
api("org.ow2.asm:asm:9.5")
api("com.esotericsoftware:reflectasm:1.11.9")
api("org.slf4j:slf4j-api:2.0.7")

View File

@ -99,7 +99,7 @@ class MessageBus {
*/
public static
String getVersion() {
return "2.4";
return "2.5";
}
/**