Skip to content
This repository has been archived by the owner on Dec 8, 2019. It is now read-only.

Commit

Permalink
* Upgrade Gradle version
Browse files Browse the repository at this point in the history
* Upgraded Kotlin Version
* Upgraded Kodein version
  • Loading branch information
Victor Alenkov committed Aug 6, 2018
1 parent 59d0b14 commit aa096e4
Show file tree
Hide file tree
Showing 7 changed files with 23 additions and 8 deletions.
17 changes: 16 additions & 1 deletion .idea/codeStyles/Project.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ import org.gradle.language.base.plugins.LifecycleBasePlugin.BUILD_TASK_NAME
import org.gradle.language.base.plugins.LifecycleBasePlugin.ASSEMBLE_TASK_NAME

tasks.withType<Wrapper> {
distributionType = Wrapper.DistributionType.BIN
gradleVersion = "4.8.1"
distributionType = Wrapper.DistributionType.ALL
gradleVersion = "4.9"
}

buildscript {
Expand Down
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
org.gradle.script.lang.kotlin.accessors.auto=true
#
kotlinVersion=1.2.50
kotlinVersion=1.2.60
kloggingVersion=1.2.41
kodeinVersion=5.1.0
kodeinVersion=5.2.0
Binary file modified gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-4.8.1-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-4.9-all.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ class ServiceManager(override val kodein: Kodein) : KodeinAware,
check(services.isNotEmpty()) { "There are no services to run" }

val time = measureTimeMillis {
println("services: $services")
logger.info { "services: $services" }
services.forEach { service -> treeRun(service) }
(services as ArrayList<*>).removeAll(servicesFinalizedAfterStart)
servicesFinalizedAfterStart.onEach {
Expand Down
2 changes: 1 addition & 1 deletion versions.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version=20180623_1826
version=20180806_1401

0 comments on commit aa096e4

Please sign in to comment.