Skip to content

Commit

Permalink
sample-bleeding-edge: use 0.8.3 and fix ./gradlew run
Browse files Browse the repository at this point in the history
  • Loading branch information
jmfayard committed Nov 8, 2019
1 parent 0684480 commit a41e0b8
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 11 deletions.
11 changes: 4 additions & 7 deletions sample-bleeding-edge/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,14 +1,11 @@
import com.louiscad.splitties.AndroidX
import com.louiscad.splitties.KotlinX
import com.louiscad.splitties.Testing
import de.fayard.versions.StabilityLevel
import de.fayard.versions.candidateStabilityLevel
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile

plugins {
id("de.fayard.refreshVersions") .version("0.8.2")
id("com.louiscad.splitties") .version("0.1.3")
kotlin("jvm") .version("1.3.50")
id("de.fayard.refreshVersions").version("0.8.2")
id("com.louiscad.splitties").version("0.1.3")
kotlin("jvm").version("1.3.50")
application
}
group = "de.fayard.experimental"
Expand All @@ -35,7 +32,7 @@ repositories {


tasks.named<JavaExec>("run") {
main = "de.fayard.experimental.HelloKt.main"
main = "de.fayard.experimental.HelloKt"
}

tasks.register("hello") {
Expand Down
2 changes: 1 addition & 1 deletion sample-bleeding-edge/settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ buildscript {
}
// Didn't find a way to use classpath from composite build, so we are hardcoding a
// version expected to be released in one of the configured repositories.
dependencies.classpath("de.fayard:refreshVersions:0.8.2")
dependencies.classpath("de.fayard:refreshVersions:0.8.3")
}
pluginManagement {
plugins {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ package de.fayard.experimental

fun main() {
println("Hello World!")
}
}
3 changes: 1 addition & 2 deletions sample-bleeding-edge/versions.properties
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,11 @@
# See https://github.com/jmfayard/buildSrcVersions/issues/77
module.kotlin=1.3.50
plugin.com.github.ben-manes.versions=0.25.0
plugin.de.fayard.refreshVersions=0.8.2
plugin.de.fayard.refreshVersions=0.8.3
plugin.org.jetbrains.kotlin.jvm=1.3.50
# # available=1.3.60-eap-143
plugin.com.louiscad.splitties=0.1.3
version.org.jetbrains.kotlinx.kotlinx-coroutines=1.3.2
version.org.jetbrains.kotlin=1.3.50
# # available=1.3.60-eap-143
version.io.kotestArtifact=3.4.2
version.gradleLatestVersion=5.6.4

0 comments on commit a41e0b8

Please sign in to comment.