File tree Expand file tree Collapse file tree 4 files changed +15
-15
lines changed Expand file tree Collapse file tree 4 files changed +15
-15
lines changed Original file line number Diff line number Diff line change 40
40
}
41
41
42
42
subprojects {
43
- apply (plugin = " java" )
43
+ apply (plugin = " java-library " )
44
44
apply (plugin = " maven-publish" )
45
45
apply (plugin = " signing" )
46
46
apply (plugin = " de.marcphilipp.nexus-publish" )
@@ -50,14 +50,14 @@ subprojects {
50
50
targetCompatibility = javaVersion
51
51
}
52
52
53
- val compile by configurations
54
- val testCompile by configurations
53
+ val implementation by configurations
54
+ val testImplementation by configurations
55
55
56
56
dependencies {
57
- compile (" org.jetbrains:annotations:17.0.0" )
57
+ implementation (" org.jetbrains:annotations:17.0.0" )
58
58
59
- testCompile (" com.google.guava:guava:28.1-jre" )
60
- testCompile (" org.testng:testng:7.0.0" )
59
+ testImplementation (" com.google.guava:guava:28.1-jre" )
60
+ testImplementation (" org.testng:testng:7.0.0" )
61
61
}
62
62
63
63
idea {
Original file line number Diff line number Diff line change 1
1
description = " Java Git-LFS client library"
2
2
3
3
dependencies {
4
- compile (project(" :gitlfs-common" ))
5
- compile (" org.apache.httpcomponents:httpclient:4.5.10" )
6
- compile (" org.slf4j:slf4j-api:1.7.28" )
4
+ api (project(" :gitlfs-common" ))
5
+ api (" org.apache.httpcomponents:httpclient:4.5.10" )
6
+ implementation (" org.slf4j:slf4j-api:1.7.28" )
7
7
8
- testCompile (" org.yaml:snakeyaml:1.25" )
8
+ testImplementation (" org.yaml:snakeyaml:1.25" )
9
9
testRuntimeOnly(" org.slf4j:slf4j-simple:1.7.28" )
10
10
}
Original file line number Diff line number Diff line change 1
1
description = " Java Git-LFS common structures"
2
2
3
3
dependencies {
4
- compile (" com.fasterxml.jackson.core:jackson-databind:2.9.9.3" )
4
+ api (" com.fasterxml.jackson.core:jackson-databind:2.9.9.3" )
5
5
}
Original file line number Diff line number Diff line change 1
1
description = " Java Git-LFS server implementation-free library"
2
2
3
3
dependencies {
4
- compile (project(" :gitlfs-common" ))
5
- compile (" javax.servlet:javax.servlet-api:4.0.1" )
4
+ api (project(" :gitlfs-common" ))
5
+ api (" javax.servlet:javax.servlet-api:4.0.1" )
6
6
7
- testCompile (project(" :gitlfs-client" ))
8
- testCompile (" org.eclipse.jetty:jetty-servlet:9.4.20.v20190813" )
7
+ testImplementation (project(" :gitlfs-client" ))
8
+ testImplementation (" org.eclipse.jetty:jetty-servlet:9.4.20.v20190813" )
9
9
testRuntimeOnly(" org.slf4j:slf4j-simple:1.7.28" )
10
10
}
You can’t perform that action at this time.
0 commit comments