ObjectPool/build.gradle.kts

136 lines
4.0 KiB
Plaintext
Raw Normal View History

2018-08-18 20:38:22 +02:00
/*
2020-09-19 22:10:23 +02:00
* Copyright 2020 dorkbox, llc
2018-08-18 20:38:22 +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.
*/
2020-09-19 22:10:23 +02:00
import dorkbox.gradle.kotlin
2018-08-18 20:38:22 +02:00
import java.time.Instant
2020-09-19 22:10:23 +02:00
2019-03-17 22:56:01 +01:00
///////////////////////////////
////// PUBLISH TO SONATYPE / MAVEN CENTRAL
2020-09-19 22:10:23 +02:00
////// TESTING : (to local maven repo) <'publish and release' - 'publishToMavenLocal'>
////// RELEASE : (to sonatype/maven central), <'publish and release' - 'publishToSonatypeAndRelease'>
2019-03-17 22:56:01 +01:00
///////////////////////////////
2018-08-18 20:38:22 +02:00
2020-09-19 22:10:23 +02:00
gradle.startParameter.showStacktrace = ShowStacktrace.ALWAYS // always show the stacktrace!
gradle.startParameter.warningMode = WarningMode.All
2018-08-18 20:38:22 +02:00
plugins {
2019-03-17 22:56:01 +01:00
java
2018-08-18 20:38:22 +02:00
id("com.dorkbox.GradleUtils") version "1.12"
id("com.dorkbox.Licensing") version "2.5.2"
2020-09-19 22:10:23 +02:00
id("com.dorkbox.VersionUpdate") version "2.0"
id("com.dorkbox.GradlePublish") version "1.8"
id("com.dorkbox.GradleModuleInfo") version "1.1"
2019-03-17 22:56:01 +01:00
kotlin("jvm") version "1.4.10"
2018-08-18 20:38:22 +02:00
}
2019-03-17 22:56:01 +01:00
object Extras {
const val description = "Fast, lightweight, and compatible blocking/non-blocking/soft-reference object pool for Java 6+"
const val group = "com.dorkbox"
const val name = "ObjectPool"
const val id = "ObjectPool"
2020-09-19 22:10:23 +02:00
const val version = "3.0"
2019-03-17 22:56:01 +01:00
const val vendor = "Dorkbox LLC"
2020-09-19 22:10:23 +02:00
const val vendorUrl = "https://dorkbox.com"
2019-03-17 22:56:01 +01:00
const val url = "https://git.dorkbox.com/dorkbox/ObjectPool"
2018-08-18 20:38:22 +02:00
2020-09-19 22:10:23 +02:00
val buildDate = Instant.now().toString()
2018-08-18 20:38:22 +02:00
2020-09-19 22:10:23 +02:00
const val coroutineVer = "1.3.8"
2019-03-17 22:56:01 +01:00
}
2018-08-18 20:38:22 +02:00
2019-03-17 22:56:01 +01:00
///////////////////////////////
///// assign 'Extras'
///////////////////////////////
GradleUtils.load("$projectDir/../../gradle.properties", Extras)
2020-09-19 22:10:23 +02:00
GradleUtils.fixIntellijPaths()
GradleUtils.defaultResolutionStrategy()
GradleUtils.compileConfiguration(JavaVersion.VERSION_11)
2018-08-18 20:38:22 +02:00
licensing {
2019-03-17 23:13:24 +01:00
license(License.APACHE_2) {
2020-09-19 22:10:23 +02:00
description(Extras.description)
2019-03-17 22:56:01 +01:00
author(Extras.vendor)
url(Extras.url)
}
}
2018-08-18 20:38:22 +02:00
sourceSets {
main {
2020-09-19 22:10:23 +02:00
kotlin {
2019-03-17 22:56:01 +01:00
setSrcDirs(listOf("src"))
2020-09-19 22:10:23 +02:00
// want to include kotlin files for the source. 'setSrcDirs' resets includes...
include("**/*.kt")
2018-08-18 20:38:22 +02:00
}
}
test {
java {
setSrcDirs(listOf("test"))
// want to include java files for the source. 'setSrcDirs' resets includes...
include("**/*.java")
}
kotlin {
setSrcDirs(listOf("test"))
// want to include java files for the source. 'setSrcDirs' resets includes...
include("**/*.java", "**/*.kt")
}
}
2018-08-18 20:38:22 +02:00
}
repositories {
mavenLocal() // this must be first!
jcenter()
}
2019-03-17 22:56:01 +01:00
tasks.jar.get().apply {
2018-08-18 20:38:22 +02:00
manifest {
2019-03-17 22:56:01 +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 20:38:22 +02:00
}
}
2019-03-17 22:56:01 +01:00
dependencies {
2020-09-19 22:10:23 +02:00
implementation(kotlin("stdlib-jdk8"))
2019-03-17 22:56:01 +01:00
2020-09-19 22:10:23 +02:00
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:${Extras.coroutineVer}")
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core-common:${Extras.coroutineVer}")
2018-08-18 20:38:22 +02:00
2020-09-19 22:10:23 +02:00
implementation("org.slf4j:slf4j-api:1.7.30")
implementation("com.conversantmedia:disruptor:1.2.19")
testImplementation("junit:junit:4.13")
2018-08-18 20:38:22 +02:00
}