MessageBus/build.gradle.kts

133 lines
3.9 KiB
Plaintext
Raw Normal View History

2018-08-18 21:53:39 +02:00
/*
2023-08-08 02:47:20 +02:00
* Copyright 2023 dorkbox, llc
2018-08-18 21:53:39 +02:00
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
2019-03-17 13:47:06 +01:00
import java.time.Instant
2018-08-18 21:53:39 +02:00
2019-03-17 13:47:06 +01:00
///////////////////////////////
////// PUBLISH TO SONATYPE / MAVEN CENTRAL
////// TESTING : (to local maven repo) <'publish and release' - 'publishToMavenLocal'>
////// RELEASE : (to sonatype/maven central), <'publish and release' - 'publishToSonatypeAndRelease'>
2019-03-17 13:47:06 +01:00
///////////////////////////////
2018-08-18 21:53:39 +02:00
2021-04-09 20:22:38 +02:00
gradle.startParameter.showStacktrace = ShowStacktrace.ALWAYS // always show the stacktrace!
gradle.startParameter.warningMode = WarningMode.All
2018-08-18 21:53:39 +02:00
2021-04-09 20:22:38 +02:00
plugins {
2023-07-18 02:01:41 +02:00
id("com.dorkbox.GradleUtils") version "3.17"
2023-08-20 12:57:57 +02:00
id("com.dorkbox.Licensing") version "2.26"
2023-07-18 02:01:41 +02:00
id("com.dorkbox.VersionUpdate") version "2.8"
2023-10-02 16:15:03 +02:00
id("com.dorkbox.GradlePublish") version "1.20"
2019-03-17 13:47:06 +01:00
2023-10-02 16:15:03 +02:00
kotlin("jvm") version "1.9.0"
2018-08-18 21:53:39 +02:00
}
2019-03-17 13:47:06 +01:00
object Extras {
// set for the project
2021-04-09 20:22:38 +02:00
const val description = "Lightweight, extremely fast, and zero-gc message/event bus for Java 8+"
2019-03-17 13:47:06 +01:00
const val group = "com.dorkbox"
2023-08-21 01:50:57 +02:00
const val version = "2.7"
2018-08-18 21:53:39 +02:00
2019-03-17 13:47:06 +01:00
// set as project.ext
const val name = "MessageBus"
const val id = "MessageBus"
const val vendor = "Dorkbox LLC"
const val vendorUrl = "https://dorkbox.com"
2019-03-17 13:47:06 +01:00
const val url = "https://git.dorkbox.com/dorkbox/MessageBus"
2018-08-18 21:53:39 +02:00
2021-04-09 20:22:38 +02:00
val JAVA_VERSION = JavaVersion.VERSION_1_8.toString()
2019-03-17 13:47:06 +01:00
}
2018-08-18 21:53:39 +02:00
2019-03-17 13:47:06 +01:00
///////////////////////////////
///// assign 'Extras'
///////////////////////////////
GradleUtils.load("$projectDir/../../gradle.properties", Extras)
2023-07-18 02:01:41 +02:00
GradleUtils.defaults()
2021-04-09 20:22:38 +02:00
GradleUtils.compileConfiguration(JavaVersion.VERSION_1_8)
2023-08-08 02:47:20 +02:00
GradleUtils.jpms(JavaVersion.VERSION_1_9)
2018-08-18 21:53:39 +02:00
licensing {
license(License.APACHE_2) {
2019-03-17 13:47:06 +01:00
author(Extras.vendor)
url(Extras.url)
note(Extras.description)
2018-08-18 21:53:39 +02:00
2021-04-09 20:22:38 +02:00
extra("MBassador", License.MIT) {
2023-07-18 02:01:41 +02:00
copyright(2012)
author("Benjamin Diedrichsen")
url("https://github.com/bennidi/mbassador")
}
}
2018-08-18 21:53:39 +02:00
}
2019-03-17 13:47:06 +01:00
tasks.jar.get().apply {
2018-08-18 21:53:39 +02:00
manifest {
2019-03-17 13:47:06 +01:00
// https://docs.oracle.com/javase/tutorial/deployment/jar/packageman.html
attributes["Name"] = Extras.name
attributes["Specification-Title"] = Extras.name
attributes["Specification-Version"] = Extras.version
attributes["Specification-Vendor"] = Extras.vendor
attributes["Implementation-Title"] = "${Extras.group}.${Extras.id}"
2023-07-18 02:01:41 +02:00
attributes["Implementation-Version"] = GradleUtils.now()
2019-03-17 13:47:06 +01:00
attributes["Implementation-Vendor"] = Extras.vendor
attributes["Automatic-Module-Name"] = Extras.id
2018-08-18 21:53:39 +02:00
}
}
2019-03-17 13:47:06 +01:00
dependencies {
2023-08-20 12:57:57 +02:00
api("com.dorkbox:ClassUtils:1.3")
api("com.dorkbox:Collections:2.4")
2023-08-08 02:47:20 +02:00
api("com.dorkbox:Updates:1.1")
2023-08-21 01:49:21 +02:00
api("com.dorkbox:Utilities:1.46")
2023-08-08 02:47:20 +02:00
api("com.lmax:disruptor:3.4.4")
api("com.conversantmedia:disruptor:1.2.21")
2023-08-08 02:47:20 +02:00
api("org.ow2.asm:asm:9.5")
api("com.esotericsoftware:reflectasm:1.11.9")
2023-08-20 12:57:57 +02:00
implementation("org.slf4j:slf4j-api:2.0.7")
2019-03-17 13:47:06 +01:00
2021-04-09 20:22:38 +02:00
testImplementation("junit:junit:4.13.2")
2023-07-18 02:01:41 +02:00
testImplementation("ch.qos.logback:logback-classic:1.4.5")
2019-03-17 13:47:06 +01:00
}
publishToSonatype {
groupId = Extras.group
artifactId = Extras.id
version = Extras.version
2018-08-18 21:53:39 +02:00
name = Extras.name
description = Extras.description
url = Extras.url
2018-08-18 21:53:39 +02:00
vendor = Extras.vendor
vendorUrl = Extras.vendorUrl
2018-08-18 21:53:39 +02:00
issueManagement {
url = "${Extras.url}/issues"
nickname = "Gitea Issues"
2018-08-18 21:53:39 +02:00
}
developer {
id = "dorkbox"
name = Extras.vendor
email = "email@dorkbox.com"
2019-06-18 22:51:22 +02:00
}
2018-08-18 21:53:39 +02:00
}