1
1
plugins {
2
- id ' net.minecrell.licenser ' version ' 0.4 .1'
2
+ id ' com.github.hierynomus.license ' version ' 0.16 .1'
3
3
id " com.github.sherter.google-java-format" version " 0.9"
4
- id " net.ltgt.errorprone" version " 1.3 .0"
4
+ id " net.ltgt.errorprone" version " 3.1 .0"
5
5
id ' org.springframework.boot' version ' 2.7.15'
6
-
7
6
}
8
7
9
8
apply plugin : ' java'
10
- apply plugin : ' maven'
9
+ apply plugin : ' maven-publish '
11
10
apply plugin : ' com.github.sherter.google-java-format'
12
11
apply plugin : ' io.spring.dependency-management'
13
12
@@ -37,18 +36,17 @@ repositories {
37
36
}
38
37
39
38
dependencies {
40
- errorproneJavac(" com.google.errorprone:javac:9+181-r4173-1" )
41
- errorprone(" com.google.errorprone:error_prone_core:2.4.0" )
42
- compile group : ' com.uber.cadence' , name : ' cadence-client' , version : ' 3.7.2'
43
- compile group : ' commons-configuration' , name : ' commons-configuration' , version : ' 1.9'
44
- compile group : ' ch.qos.logback' , name : ' logback-classic' , version : ' 1.2.3'
45
- compile group : ' com.uber.m3' , name : ' tally-core' , version : ' 0.10.0'
46
- compile group : ' com.uber.m3' , name : ' tally-prometheus' , version : ' 0.10.0'
47
- compile group : ' io.prometheus' , name : ' simpleclient' , version : ' 0.10.0'
48
- compile group : ' io.prometheus' , name : ' simpleclient_httpserver' , version : ' 0.10.0'
49
- testCompile group : ' junit' , name : ' junit' , version : ' 4.12'
50
- testCompile group : ' org.mockito' , name : ' mockito-all' , version : ' 1.10.19'
51
- testCompile group : ' org.powermock' , name : ' powermock-api-mockito' , version : ' 1.7.3'
39
+ errorprone(" com.google.errorprone:error_prone_core:2.23.0" )
40
+ implementation group : ' com.uber.cadence' , name : ' cadence-client' , version : ' 3.7.2'
41
+ implementation group : ' commons-configuration' , name : ' commons-configuration' , version : ' 1.9'
42
+ implementation group : ' ch.qos.logback' , name : ' logback-classic' , version : ' 1.2.3'
43
+ implementation group : ' com.uber.m3' , name : ' tally-core' , version : ' 0.10.0'
44
+ implementation group : ' com.uber.m3' , name : ' tally-prometheus' , version : ' 0.10.0'
45
+ implementation group : ' io.prometheus' , name : ' simpleclient' , version : ' 0.10.0'
46
+ implementation group : ' io.prometheus' , name : ' simpleclient_httpserver' , version : ' 0.10.0'
47
+ testImplementation group : ' junit' , name : ' junit' , version : ' 4.13.2'
48
+ testImplementation group : ' org.mockito' , name : ' mockito-all' , version : ' 1.10.19'
49
+ testImplementation group : ' org.powermock' , name : ' powermock-api-mockito' , version : ' 1.7.4'
52
50
implementation ' org.springframework.boot:spring-boot-starter-web'
53
51
}
54
52
@@ -67,4 +65,5 @@ task execute(type: JavaExec) {
67
65
68
66
license {
69
67
header rootProject. file(' license-header.txt' )
68
+ include " **/*.java"
70
69
}
0 commit comments