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 Copyright 2012
Benjamin Diedrichsen 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. - Conversant Disruptor - Disruptor is the highest performing intra-thread transfer mechanism available in Java.
[The Apache Software License, Version 2.0] [The Apache Software License, Version 2.0]
https://github.com/conversant/disruptor https://github.com/conversant/disruptor
@ -30,7 +24,13 @@
Copyright 2023 Copyright 2023
INRIA, France Telecom 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] [The Apache Software License, Version 2.0]
https://git.dorkbox.com/dorkbox/ClassUtils https://git.dorkbox.com/dorkbox/ClassUtils
Copyright 2023 Copyright 2023

View File

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

View File

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