This commit is contained in:
Erik C. Thauvin 2021-03-21 21:22:09 -07:00
parent 5675995bbe
commit a00d1a0987
3 changed files with 12 additions and 12 deletions

View file

@ -43,7 +43,7 @@ dependencies {
[View Example](https://github.com/ethauvin/pinboard-poster/blob/master/samples/java/build.gradle)
[View Kotlin DSL Example](https://github.com/ethauvin/pinboard-poster/blob/master/samples/kotlin/build.gradle.kts)
Instructions for using with Maven, Ivy, etc. can be found on [Maven Central](https://search.maven.org/artifact/net.thauvin.erik/pinboard-poster/1.0.2/jar)
Instructions for using with Maven, Ivy, etc. can be found on [Maven Central](https://search.maven.org/artifact/net.thauvin.erik/pinboard-poster/1.0.2/jar).
## Adding

View file

@ -3,17 +3,17 @@ plugins {
id 'application'
}
// .gradlew run
// ./gradlew run
defaultTasks 'run'
mainClassName = 'net.thauvin.erik.pinboard.samples.JavaExample'
dependencies {
compile 'net.thauvin.erik:pinboard-poster:1.0.2'
}
repositories {
mavenLocal()
mavenCentral()
}
dependencies {
compile 'net.thauvin.erik:pinboard-poster:1.0.2'
}

View file

@ -3,10 +3,15 @@ plugins {
kotlin("jvm") version "1.4.31"
}
// .gradlew run
// ./gradlew run
defaultTasks(ApplicationPlugin.TASK_RUN_NAME)
repositories {
mavenLocal()
mavenCentral()
}
dependencies {
compile("net.thauvin.erik:pinboard-poster:1.0.2")
}
@ -14,8 +19,3 @@ dependencies {
application {
mainClassName = "net.thauvin.erik.pinboard.samples.KotlinExampleKt"
}
repositories {
mavenLocal()
mavenCentral()
}