pinboard-poster/examples/gradle/java/build.gradle
Erik C. Thauvin fed9a5ca3f
Updated dependencies
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
2024-12-22 15:21:53 -08:00

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'
}