Executor/build.gradle.kts

233 lines
6.9 KiB
Plaintext
Raw Normal View History

2018-08-18 20:57:00 +02:00
/*
2020-08-06 11:02:13 +02:00
* Copyright 2020 dorkbox, llc
2018-08-18 20:57:00 +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-08-06 11:02:13 +02:00
import dorkbox.gradle.kotlin
2019-03-17 23:15:11 +01:00
import java.time.Instant
2018-08-18 20:57:00 +02:00
2019-03-17 23:15:11 +01:00
///////////////////////////////
////// PUBLISH TO SONATYPE / MAVEN CENTRAL
2020-08-06 11:02:13 +02:00
////// TESTING : (to local maven repo) <'publish and release' - 'publishToMavenLocal'>
////// RELEASE : (to sonatype/maven central), <'publish and release' - 'publishToSonatypeAndRelease'>
2019-03-17 23:15:11 +01:00
///////////////////////////////
2018-08-18 20:57:00 +02:00
2020-08-08 00:45:33 +02:00
gradle.startParameter.showStacktrace = ShowStacktrace.ALWAYS // always show the stacktrace!
gradle.startParameter.warningMode = WarningMode.All
2018-08-18 20:57:00 +02:00
plugins {
2019-03-17 23:15:11 +01:00
java
2018-08-18 20:57:00 +02:00
2021-04-09 13:37:47 +02:00
id("com.dorkbox.GradleUtils") version "1.17"
2021-03-20 20:27:28 +01:00
id("com.dorkbox.Licensing") version "2.5.5"
2021-04-09 13:37:47 +02:00
id("com.dorkbox.VersionUpdate") version "2.3"
2021-01-26 23:51:57 +01:00
id("com.dorkbox.GradlePublish") version "1.10"
2019-03-17 23:15:11 +01:00
2021-04-09 12:48:20 +02:00
kotlin("jvm") version "1.4.32"
2018-08-18 20:57:00 +02:00
}
2019-03-17 23:15:11 +01:00
object Extras {
2020-08-06 11:02:13 +02:00
const val name = "Executor"
2021-01-28 20:45:46 +01:00
const val description = "Shell, JVM, and SSH command execution on Linux, MacOS, or Windows for Java 8+"
2019-03-17 23:15:11 +01:00
const val group = "com.dorkbox"
2020-08-06 11:02:13 +02:00
const val id = "Executor"
2021-04-09 13:37:47 +02:00
const val version = "3.1"
2018-08-18 20:57:00 +02:00
2019-03-17 23:15:11 +01:00
const val vendor = "Dorkbox LLC"
2020-08-06 11:02:13 +02:00
const val vendorUrl = "https://dorkbox.com"
const val url = "https://git.dorkbox.com/dorkbox/Executor"
2018-08-18 20:57:00 +02:00
2020-08-08 00:45:33 +02:00
val buildDate = Instant.now().toString()
2018-08-18 20:57:00 +02:00
const val coroutineVer = "1.4.2"
2021-03-20 20:27:28 +01:00
const val sshjVer = "0.30.0"
2019-03-17 23:15:11 +01:00
}
2018-08-18 20:57:00 +02:00
2019-03-17 23:15:11 +01:00
///////////////////////////////
///// assign 'Extras'
///////////////////////////////
2020-08-06 11:02:13 +02:00
GradleUtils.load("$projectDir/../../gradle.properties", Extras)
GradleUtils.fixIntellijPaths()
2020-08-08 00:45:33 +02:00
GradleUtils.defaultResolutionStrategy()
GradleUtils.compileConfiguration(JavaVersion.VERSION_1_8) {
2020-08-08 00:45:33 +02:00
it.apply {
// see: https://kotlinlang.org/docs/reference/using-gradle.html
freeCompilerArgs = listOf(
// enable the use of inline classes. see https://kotlinlang.org/docs/reference/inline-classes.html
"-Xinline-classes",
// enable the use of experimental methods
"-Xopt-in=kotlin.RequiresOptIn"
)
}
}
2018-08-18 20:57:00 +02:00
licensing {
license(License.APACHE_2) {
2020-08-06 11:02:13 +02:00
description(Extras.description)
2019-03-17 23:15:11 +01:00
url(Extras.url)
2020-08-06 11:02:13 +02:00
author(Extras.vendor)
2020-08-08 00:45:33 +02:00
2020-08-06 11:02:13 +02:00
extra("ZT Process Executor", License.APACHE_2) {
it.url("https://github.com/zeroturnaround/zt-exec")
it.copyright(2014)
it.author("ZeroTurnaround LLC")
}
extra("Apache Commons Exec", License.APACHE_2) {
it.url("https://commons.apache.org/proper/commons-exec/")
it.copyright(2014)
it.author("The Apache Software Foundation")
}
2018-08-18 20:57:00 +02:00
}
2019-03-17 23:15:11 +01:00
}
val main_Java9Config : Configuration by configurations.creating { extendsFrom(configurations.implementation.get()) }
val SourceSetContainer.main_Java9: SourceSet get() = maybeCreate("main_Java9")
fun SourceSetContainer.main_Java9(block: SourceSet.() -> Unit) = main_Java9.apply(block)
2018-08-18 20:57:00 +02:00
sourceSets {
main {
2020-08-06 11:02:13 +02:00
kotlin {
setSrcDirs(listOf("src"))
// want to include kotlin files for the source. 'setSrcDirs' resets includes...
include("**/*.kt")
}
}
main_Java9 {
kotlin {
setSrcDirs(listOf("src9"))
// want to include kotlin files for the source. 'setSrcDirs' resets includes...
include("**/*.kt")
}
}
2020-08-06 11:02:13 +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...
2020-08-08 00:45:33 +02:00
include("**/*.java", "**/*.kt")
2020-08-06 11:02:13 +02:00
}
2018-08-18 20:57:00 +02:00
}
}
repositories {
mavenLocal() // this must be first!
jcenter()
}
tasks.named<JavaCompile>("compileMain_Java9Java") {
dependsOn("compileJava")
sourceCompatibility = "9"
targetCompatibility = "9"
}
tasks.named<org.jetbrains.kotlin.gradle.tasks.KotlinCompile>("compileMain_Java9Kotlin") {
dependsOn("compileJava")
sourceCompatibility = "9"
targetCompatibility = "9"
kotlinOptions.jvmTarget = "9"
}
2019-03-17 23:15:11 +01:00
tasks.jar.get().apply {
// this is required for making the java 9+ version possible
from(sourceSets.main_Java9.output.classesDirs) {
exclude("META-INF")
into("META-INF/versions/9")
}
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
attributes["Multi-Release"] = "true"
2018-08-18 20:57:00 +02:00
}
}
2019-03-17 23:15:11 +01:00
dependencies {
2020-08-06 11:02:13 +02:00
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:${Extras.coroutineVer}")
2018-08-18 20:57:00 +02:00
2021-04-09 12:39:50 +02:00
implementation("com.dorkbox:Updates:1.0")
2020-08-06 11:02:13 +02:00
// https://github.com/MicroUtils/kotlin-logging
2021-03-20 20:27:28 +01:00
implementation("io.github.microutils:kotlin-logging:2.0.6") // kotlin wrapper for slf4j
2020-08-06 11:02:13 +02:00
implementation("org.slf4j:slf4j-api:1.7.30")
2021-04-09 12:48:20 +02:00
compileOnly("ch.qos.logback:logback-classic:1.2.3") // ONLY used to fixup the SSHJ logger (in LogHelper)
2018-08-18 20:57:00 +02:00
2020-08-06 11:02:13 +02:00
// NOTE: JSCH is no longer maintained.
// The fork from https://github.com/mwiede/jsch fixes many issues, but STILL cannot connect to an ubutnu 18.04 instance
// api("com.jcraft:jsch:0.1.55")
// NOTE: This SSH implementation works (and is well documented)
// https://github.com/hierynomus/sshj
2021-03-20 20:27:28 +01:00
implementation("com.hierynomus:sshj:${Extras.sshjVer}")
2018-08-18 20:57:00 +02:00
2019-03-17 23:15:11 +01:00
2021-03-20 20:27:28 +01:00
testImplementation("junit:junit:4.13.2")
2020-08-06 11:02:13 +02:00
testImplementation("ch.qos.logback:logback-classic:1.2.3")
}
2018-08-18 20:57:00 +02:00
kotlin.sourceSets["main_Java9"].dependencies {
2021-03-20 20:27:28 +01:00
implementation("com.hierynomus:sshj:${Extras.sshjVer}")
}
2020-08-06 11:02:13 +02:00
publishToSonatype {
groupId = Extras.group
artifactId = Extras.id
version = Extras.version
2019-03-17 23:15:11 +01:00
2020-08-06 11:02:13 +02:00
name = Extras.name
description = Extras.description
url = Extras.url
2018-08-18 20:57:00 +02:00
2020-08-06 11:02:13 +02:00
vendor = Extras.vendor
vendorUrl = Extras.vendorUrl
issueManagement {
url = "${Extras.url}/issues"
nickname = "Gitea Issues"
}
2018-08-18 20:57:00 +02:00
2020-08-06 11:02:13 +02:00
developer {
id = "dorkbox"
name = Extras.vendor
email = "email@dorkbox.com"
}
2018-08-18 20:57:00 +02:00
}