File tree 5 files changed +9
-9
lines changed
5 files changed +9
-9
lines changed Original file line number Diff line number Diff line change 27
27
logbackVersion = ' 1.2.3'
28
28
mockitoJunitVersion = " 3.1.0"
29
29
30
- scmSlug = ' web3j'
31
30
}
32
31
33
32
Original file line number Diff line number Diff line change @@ -3,9 +3,9 @@ apply plugin: 'com.jfrog.bintray'
3
3
bintray {
4
4
user = System . getenv(' BINTRAY_USER' )
5
5
key = System . getenv(' BINTRAY_KEY' )
6
- def slug = project . name
7
- if (project. hasProperty(' scmSlug ' )) {
8
- slug = project. scmSlug
6
+ def slug = rootProject . name
7
+ if (project. hasProperty(' rootProjectOverride ' )) {
8
+ slug = project. rootProjectOverride
9
9
}
10
10
publications = [' maven' ]
11
11
publish = true
Original file line number Diff line number Diff line change @@ -18,7 +18,8 @@ task jacocoRootTestReport(type: org.gradle.testing.jacoco.tasks.JacocoReport) {
18
18
exclude : [
19
19
' org/web3j/abi/datatypes/generated/**' ,
20
20
' org/web3j/tuples/generated/**' ,
21
- ' org/web3j/ens/contracts/generated/**'
21
+ ' org/web3j/ens/contracts/generated/**' ,
22
+ ' org/gradle/**'
22
23
])
23
24
}))
24
25
}
Original file line number Diff line number Diff line change @@ -43,9 +43,9 @@ publishing {
43
43
}
44
44
45
45
scm {
46
- def slug = project . name
47
- if (project. hasProperty(' scmSlug ' )) {
48
- slug = project. scmSlug
46
+ def slug = rootProject . name
47
+ if (project. hasProperty(' rootProjectOverride ' )) {
48
+ slug = project. rootProjectOverride
49
49
}
50
50
51
51
url = " https://github.com/web3j/$slug "
Original file line number Diff line number Diff line change 1
- rootProject. name = ' base '
1
+ rootProject. name = ' web3j '
2
2
3
3
include ' abi'
4
4
include ' besu'
You can’t perform that action at this time.
0 commit comments