MessageBus/build.gradle.kts

157 lines
4.4 KiB
Plaintext
Raw Normal View History

2018-08-18 21:53:39 +02:00
/*
2021-04-09 20:22:38 +02:00
* Copyright 2021 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 {
id("com.dorkbox.GradleUtils") version "1.17"
id("com.dorkbox.Licensing") version "2.5.5"
id("com.dorkbox.VersionUpdate") version "2.3"
id("com.dorkbox.GradlePublish") version "1.10"
2019-03-17 13:47:06 +01:00
2021-04-09 20:22:38 +02:00
kotlin("jvm") version "1.4.32"
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"
2020-06-19 22:49:09 +02:00
const val version = "2.3"
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"
val buildDate = Instant.now().toString()
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)
GradleUtils.fixIntellijPaths()
2021-04-09 20:22:38 +02:00
GradleUtils.defaultResolutionStrategy()
GradleUtils.compileConfiguration(JavaVersion.VERSION_1_8)
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) {
it.copyright(2012)
it.author("Benjamin Diedrichsen")
it.url("https://github.com/bennidi/mbassador")
}
2018-08-18 21:53:39 +02:00
}
}
sourceSets {
main {
java {
2019-03-17 13:47:06 +01:00
setSrcDirs(listOf("src"))
// want to include java files for the source. 'setSrcDirs' resets includes...
include("**/*.java")
2018-08-18 21:53:39 +02:00
}
}
test {
java {
setSrcDirs(listOf("test"))
// want to include java files for the source. 'setSrcDirs' resets includes...
include("**/*.java")
}
}
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}"
attributes["Implementation-Version"] = Extras.buildDate
attributes["Implementation-Vendor"] = Extras.vendor
attributes["Automatic-Module-Name"] = Extras.id
2018-08-18 21:53:39 +02:00
}
}
2021-04-09 20:22:38 +02:00
repositories {
mavenLocal() // this must be first!
jcenter()
2019-03-17 13:47:06 +01:00
}
dependencies {
2021-04-09 20:22:38 +02:00
implementation("com.dorkbox:Updates:1.0")
implementation("com.dorkbox:Utilities:1.9")
implementation("com.lmax:disruptor:3.4.2")
2021-04-09 20:22:38 +02:00
implementation("com.conversantmedia:disruptor:1.2.19")
2021-04-09 20:22:38 +02:00
implementation("org.ow2.asm:asm:9.1")
implementation("com.esotericsoftware:reflectasm:1.11.9")
2021-04-09 20:22:38 +02:00
implementation("org.slf4j:slf4j-api:1.7.30")
2019-03-17 13:47:06 +01:00
2021-04-09 20:22:38 +02:00
testImplementation("junit:junit:4.13.2")
testImplementation("ch.qos.logback:logback-classic:1.2.3")
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
}