File tree 6 files changed +20
-34
lines changed
main/java/org/connectbot/simplesocks
test/java/org/connectbot/simplesocks
6 files changed +20
-34
lines changed Original file line number Diff line number Diff line change @@ -7,15 +7,32 @@ buildscript {
7
7
dependencies {
8
8
// NOTE: Do not place your application dependencies here; they belong
9
9
// in the individual module build.gradle files
10
+ classpath ' org.kt3k.gradle.plugin:coveralls-gradle-plugin:2.8.3'
10
11
}
11
12
}
12
13
13
14
plugins {
14
15
id ' net.researchgate.release' version ' 2.8.1'
16
+ id " com.jfrog.bintray" version " 1.8.5"
15
17
}
16
18
17
- allprojects {
18
- repositories {
19
- jcenter()
19
+ repositories {
20
+ jcenter()
21
+ }
22
+
23
+ apply plugin : ' java'
24
+ apply plugin : ' jacoco'
25
+ apply plugin : ' com.github.kt3k.coveralls'
26
+ apply plugin : ' com.jfrog.bintray'
27
+ apply from : " ${ rootDir} /publish.gradle"
28
+
29
+ dependencies {
30
+ testCompile ' junit:junit:4.13.1'
31
+ }
32
+
33
+ jacocoTestReport {
34
+ reports {
35
+ xml. enabled = true // coveralls plugin depends on xml format report
36
+ html. enabled = true
20
37
}
21
38
}
Original file line number Diff line number Diff line change 1
- include ' :simplesocks'
Load Diff This file was deleted.
Load Diff This file was deleted.
File renamed without changes.
File renamed without changes.
You can’t perform that action at this time.
0 commit comments