File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11* /build /
2+ /build /
23/.gradle /
34/.idea /
45/.kotlin
Original file line number Diff line number Diff line change 1- plugins {
2- kotlin(" jvm" ) version " 2.0.0" apply false
1+ repositories.mavenCentral()
2+
3+ plugins {
4+ kotlin(" jvm" ) version " 2.0.0"
35 kotlin(" plugin.serialization" ) version " 2.0.0" apply false
46 id(" org.jetbrains.dokka" ) version " 1.9.20" apply false
57}
68
79subprojects {
10+ group = " net.typedrest"
11+ version = System .getenv(" VERSION" ) ? : " 1.0-SNAPSHOT"
12+
13+ repositories.mavenCentral()
14+
815 fun kotlin (module : String ) = " org.jetbrains.kotlin.${module} "
916 apply (plugin = kotlin(" jvm" ))
1017 apply (plugin = kotlin(" plugin.serialization" ))
1118 apply (plugin = " org.jetbrains.dokka" )
1219
13- repositories.mavenCentral()
14-
15- group = " net.typedrest"
16- version = System .getenv(" VERSION" ) ? : " 1.0-SNAPSHOT"
20+ kotlin {
21+ compilerOptions.allWarningsAsErrors = true
22+ }
1723}
You can’t perform that action at this time.
0 commit comments