Executor/build.gradle.kts

168 lines
5.6 KiB
Plaintext
Raw Normal View History

2018-08-18 20:57:00 +02:00
/*
2023-01-22 21:29:21 +01:00
* Copyright 2023 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.
*/
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!
2018-08-18 20:57:00 +02:00
plugins {
2023-10-09 12:25:22 +02:00
id("com.dorkbox.GradleUtils") version "3.18"
2023-06-07 23:03:53 +02:00
id("com.dorkbox.Licensing") version "2.22"
id("com.dorkbox.VersionUpdate") version "2.8"
2023-11-27 17:14:37 +01:00
id("com.dorkbox.GradlePublish") version "1.22"
2019-03-17 23:15:11 +01:00
2023-10-02 16:15:04 +02:00
kotlin("jvm") version "1.9.0"
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"
2023-10-24 14:38:46 +02:00
const val version = "3.14"
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
2023-06-07 23:03:53 +02:00
const val coroutineVer = "1.7.1"
const val sshjVer = "0.35.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.defaults()
GradleUtils.compileConfiguration(JavaVersion.VERSION_1_8) {
// 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"
)
2020-08-08 00:45:33 +02:00
}
2022-01-20 16:07:54 +01:00
GradleUtils.jpms(JavaVersion.VERSION_1_9)
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) {
url("https://github.com/zeroturnaround/zt-exec")
copyright(2014)
author("ZeroTurnaround LLC")
2020-08-06 11:02:13 +02:00
}
extra("Apache Commons Exec", License.APACHE_2) {
url("https://commons.apache.org/proper/commons-exec/")
copyright(2014)
author("The Apache Software Foundation")
2020-08-06 11:02:13 +02:00
}
2018-08-18 20:57:00 +02:00
}
2019-03-17 23:15:11 +01:00
}
2021-10-01 10:43:57 +02:00
kotlin {
sourceSets {
2022-01-20 00:07:36 +01:00
test {
// we have some java we depend on
kotlin.include("**/*.java", "**/*.kt")
}
2021-10-01 10:43:57 +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}"
2023-06-07 23:03:53 +02:00
attributes["Implementation-Version"] = GradleUtils.now()
2019-03-17 23:15:11 +01:00
attributes["Implementation-Vendor"] = Extras.vendor
2018-08-18 20:57:00 +02:00
}
}
2019-03-17 23:15:11 +01:00
dependencies {
// API is used here to allow these dependencies to be transitive, so projects that depend on Executor, do not
// have to EXPLICITLY add these as dependencies.
api("org.jetbrains.kotlin:kotlin-stdlib")
api("org.jetbrains.kotlinx:kotlinx-coroutines-jdk8:${Extras.coroutineVer}")
2018-08-18 20:57:00 +02:00
api("com.dorkbox:Updates:1.1")
2021-04-09 12:39:50 +02:00
2023-08-07 01:37:11 +02:00
api("org.slf4j:slf4j-api:2.0.7")
2021-04-09 12:48:20 +02:00
2021-04-26 02:33:05 +02:00
compileOnly("ch.qos.logback:logback-classic:1.3.0-alpha4") // 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 ubuntu 18.04 instance
// implementation("com.jcraft:jsch:0.1.55")
// NOTE: The SSHJ implementation works and is well documented. It is also used by Intellij 2019.2+, so it is also well tested and used
2020-08-06 11:02:13 +02:00
// https://github.com/hierynomus/sshj
// This is *compileOnly* because SSH command execution is not common, and the developer that needs it can just add the appropriate
// library to enable SSH support
compileOnly("com.hierynomus:sshj:${Extras.sshjVer}")
2019-03-17 23:15:11 +01:00
2022-01-20 00:04:59 +01:00
testImplementation(kotlin("test"))
// testImplementation("junit:junit:4.13.2")
2021-04-26 02:33:05 +02:00
testImplementation("ch.qos.logback:logback-classic:1.3.0-alpha4")
2018-08-18 20:57:00 +02:00
// we want to test SSH functions. Comment this out to view the exception when sshj is not available
testImplementation("com.hierynomus:sshj:${Extras.sshjVer}")
2022-08-07 00:27:36 +02:00
testImplementation("org.junit.jupiter:junit-jupiter-api:5.9.0")
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:5.9.0")
}
2022-01-20 00:04:59 +01:00
tasks.test {
useJUnitPlatform()
}
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
}