Skip to content

Commit

Permalink
Update travis.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
NESOY committed Apr 8, 2018
1 parent 252e526 commit 67de82e
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 4 deletions.
3 changes: 3 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,3 +14,6 @@ cache:

# clean 후 Build (Build시 자동으로 test 수행)
script: "./gradlew clean build"

after_success:
- ./gradlew jacocoTestReport coveralls
11 changes: 7 additions & 4 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
buildscript {
ext {
springBootVersion = '2.0.1.RELEASE'
springBootVersion = '1.5.10.RELEASE'
}
repositories {
mavenCentral()
Expand All @@ -10,8 +10,12 @@ buildscript {
classpath 'org.kt3k.gradle.plugin:coveralls-gradle-plugin:2.8.2'
}
}
apply plugin: 'com.github.kt3k.coveralls'
apply plugin: 'jacoco'
plugins {
id 'jacoco'
id 'com.github.kt3k.coveralls' version '2.8.2'
}


apply plugin: 'java'
apply plugin: 'eclipse'
apply plugin: 'org.springframework.boot'
Expand All @@ -25,7 +29,6 @@ repositories {
mavenCentral()
}


dependencies {
compile('org.springframework.boot:spring-boot-starter-web')
testCompile('org.springframework.boot:spring-boot-starter-test')
Expand Down

0 comments on commit 67de82e

Please sign in to comment.