Moved from Gradle to bld
This commit is contained in:
parent
594ca811e3
commit
3fa34848f5
111 changed files with 1008 additions and 1765 deletions
23
examples/gradle/java/build.gradle
Normal file
23
examples/gradle/java/build.gradle
Normal file
|
@ -0,0 +1,23 @@
|
|||
plugins {
|
||||
id 'com.github.ben-manes.versions' version '0.50.0'
|
||||
id 'java'
|
||||
id 'application'
|
||||
}
|
||||
|
||||
defaultTasks 'run'
|
||||
|
||||
mainClassName = '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.1-SNAPSHOT'
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue