25 lines
457 B
Groovy
25 lines
457 B
Groovy
plugins {
|
|
id 'com.github.ben-manes.versions' version '0.39.0'
|
|
id 'java'
|
|
id 'application'
|
|
}
|
|
|
|
// ./gradlew run
|
|
|
|
defaultTasks 'run'
|
|
|
|
mainClassName = 'net.thauvin.erik.pinboard.samples.JavaExample'
|
|
|
|
java {
|
|
sourceCompatibility = JavaVersion.VERSION_1_8
|
|
targetCompatibility = JavaVersion.VERSION_1_8
|
|
}
|
|
|
|
repositories {
|
|
mavenLocal()
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
implementation 'net.thauvin.erik:pinboard-poster:1.0.4-SNAPSHOT'
|
|
}
|