1
0
mirror of https://github.com/irmen/ksim65.git synced 2024-05-29 03:41:30 +00:00
ksim65/build.gradle.kts

122 lines
3.4 KiB
Plaintext
Raw Normal View History

2019-09-11 00:17:59 +00:00
import org.jetbrains.dokka.gradle.DokkaTask
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
2019-09-27 20:38:36 +00:00
import java.util.*
2019-09-14 16:58:45 +00:00
import kotlin.math.max
2019-09-11 00:17:59 +00:00
plugins {
// Apply the Kotlin JVM plugin to add support for Kotlin on the JVM.
2019-09-14 23:50:35 +00:00
kotlin("jvm") version "1.3.50"
2019-09-26 20:00:40 +00:00
`maven-publish`
application
2019-10-12 12:56:04 +00:00
id("org.jetbrains.dokka") version "0.10.0"
id("com.jfrog.bintray") version "1.8.4"
2019-09-11 00:17:59 +00:00
}
allprojects {
val versionProps = Properties().also {
it.load(File("$projectDir/src/main/resources/version.properties").inputStream())
}
version = versionProps["version"] as String
group = "net.razorvine"
base.archivesBaseName = "ksim65"
repositories {
// Use jcenter for resolving dependencies.
// You can declare any Maven/Ivy/file repository here.
mavenLocal()
jcenter()
maven("https://jitpack.io")
}
2019-09-11 00:17:59 +00:00
}
dependencies {
// Use the Kotlin JDK 8 standard library.
implementation("org.jetbrains.kotlin:kotlin-stdlib-jdk8")
// Use the Kotlin test library.
testImplementation("org.jetbrains.kotlin:kotlin-test")
// Use the Kotlin JUnit5 integration.
testImplementation("org.jetbrains.kotlin:kotlin-test-junit5")
2019-10-12 12:56:04 +00:00
testImplementation("org.junit.jupiter:junit-jupiter-api:5.4.0")
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:5.4.0")
subprojects.forEach {
archives(it)
}
2019-09-11 00:17:59 +00:00
}
2019-09-26 20:00:40 +00:00
tasks {
named<Test>("test") {
useJUnitPlatform()
dependsOn("cleanTest")
testLogging.events("failed")
// parallel tests.
systemProperty("junit.jupiter.execution.parallel.enabled", "true")
systemProperty("junit.jupiter.execution.parallel.mode.default", "concurrent")
maxParallelForks = max(1, Runtime.getRuntime().availableProcessors() / 2)
}
2019-09-26 20:00:40 +00:00
withType<KotlinCompile> {
kotlinOptions.jvmTarget = "1.8"
}
2019-09-11 00:17:59 +00:00
2019-09-26 20:00:40 +00:00
named<DokkaTask>("dokka") {
outputFormat = "html"
outputDirectory = "$buildDir/kdoc"
2019-10-12 12:56:04 +00:00
configuration {
skipEmptyPackages = true
}
2019-09-26 20:00:40 +00:00
}
2019-09-11 00:17:59 +00:00
}
2019-09-26 20:00:40 +00:00
val c64emuScript by tasks.registering(CreateStartScripts::class) {
outputDir = File(project.buildDir, "bin")
applicationName = "c64emu"
mainClassName = "razorvine.c64emu.C64MainKt"
classpath = project.tasks["jar"].outputs.files + project.configurations.runtimeClasspath.get()
2019-09-11 00:17:59 +00:00
}
2019-09-26 20:00:40 +00:00
val ehbasicScript by tasks.registering(CreateStartScripts::class) {
outputDir = File(project.buildDir, "bin")
applicationName = "ehbasic"
mainClassName = "razorvine.examplemachines.EhBasicMainKt"
classpath = project.tasks["jar"].outputs.files + project.configurations.runtimeClasspath.get()
}
application {
applicationName = "ksim65vm"
mainClassName = "razorvine.examplemachines.MachineMainKt"
applicationDistribution.into("bin") {
from(c64emuScript, ehbasicScript)
fileMode = 493
}
2019-09-11 00:17:59 +00:00
}
val sourcesJar by tasks.registering(Jar::class) {
dependsOn("classes")
archiveClassifier.set("sources")
from(sourceSets.main.get().allSource)
}
val dokkaDocs by tasks.registering(Jar::class) {
dependsOn("dokka")
archiveClassifier.set("kdoc")
from(fileTree(File(project.buildDir, "kdoc")))
}
publishing {
repositories {
mavenLocal()
}
publications {
register("mavenJava", MavenPublication::class) {
from(components["java"])
artifact(sourcesJar.get())
artifact(dokkaDocs.get())
}
}
}