Cleanup.
This commit is contained in:
parent
5675995bbe
commit
a00d1a0987
3 changed files with 12 additions and 12 deletions
|
@ -43,7 +43,7 @@ dependencies {
|
||||||
[View Example](https://github.com/ethauvin/pinboard-poster/blob/master/samples/java/build.gradle)
|
[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)
|
[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
|
## Adding
|
||||||
|
|
||||||
|
|
|
@ -3,17 +3,17 @@ plugins {
|
||||||
id 'application'
|
id 'application'
|
||||||
}
|
}
|
||||||
|
|
||||||
// .gradlew run
|
// ./gradlew run
|
||||||
|
|
||||||
defaultTasks 'run'
|
defaultTasks 'run'
|
||||||
|
|
||||||
mainClassName = 'net.thauvin.erik.pinboard.samples.JavaExample'
|
mainClassName = 'net.thauvin.erik.pinboard.samples.JavaExample'
|
||||||
|
|
||||||
dependencies {
|
|
||||||
compile 'net.thauvin.erik:pinboard-poster:1.0.2'
|
|
||||||
}
|
|
||||||
|
|
||||||
repositories {
|
repositories {
|
||||||
mavenLocal()
|
mavenLocal()
|
||||||
mavenCentral()
|
mavenCentral()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
dependencies {
|
||||||
|
compile 'net.thauvin.erik:pinboard-poster:1.0.2'
|
||||||
|
}
|
||||||
|
|
|
@ -3,10 +3,15 @@ plugins {
|
||||||
kotlin("jvm") version "1.4.31"
|
kotlin("jvm") version "1.4.31"
|
||||||
}
|
}
|
||||||
|
|
||||||
// .gradlew run
|
// ./gradlew run
|
||||||
|
|
||||||
defaultTasks(ApplicationPlugin.TASK_RUN_NAME)
|
defaultTasks(ApplicationPlugin.TASK_RUN_NAME)
|
||||||
|
|
||||||
|
repositories {
|
||||||
|
mavenLocal()
|
||||||
|
mavenCentral()
|
||||||
|
}
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
compile("net.thauvin.erik:pinboard-poster:1.0.2")
|
compile("net.thauvin.erik:pinboard-poster:1.0.2")
|
||||||
}
|
}
|
||||||
|
@ -14,8 +19,3 @@ dependencies {
|
||||||
application {
|
application {
|
||||||
mainClassName = "net.thauvin.erik.pinboard.samples.KotlinExampleKt"
|
mainClassName = "net.thauvin.erik.pinboard.samples.KotlinExampleKt"
|
||||||
}
|
}
|
||||||
|
|
||||||
repositories {
|
|
||||||
mavenLocal()
|
|
||||||
mavenCentral()
|
|
||||||
}
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue