File tree 6 files changed +19
-27
lines changed
6 files changed +19
-27
lines changed Original file line number Diff line number Diff line change @@ -46,7 +46,13 @@ tasks.register<Copy>("datasets") {
46
46
into(file(" $buildDir /datasets" ))
47
47
}
48
48
49
- tasks.register(" run" )
49
+ tasks.register(" run" ) {
50
+ dependsOn(
51
+ " protobuf-java:run" ,
52
+ " protokt:run" ,
53
+ " wire:run"
54
+ )
55
+ }
50
56
51
57
subprojects {
52
58
apply (plugin = " java" )
@@ -55,7 +61,6 @@ subprojects {
55
61
56
62
dependencies {
57
63
implementation(libraries.kotlinStdlib)
58
- implementation(libraries.kotlinReflect)
59
64
implementation(libraries.jmhCore)
60
65
add(" kapt" , libraries.jmhGenerator)
61
66
}
Original file line number Diff line number Diff line change @@ -41,8 +41,4 @@ dependencies {
41
41
42
42
tasks.named(" run" ) {
43
43
dependsOn(" :benchmarks:datasets" )
44
-
45
- parent?.tasks?.named(" run" ) {
46
- dependsOn(this @named)
47
- }
48
44
}
Original file line number Diff line number Diff line change @@ -26,21 +26,14 @@ configure<JavaApplication> {
26
26
executableDir = " .."
27
27
}
28
28
29
- tasks.withType<JavaCompile > {
30
- enabled = false
31
- }
32
-
33
29
dependencies {
34
30
protobuf(project(" :benchmarks:schema" ))
35
31
36
- implementation(project( " :benchmarks:util " ) )
32
+ implementation(libraries.kotlinReflect )
37
33
implementation(libraries.protobuf)
34
+ implementation(project(" :benchmarks:util" ))
38
35
}
39
36
40
37
tasks.named(" run" ) {
41
38
dependsOn(" :benchmarks:datasets" )
42
-
43
- parent?.tasks?.named(" run" ) {
44
- dependsOn(this @named)
45
- }
46
39
}
Original file line number Diff line number Diff line change @@ -55,8 +55,4 @@ sourceSets {
55
55
56
56
tasks.named(" run" ) {
57
57
dependsOn(" :benchmarks:datasets" )
58
-
59
- parent?.tasks?.named(" run" ) {
60
- dependsOn(this @named)
61
- }
62
58
}
Original file line number Diff line number Diff line change @@ -19,21 +19,23 @@ object versions {
19
19
const val arrow = " 0.10.5"
20
20
const val autoService = " 1.0-rc7"
21
21
const val grpc = " 1.32.1"
22
- const val jackson = " 2.11.3"
23
22
const val kollection = " 0.7"
24
23
const val kotlin = " 1.3.72"
25
24
const val kotlinxCoroutines = " 1.3.7"
26
25
const val protobuf = DEFAULT_PROTOBUF_VERSION
27
26
const val protobufPlugin = " 0.8.13"
28
- const val stringTemplate = " 4.3"
27
+ const val stringTemplate = " 4.3.1 "
29
28
30
29
// Test
30
+ const val jackson = " 2.11.3"
31
+ const val junit = " 5.7.0"
32
+ const val truth = " 1.1"
33
+
34
+ // Benchmarks
31
35
const val datasets = " 0.1.0"
32
- const val gradleDownload = " 4.0.4"
33
- const val jmh = " 1.23"
34
- const val junit = " 5.6.2"
35
- const val truth = " 1.0.1"
36
- const val wire = " 3.0.0-alpha01"
36
+ const val gradleDownload = " 4.1.1"
37
+ const val jmh = " 1.26"
38
+ const val wire = " 3.5.0"
37
39
38
40
// Third Party
39
41
const val protoGoogleCommonProtos = " 1.18.0"
Original file line number Diff line number Diff line change 1
1
distributionBase =GRADLE_USER_HOME
2
2
distributionPath =wrapper/dists
3
- distributionUrl =https\://services.gradle.org/distributions/gradle-6.6 .1-bin.zip
3
+ distributionUrl =https\://services.gradle.org/distributions/gradle-6.7 .1-bin.zip
4
4
zipStoreBase =GRADLE_USER_HOME
5
5
zipStorePath =wrapper/dists
You can’t perform that action at this time.
0 commit comments