Skip to content

Commit

Permalink
Version 1.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
paslavsky committed Feb 16, 2019
1 parent e07a06f commit 4877b66
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 10 deletions.
11 changes: 6 additions & 5 deletions build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
import com.jfrog.bintray.gradle.BintrayExtension
import com.jfrog.bintray.gradle.tasks.BintrayUploadTask
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
import org.gradle.api.plugins.ExtensionAware
import org.gradle.api.tasks.bundling.Jar

plugins {
base
kotlin("jvm") version "1.3.11" apply false
kotlin("jvm") version "1.3.21" apply false
id("com.jfrog.bintray") version "1.8.4" apply false
id("com.github.ben-manes.versions") version "0.20.0"
`maven-publish`
}

group = "net.paslavsky"
version = "1.1.1"
version = "1.1.2"

val ktor_version: String by project

Expand All @@ -27,7 +27,7 @@ subprojects {
}

group = "net.paslavsky"
version = "1.1.1"
version = "1.1.2"

repositories {
mavenCentral()
Expand All @@ -43,6 +43,7 @@ subprojects {
fun compile(dependencyNotation: Any) = this.add("compile", dependencyNotation)

compile(kotlin("stdlib-jdk8"))
compile(kotlin("reflect"))
compile("io.ktor:ktor-server-core:$ktor_version")
}

Expand Down Expand Up @@ -81,5 +82,5 @@ subprojects {
}

tasks.wrapper {
gradleVersion = "5.1"
gradleVersion = "5.2.1"
}
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
kotlin.code.style=official
ktor_version=1.1.1
ktor_version=1.1.2
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-5.1-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-5.2.1-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
2 changes: 1 addition & 1 deletion ktor-consul/gradle.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
consul_version=1.3.0
consul_version=1.3.1
2 changes: 1 addition & 1 deletion ktor-exposed/gradle.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
exposed_version=0.11.2
exposed_version=0.12.2
2 changes: 1 addition & 1 deletion ktor-sql/gradle.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
hikaricp_version=3.2.0
hikaricp_version=3.3.1

0 comments on commit 4877b66

Please sign in to comment.