MessageBus/build.gradle.kts

325 lines
9.0 KiB
Plaintext
Raw Normal View History

2018-08-18 21:53:39 +02:00
/*
* Copyright 2018 dorkbox, llc
*
* 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 : local maven repo <PUBLISHING - publishToMavenLocal>
//////
////// RELEASE : sonatype / maven central, <PUBLISHING - publish> then <RELEASE - closeAndReleaseRepository>
///////////////////////////////
2018-08-18 21:53:39 +02:00
println("\tGradle ${project.gradle.gradleVersion} on Java ${JavaVersion.current()}")
2018-08-18 21:53:39 +02:00
plugins {
2019-03-17 13:47:06 +01:00
java
signing
`maven-publish`
2018-08-18 21:53:39 +02:00
// close and release on sonatype
id("io.codearte.nexus-staging") version "0.21.0"
2018-08-18 21:53:39 +02:00
2019-03-17 13:47:06 +01:00
id("com.dorkbox.CrossCompile") version "1.0.1"
id("com.dorkbox.Licensing") version "1.4"
id("com.dorkbox.VersionUpdate") version "1.5"
id("com.dorkbox.GradleUtils") version "1.2"
2019-03-17 13:47:06 +01:00
kotlin("jvm") version "1.3.31"
2018-08-18 21:53:39 +02:00
}
2019-03-17 13:47:06 +01:00
object Extras {
// set for the project
const val description = "Lightweight, extremely fast, and zero-gc message/event bus for Java 6+"
const val group = "com.dorkbox"
const val version = "2.0"
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 url = "https://git.dorkbox.com/dorkbox/MessageBus"
val buildDate = Instant.now().toString()
2018-08-18 21:53:39 +02:00
2019-03-17 13:47:06 +01:00
val JAVA_VERSION = JavaVersion.VERSION_1_6.toString()
2018-08-18 21:53:39 +02:00
2019-03-17 13:47:06 +01:00
var sonatypeUserName = ""
var sonatypePassword = ""
}
2018-08-18 21:53:39 +02:00
2019-03-17 13:47:06 +01:00
///////////////////////////////
///// assign 'Extras'
///////////////////////////////
GradleUtils.load("$projectDir/../../gradle.properties", Extras)
2019-03-17 13:47:06 +01:00
description = Extras.description
group = Extras.group
version = Extras.version
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
}
2019-03-17 13:47:06 +01:00
license("Dorkbox Utils", License.APACHE_2) {
author(Extras.vendor)
url("https://git.dorkbox.com/dorkbox/Utilities")
2018-08-18 21:53:39 +02:00
}
2019-03-17 13:47:06 +01:00
license("ASM", License.BSD_3) {
copyright(2012)
author("France Télécom")
url("http://asm.ow2.org")
note("Bytecode manipulation framework and utilities")
2018-08-18 21:53:39 +02:00
}
license("LMAX Disruptor", License.APACHE_2) {
copyright(2011)
author("LMAX Ltd")
url("https://github.com/LMAX-Exchange/disruptor/")
note("High Performance Inter-Thread Messaging Library")
}
license("Conversant Disruptor", License.APACHE_2) {
2019-03-17 13:47:06 +01:00
copyright(2011)
author("Conversant")
url("https://github.com/conversant/disruptor/")
note("The highest performing intra-thread transfer mechanism available in Java")
2018-08-18 21:53:39 +02:00
}
2019-03-17 13:47:06 +01:00
license("FastThreadLocal", License.BSD_3) {
copyright (2014)
author("Lightweight Java Game Library Project")
author("Riven")
url("https://github.com/LWJGL/lwjgl3/blob/5819c9123222f6ce51f208e022cb907091dd8023/modules/core/src/main/java/org/lwjgl/system/FastThreadLocal.java")
2018-08-18 21:53:39 +02:00
}
license("IntMap", License.APACHE_2) {
copyright(2013)
author("Mario Zechner <badlogicgames@gmail.com>")
author("Nathan Sweet <nathan.sweet@gmail.com>")
url("http://github.com/libgdx/libgdx/")
2018-08-18 21:53:39 +02:00
}
2019-03-17 13:47:06 +01:00
license("ReflectASM", License.BSD_3) {
copyright(2008)
author("Nathan Sweet")
url("https://github.com/EsotericSoftware/reflectasm")
2018-08-18 21:53:39 +02:00
}
2019-03-17 13:47:06 +01:00
license("MBassador", License.MIT) {
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
license("SLF4J", License.MIT) {
copyright(2008)
author("QOS.ch")
url("http://www.slf4j.org")
2018-08-18 21:53:39 +02:00
}
license("Vibur Object Pool", License.APACHE_2) {
copyright(2013)
author("Simeon Malchev")
url("https://github.com/vibur/vibur-object-pool")
}
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
}
repositories {
mavenLocal() // this must be first!
jcenter()
}
///////////////////////////////
////// Task defaults
///////////////////////////////
2019-03-17 13:47:06 +01:00
tasks.withType<JavaCompile> {
options.encoding = "UTF-8"
2018-08-18 21:53:39 +02:00
2019-03-17 13:47:06 +01:00
sourceCompatibility = Extras.JAVA_VERSION
targetCompatibility = Extras.JAVA_VERSION
}
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
}
}
2019-03-17 13:47:06 +01:00
tasks.compileJava.get().apply {
println("\tCompiling classes to Java $sourceCompatibility")
}
dependencies {
implementation("com.dorkbox:Utilities:1.2")
implementation("com.lmax:disruptor:3.4.2")
implementation("com.conversantmedia:disruptor:1.2.15")
implementation("org.vibur:vibur-object-pool:23.0")
implementation("org.ow2.asm:asm:7.1")
implementation("com.esotericsoftware:reflectasm:1.11.9")
implementation("org.slf4j:slf4j-api:1.7.26")
2019-03-17 13:47:06 +01:00
testCompile("junit:junit:4.12")
testCompile("ch.qos.logback:logback-classic:1.2.3")
2019-03-17 13:47:06 +01:00
}
///////////////////////////////
////// PUBLISH TO SONATYPE / MAVEN CENTRAL
//////
////// TESTING : local maven repo <PUBLISHING - publishToMavenLocal>
//////
////// RELEASE : sonatype / maven central, <PUBLISHING - publish> then <RELEASE - closeAndReleaseRepository>
///////////////////////////////
val sourceJar = task<Jar>("sourceJar") {
2018-08-18 21:53:39 +02:00
description = "Creates a JAR that contains the source code."
2019-03-17 13:47:06 +01:00
from(sourceSets["main"].java)
2018-08-18 21:53:39 +02:00
2019-03-17 13:47:06 +01:00
archiveClassifier.set("sources")
2018-08-18 21:53:39 +02:00
}
2019-03-17 13:47:06 +01:00
val javaDocJar = task<Jar>("javaDocJar") {
2018-08-18 21:53:39 +02:00
description = "Creates a JAR that contains the javadocs."
2019-03-17 13:47:06 +01:00
archiveClassifier.set("javadoc")
2018-08-18 21:53:39 +02:00
}
publishing {
publications {
2019-03-17 13:47:06 +01:00
create<MavenPublication>("maven") {
groupId = Extras.group
artifactId = Extras.id
version = Extras.version
2018-08-18 21:53:39 +02:00
2019-03-17 13:47:06 +01:00
from(components["java"])
2018-08-18 21:53:39 +02:00
2019-03-17 13:47:06 +01:00
artifact(sourceJar)
artifact(javaDocJar)
2018-08-18 21:53:39 +02:00
pom {
2019-03-17 13:47:06 +01:00
name.set(Extras.name)
description.set(Extras.description)
url.set(Extras.url)
2018-08-18 21:53:39 +02:00
issueManagement {
2019-03-17 13:47:06 +01:00
url.set("${Extras.url}/issues")
system.set("Gitea Issues")
2018-08-18 21:53:39 +02:00
}
organization {
2019-03-17 13:47:06 +01:00
name.set(Extras.vendor)
url.set("https://dorkbox.com")
2018-08-18 21:53:39 +02:00
}
developers {
developer {
2019-03-17 13:47:06 +01:00
id.set("dorkbox")
name.set(Extras.vendor)
email.set("email@dorkbox.com")
2018-08-18 21:53:39 +02:00
}
}
scm {
2019-03-17 13:47:06 +01:00
url.set(Extras.url)
connection.set("scm:${Extras.url}.git")
2018-08-18 21:53:39 +02:00
}
}
}
}
2019-03-17 13:47:06 +01:00
2018-08-18 21:53:39 +02:00
repositories {
maven {
2019-03-17 13:47:06 +01:00
setUrl("https://oss.sonatype.org/service/local/staging/deploy/maven2")
2018-08-18 21:53:39 +02:00
credentials {
2019-03-17 13:47:06 +01:00
username = Extras.sonatypeUserName
password = Extras.sonatypePassword
2018-08-18 21:53:39 +02:00
}
}
}
2019-03-17 13:47:06 +01:00
tasks.withType<PublishToMavenRepository> {
onlyIf {
publication == publishing.publications["maven"] && repository == publishing.repositories["maven"]
}
}
tasks.withType<PublishToMavenLocal> {
onlyIf {
publication == publishing.publications["maven"]
}
}
// output the release URL in the console
tasks["releaseRepository"].doLast {
val url = "https://oss.sonatype.org/content/repositories/releases/"
val projectName = Extras.group.replace('.', '/')
val name = Extras.name
val version = Extras.version
println("Maven URL: $url$projectName/$name/$version/")
}
2018-08-18 21:53:39 +02:00
}
nexusStaging {
2019-03-17 13:47:06 +01:00
username = Extras.sonatypeUserName
password = Extras.sonatypePassword
2018-08-18 21:53:39 +02:00
}
signing {
2019-03-17 13:47:06 +01:00
sign(publishing.publications["maven"])
2018-08-18 21:53:39 +02:00
}