Bumped Kotlin to version 2.1.0 Bumped Kotlin extension to version 1.0.3 Bumped Dokka extension to version 1.0.2 Bumped Gradle to version 8.12 Bumped JUnit to version 5.11.4
25 lines
453 B
Groovy
25 lines
453 B
Groovy
plugins {
|
|
id 'com.github.ben-manes.versions' version '0.51.0'
|
|
id 'java'
|
|
id 'application'
|
|
}
|
|
|
|
defaultTasks 'run'
|
|
|
|
application {
|
|
mainClass = 'net.thauvin.erik.pinboard.samples.JavaExample'
|
|
}
|
|
|
|
java {
|
|
sourceCompatibility = JavaVersion.VERSION_11
|
|
targetCompatibility = JavaVersion.VERSION_11
|
|
}
|
|
|
|
repositories {
|
|
mavenLocal()
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
implementation 'net.thauvin.erik:pinboard-poster:1.1.2-SNAPSHOT'
|
|
}
|