File tree Expand file tree Collapse file tree 3 files changed +11
-12
lines changed Expand file tree Collapse file tree 3 files changed +11
-12
lines changed Original file line number Diff line number Diff line change @@ -2,4 +2,5 @@ language: java
2
2
jdk :
3
3
- oraclejdk8
4
4
after_success :
5
- - ./gradlew cobertura coveralls
5
+ - if [ -e ./gradlew ]; then ./gradlew jacocoTestReport;else gradle jacocoTestReport;fi
6
+ - bash <(curl -s https://codecov.io/bash) -t 7a683107-98e4-4c0d-b154-649e9ac9693c
Original file line number Diff line number Diff line change 1
- [ ![ Build Status] ( https://travis-ci.org/memoizr/assertk-core.svg?branch=master )] ( https://travis-ci.org/memoizr/assertk-core )
2
- [ ![ ] ( https://jitpack.io/v/memoizr/assertk-core.svg )] ( https://jitpack.io/#memoizr/assertk-core )
3
- [ ![ GitHub license] ( https://img.shields.io/github/license/kotlintest/kotlintest.svg )] ( http://www.apache.org/licenses/LICENSE-2.0.html )
1
+ [ ![ Build Status] ( https://travis-ci.org/memoizr/assertk-core.svg?branch=master )] ( https://travis-ci.org/memoizr/assertk-core ) [ ![ ] ( https://jitpack.io/v/memoizr/assertk-core.svg )] ( https://jitpack.io/#memoizr/assertk-core ) [ ![ GitHub license] ( https://img.shields.io/github/license/kotlintest/kotlintest.svg )] ( http://www.apache.org/licenses/LICENSE-2.0.html ) [ ![ codecov] ( https://codecov.io/gh/memoizr/assertk-core/branch/master/graph/badge.svg )] ( https://codecov.io/gh/memoizr/assertk-core )
2
+
4
3
# AssertK - Fluent assertions for Kotlin
5
4
AssertK provides a Kotlin-friendly syntax for using the amazing AssertJ assertion framework.
6
5
Original file line number Diff line number Diff line change @@ -11,24 +11,23 @@ buildscript {
11
11
}
12
12
}
13
13
14
- plugins {
15
- id ' net.saliman.cobertura' version ' 2.3.1'
16
- id ' com.github.kt3k.coveralls' version ' 2.6.3'
17
- }
18
-
19
- cobertura. coverageFormats = [' html' , ' xml' ]
20
- cobertura. coverageSourceDirs = [' src/main/kotlin' ]
21
- cobertura. coverageSourceDirs = [' src/test/kotlin' ]
22
14
group ' com.memoizr'
23
15
version ' 0.1'
24
16
25
17
apply plugin : ' kotlin'
18
+ apply plugin : ' jacoco'
26
19
27
20
repositories {
28
21
maven { url " https://dl.bintray.com/kotlin/kotlin-eap-1.1" }
29
22
jcenter()
30
23
}
31
24
25
+ jacocoTestReport {
26
+ reports {
27
+ xml. enabled true
28
+ }
29
+ }
30
+
32
31
dependencies {
33
32
compile " org.jetbrains.kotlin:kotlin-stdlib:$KOTLIN_VERSION "
34
33
compile group : ' org.assertj' , name : ' assertj-core' , version : ' 2.5.0'
You can’t perform that action at this time.
0 commit comments