Skip to content

Commit

Permalink
- internal improvements
Browse files Browse the repository at this point in the history
- update spring boot to 1.5.1
- replace tomcat with undertow
  • Loading branch information
spolnik committed Feb 6, 2017
1 parent d9730ee commit 91a403f
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
7 changes: 6 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
buildscript {
ext.kotlin_version = '1.0.6'
ext.spring_version = '1.4.0.RELEASE'
ext.spring_version = '1.5.1.RELEASE'

repositories {
jcenter()
Expand Down Expand Up @@ -28,6 +28,10 @@ repositories {
mavenCentral()
}

configurations {
compile.exclude module: "spring-boot-starter-tomcat"
}

jar {
baseName = 'jalgoarena-judge'
}
Expand All @@ -39,6 +43,7 @@ dependencies {
'com.fasterxml.jackson.core:jackson-annotations',
"com.fasterxml.jackson.module:jackson-module-kotlin",
"org.springframework.boot:spring-boot-starter-web",
"org.springframework.boot:spring-boot-starter-undertow",
"org.springframework.boot:spring-boot-starter-actuator",
'org.springframework.cloud:spring-cloud-starter-eureka',
"org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version",
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', '23', System.env.TRAVIS_BUILD_NUMBER
'1', '0', '24', System.env.TRAVIS_BUILD_NUMBER
)

println "Version number: " + version
Expand Down

0 comments on commit 91a403f

Please sign in to comment.