Skip to content

Commit 46866de

Browse files
committed
Move subproject to root directory
There is only one project here, so there is no need for a subproject.
1 parent 72b54a1 commit 46866de

File tree

6 files changed

+20
-34
lines changed

6 files changed

+20
-34
lines changed

build.gradle

+20-3
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,32 @@ buildscript {
77
dependencies {
88
// NOTE: Do not place your application dependencies here; they belong
99
// in the individual module build.gradle files
10+
classpath 'org.kt3k.gradle.plugin:coveralls-gradle-plugin:2.8.3'
1011
}
1112
}
1213

1314
plugins {
1415
id 'net.researchgate.release' version '2.8.1'
16+
id "com.jfrog.bintray" version "1.8.5"
1517
}
1618

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
2037
}
2138
}

settings.gradle

-1
Original file line numberDiff line numberDiff line change
@@ -1 +0,0 @@
1-
include ':simplesocks'

simplesocks/.gitignore

-1
This file was deleted.

simplesocks/build.gradle

-29
This file was deleted.

0 commit comments

Comments
 (0)