File tree 2 files changed +265
-267
lines changed
dslink-v2/src/main/java/com/acuity/iot/dsa/dslink/transport
2 files changed +265
-267
lines changed Original file line number Diff line number Diff line change 1
1
subprojects {
2
2
3
- apply plugin : ' jacoco'
4
3
apply plugin : ' java-library'
5
- apply plugin : ' maven'
4
+ apply plugin : ' maven-publish '
6
5
7
6
group ' org.iot-dsa'
8
- version ' 0.75.3 '
7
+ version ' 0.76.0 '
9
8
10
9
targetCompatibility = JavaVersion . VERSION_1_8
11
10
sourceCompatibility = JavaVersion . VERSION_1_8
12
11
13
12
repositories {
14
- jcenter()
15
13
mavenLocal()
14
+ mavenCentral()
16
15
maven {
17
16
url " https://plugins.gradle.org/m2/"
18
17
}
@@ -26,6 +25,14 @@ subprojects {
26
25
}
27
26
}
28
27
28
+ publishing {
29
+ publications {
30
+ mavenJava(MavenPublication ) {
31
+ from components. java
32
+ }
33
+ }
34
+ }
35
+
29
36
task sourcesJar(group : ' build' , type : Jar , dependsOn : classes) {
30
37
archiveClassifier = ' sources'
31
38
from sourceSets. main. allJava
@@ -40,17 +47,6 @@ subprojects {
40
47
useTestNG()
41
48
}
42
49
43
- jacocoTestReport {
44
-
45
- reports {
46
- xml. enabled true
47
- csv. enabled false
48
- html. enabled true
49
- }
50
- }
51
-
52
- build. dependsOn jacocoTestReport
53
-
54
50
}
55
51
56
52
allprojects {
@@ -60,5 +56,5 @@ allprojects {
60
56
}
61
57
62
58
wrapper {
63
- gradleVersion = ' 6.1 '
59
+ gradleVersion = ' 6.8 '
64
60
}
You can’t perform that action at this time.
0 commit comments