File tree 2 files changed +23
-0
lines changed
2 files changed +23
-0
lines changed Original file line number Diff line number Diff line change @@ -100,6 +100,21 @@ All of it makes multi-process communication smooth enough to recognize remote se
100
100
* Load balancing: task is done, request new via client's lambda.
101
101
* Stateful streaming computations: nodes provide theirs lambdas for a mapper.
102
102
103
+ == Getting started
104
+
105
+ .Run detekt
106
+ [source,bash]
107
+ ----
108
+ $ ./gradlew :lambdarpc:detekt
109
+ ----
110
+
111
+ .Generate documentation
112
+ [source,bash]
113
+ ----
114
+ $ ./gradlew :lambdarpc:dokkaHtml
115
+ $ cd ./lambdarpc/build/dokka/html
116
+ ----
117
+
103
118
=== Repository organization
104
119
105
120
.examples
Original file line number Diff line number Diff line change @@ -11,6 +11,7 @@ plugins {
11
11
kotlin(" plugin.serialization" ) version " 1.6.10"
12
12
id(" com.google.protobuf" ) version " 0.8.18"
13
13
id(" io.gitlab.arturbosch.detekt" ) version " 1.19.0"
14
+ id(" org.jetbrains.dokka" ) version " 1.6.10"
14
15
}
15
16
16
17
tasks.withType<KotlinCompile >().all {
@@ -38,6 +39,13 @@ dependencies {
38
39
testImplementation(" org.junit.jupiter:junit-jupiter" )
39
40
}
40
41
42
+ tasks.withType<Test > {
43
+ useJUnitPlatform()
44
+ testLogging {
45
+ events(" passed" , " skipped" , " failed" )
46
+ }
47
+ }
48
+
41
49
protobuf {
42
50
protoc {
43
51
artifact = " com.google.protobuf:protoc:3.19.1"
You can’t perform that action at this time.
0 commit comments