Skip to content

Commit

Permalink
- bug fixes
Browse files Browse the repository at this point in the history
- remove redundant logback runtime dependencies
  • Loading branch information
spolnik committed Feb 6, 2017
1 parent 91a403f commit 1fb78f8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
6 changes: 2 additions & 4 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ plugins {
}

apply plugin: 'kotlin'
apply plugin: 'spring-boot'
apply plugin: 'org.springframework.boot'
apply from: "$rootDir/gradle/versioning.gradle"

group = 'jalgoarena'
Expand Down Expand Up @@ -50,9 +50,7 @@ dependencies {
"org.jetbrains.kotlin:kotlin-reflect:$kotlin_version",
"org.jetbrains.kotlin:kotlin-compiler:$kotlin_version"

runtime 'ch.qos.logback:logback-classic:1.1.7',
'ch.qos.logback:logback-core:1.1.7',
"org.jetbrains.kotlin:kotlin-runtime:$kotlin_version"
runtime "org.jetbrains.kotlin:kotlin-runtime:$kotlin_version"

testCompile 'junit:junit:4.12',
'pl.pragmatists:JUnitParams:1.0.5',
Expand Down
2 changes: 1 addition & 1 deletion gradle/versioning.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
//noinspection GroovyAssignabilityCheck
version = new ProjectVersion(
'1', '0', '24', System.env.TRAVIS_BUILD_NUMBER
'1', '0', '25', System.env.TRAVIS_BUILD_NUMBER
)

println "Version number: " + version
Expand Down

0 comments on commit 1fb78f8

Please sign in to comment.