Executor/build.gradle.kts

269 lines
7.2 KiB
Plaintext
Raw Normal View History

2018-08-18 20:57:00 +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 23:15:11 +01:00
import com.github.benmanes.gradle.versions.updates.DependencyUpdatesTask
import java.time.Instant
import java.util.*
import kotlin.reflect.KMutableProperty
import kotlin.reflect.full.declaredMemberProperties
2018-08-18 20:57:00 +02:00
2019-03-17 23:15:11 +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 20:57:00 +02:00
println("\tGradle ${project.gradle.gradleVersion} on Java ${JavaVersion.current()}")
2018-08-18 20:57:00 +02:00
plugins {
2019-03-17 23:15:11 +01:00
java
signing
`maven-publish`
2018-08-18 20:57:00 +02:00
// close and release on sonatype
2019-03-17 23:15:11 +01:00
id("io.codearte.nexus-staging") version "0.20.0"
2018-08-18 20:57:00 +02:00
2019-03-17 23:15:11 +01:00
id("com.dorkbox.CrossCompile") version "1.0.1"
id("com.dorkbox.Licensing") version "1.4"
id("com.dorkbox.VersionUpdate") version "1.4.1"
id("com.dorkbox.GradleUtils") version "1.0"
2019-03-17 23:15:11 +01:00
kotlin("jvm") version "1.3.21"
2018-08-18 20:57:00 +02:00
}
2019-03-17 23:15:11 +01:00
object Extras {
// set for the project
const val description = "Shell and JVM command execution on Linux, MacOS, or Windows for Java 6+"
const val group = "com.dorkbox"
const val version = "1.1"
2018-08-18 20:57:00 +02:00
2019-03-17 23:15:11 +01:00
// set as project.ext
const val name = "ShellExecutor"
const val id = "ShellExecutor"
const val vendor = "Dorkbox LLC"
const val url = "https://git.dorkbox.com/dorkbox/ShellExecutor"
val buildDate = Instant.now().toString()
2018-08-18 20:57:00 +02:00
2019-03-17 23:15:11 +01:00
val JAVA_VERSION = JavaVersion.VERSION_1_6.toString()
2018-08-18 20:57:00 +02:00
2019-03-17 23:15:11 +01:00
var sonatypeUserName = ""
var sonatypePassword = ""
}
2018-08-18 20:57:00 +02:00
2019-03-17 23:15:11 +01:00
///////////////////////////////
///// assign 'Extras'
///////////////////////////////
description = Extras.description
group = Extras.group
version = Extras.version
2018-08-18 20:57:00 +02:00
2019-03-17 23:15:11 +01:00
val propsFile = File("$projectDir/../../gradle.properties").normalize()
if (propsFile.canRead()) {
println("\tLoading custom property data from: [$propsFile]")
2018-08-18 20:57:00 +02:00
2019-03-17 23:15:11 +01:00
val props = Properties()
propsFile.inputStream().use {
props.load(it)
}
val extraProperties = Extras::class.declaredMemberProperties.filterIsInstance<KMutableProperty<String>>()
props.forEach { (k, v) -> run {
val key = k as String
val value = v as String
val member = extraProperties.find { it.name == key }
if (member != null) {
member.setter.call(Extras::class.objectInstance, value)
}
else {
project.extra.set(k, v)
}
}}
}
2018-08-18 20:57:00 +02:00
licensing {
license(License.APACHE_2) {
2019-03-17 23:15:11 +01:00
author(Extras.vendor)
url(Extras.url)
note(Extras.description)
2018-08-18 20:57:00 +02:00
}
2019-03-17 23:15:11 +01:00
}
2018-08-18 20:57:00 +02:00
sourceSets {
main {
java {
2019-03-17 23:15:11 +01:00
setSrcDirs(listOf("src"))
// want to include java files for the source. 'setSrcDirs' resets includes...
include("**/*.java")
2018-08-18 20:57:00 +02:00
}
}
}
repositories {
mavenLocal() // this must be first!
jcenter()
}
///////////////////////////////
////// Task defaults
///////////////////////////////
2019-03-17 23:15:11 +01:00
tasks.withType<JavaCompile> {
options.encoding = "UTF-8"
sourceCompatibility = Extras.JAVA_VERSION
targetCompatibility = Extras.JAVA_VERSION
2018-08-18 20:57:00 +02:00
}
2019-03-17 23:15:11 +01:00
tasks.withType<Jar> {
duplicatesStrategy = DuplicatesStrategy.FAIL
}
2018-08-18 20:57:00 +02:00
2019-03-17 23:15:11 +01:00
tasks.jar.get().apply {
2018-08-18 20:57:00 +02:00
manifest {
2019-03-17 23:15:11 +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:57:00 +02:00
}
}
2019-03-17 23:15:11 +01:00
tasks.compileJava.get().apply {
println("\tCompiling classes to Java $sourceCompatibility")
}
2018-08-18 20:57:00 +02:00
2019-03-17 23:15:11 +01:00
dependencies {
}
///////////////////////////////
////// 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 20:57:00 +02:00
description = "Creates a JAR that contains the source code."
2019-03-17 23:15:11 +01:00
from(sourceSets["main"].java)
2018-08-18 20:57:00 +02:00
2019-03-17 23:15:11 +01:00
archiveClassifier.set("sources")
2018-08-18 20:57:00 +02:00
}
2019-03-17 23:15:11 +01:00
val javaDocJar = task<Jar>("javaDocJar") {
2018-08-18 20:57:00 +02:00
description = "Creates a JAR that contains the javadocs."
2019-03-17 23:15:11 +01:00
archiveClassifier.set("javadoc")
2018-08-18 20:57:00 +02:00
}
publishing {
publications {
2019-03-17 23:15:11 +01:00
create<MavenPublication>("maven") {
groupId = Extras.group
artifactId = Extras.id
version = Extras.version
2018-08-18 20:57:00 +02:00
2019-03-17 23:15:11 +01:00
from(components["java"])
2018-08-18 20:57:00 +02:00
2019-03-17 23:15:11 +01:00
artifact(sourceJar)
artifact(javaDocJar)
2018-08-18 20:57:00 +02:00
pom {
2019-03-17 23:15:11 +01:00
name.set(Extras.name)
description.set(Extras.description)
url.set(Extras.url)
2018-08-18 20:57:00 +02:00
issueManagement {
2019-03-17 23:15:11 +01:00
url.set("${Extras.url}/issues")
system.set("Gitea Issues")
2018-08-18 20:57:00 +02:00
}
organization {
2019-03-17 23:15:11 +01:00
name.set(Extras.vendor)
url.set("https://dorkbox.com")
2018-08-18 20:57:00 +02:00
}
developers {
developer {
2019-03-17 23:15:11 +01:00
id.set("dorkbox")
name.set(Extras.vendor)
email.set("email@dorkbox.com")
2018-08-18 20:57:00 +02:00
}
}
scm {
2019-03-17 23:15:11 +01:00
url.set(Extras.url)
connection.set("scm:${Extras.url}.git")
2018-08-18 20:57:00 +02:00
}
}
2019-03-17 23:15:11 +01:00
2018-08-18 20:57:00 +02:00
}
}
2019-03-17 23:15:11 +01:00
2018-08-18 20:57:00 +02:00
repositories {
maven {
2019-03-17 23:15:11 +01:00
setUrl("https://oss.sonatype.org/service/local/staging/deploy/maven2")
2018-08-18 20:57:00 +02:00
credentials {
2019-03-17 23:15:11 +01:00
username = Extras.sonatypeUserName
password = Extras.sonatypePassword
2018-08-18 20:57:00 +02:00
}
}
}
2019-03-17 23:15:11 +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 20:57:00 +02:00
}
nexusStaging {
2019-03-17 23:15:11 +01:00
username = Extras.sonatypeUserName
password = Extras.sonatypePassword
2018-08-18 20:57:00 +02:00
}
signing {
2019-03-17 23:15:11 +01:00
sign(publishing.publications["maven"])
2018-08-18 20:57:00 +02:00
}