Skip to content

Commit

Permalink
Bumped Gradle version
Browse files Browse the repository at this point in the history
  • Loading branch information
jmnarloch committed Oct 24, 2015
1 parent 9eb9f1b commit d490c63
Show file tree
Hide file tree
Showing 4 changed files with 25 additions and 1 deletion.
1 change: 1 addition & 0 deletions .coveralls.yml
@@ -0,0 +1 @@
repo_token: GePGL0UeMhfAkKaGHuXqYCipRrslPcj6T
2 changes: 2 additions & 0 deletions .travis.yml
Expand Up @@ -5,3 +5,5 @@ install:
- ./gradlew assemble -PossrhUsername="${ossrhUsername}" -PossrhPassword="${ossrhPassword}"
script:
- ./gradlew check -PossrhUsername="${ossrhUsername}" -PossrhPassword="${ossrhPassword}"
after_success:
- ./gradlew jacocoTestReport coveralls -PossrhUsername="${ossrhUsername}" -PossrhPassword="${ossrhPassword}"
1 change: 1 addition & 0 deletions README.md
Expand Up @@ -3,6 +3,7 @@
> A Spring Cloud starter for easy setup request correlation
[![Build Status](https://travis-ci.org/jmnarloch/request-correlation-spring-cloud-starter.svg?branch=master)](https://travis-ci.org/jmnarloch/request-correlation-spring-cloud-starter)
[![Coverage Status](https://coveralls.io/repos/jmnarloch/request-correlation-spring-cloud-starter/badge.svg?branch=master&service=github)](https://coveralls.io/github/jmnarloch/request-correlation-spring-cloud-starter?branch=master)

## Features

Expand Down
22 changes: 21 additions & 1 deletion build.gradle
@@ -1,6 +1,13 @@
buildscript {
repositories {
jcenter()
}
}

plugins {
id "com.github.hierynomus.license" version "0.11.0"
id 'net.researchgate.release' version '2.1.2'
id 'com.github.kt3k.coveralls' version '2.4.0'
}

apply plugin: 'java'
Expand All @@ -14,6 +21,8 @@ apply from: 'gradle/release.gradle'
apply plugin: 'findbugs'
apply plugin: 'pmd'

apply plugin: 'com.github.kt3k.coveralls'

sourceCompatibility = 1.7

group = "io.jmnarloch"
Expand All @@ -24,7 +33,7 @@ ext {
}

task wrapper(type: Wrapper) {
gradleVersion = '2.6'
gradleVersion = '2.8'
}

jar {
Expand All @@ -38,6 +47,10 @@ repositories {
jcenter()
}

compileJava {
options.fork = true
}

dependencies {

compile (libraries.springBootWeb)
Expand All @@ -52,3 +65,10 @@ dependencies {
findbugs {
ignoreFailures = true
}

jacocoTestReport {
reports {
xml.enabled = true
html.enabled = true
}
}

0 comments on commit d490c63

Please sign in to comment.