Skip to content

Commit

Permalink
changes versioning 👷
Browse files Browse the repository at this point in the history
  • Loading branch information
noloman committed Aug 5, 2019
1 parent 270ea27 commit c4314f1
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 13 deletions.
16 changes: 13 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,4 +1,14 @@
buildscript {
ext.ktor_version = '1.2.2'
ext.kotlin_version = '1.3.41'
ext.logback_version = '1.2.1'
ext.moshi_version = '1.0.1'
ext.exposed_version = '0.13.5'
ext.h2_version = '1.4.199'
ext.hikaricp_version = '3.3.1'
ext.postgres_version = '42.2.6'
ext.junit_version = '4.12'

repositories {
jcenter()
}
Expand Down Expand Up @@ -34,13 +44,13 @@ dependencies {
implementation "ch.qos.logback:logback-classic:$logback_version"
implementation "com.ryanharter.ktor:ktor-moshi:$moshi_version"
implementation "io.ktor:ktor-auth:$ktor_version"
testImplementation "io.ktor:ktor-server-tests:$ktor_version"
testImplementation "io.ktor:ktor-server-test-host:$ktor_version"
implementation "io.ktor:ktor-locations:$ktor_version"
implementation "org.jetbrains.exposed:exposed:$exposed_version"
implementation "com.h2database:h2:$h2_version"
implementation "com.zaxxer:HikariCP:$hikaricp_version"
implementation "org.postgresql:postgresql:$postgres_version"
testRuntimeOnly "org.jetbrains.kotlin:kotlin-reflect:$kotlin_version"
testImplementation group: 'junit', name: 'junit', version: '4.12'
testImplementation "io.ktor:ktor-server-test-host:$ktor_version"
testImplementation "io.ktor:ktor-server-tests:$ktor_version"
testImplementation group: 'junit', name: 'junit', version: "$junit_version"
}
11 changes: 1 addition & 10 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -1,10 +1 @@
ktor_version=1.2.2
kotlin.code.style=official
kotlin_version=1.3.40
logback_version=1.2.1
moshi_version=1.0.1
exposed_version=0.13.5
h2_version=1.4.199
hikaricp_version=3.3.1
postgres_version=42.2.6
spek_version=2.0.6
ext.kotlin.code.style=official

0 comments on commit c4314f1

Please sign in to comment.