44// https://mvnrepository.com/artifact/com.google.protobuf/protobuf-gradle-plugin
55plugins {
66 id " io.github.gradle-nexus.publish-plugin" version " 1.1.0"
7- id ' com.google.protobuf' version " 0.9.2 "
7+ id ' com.google.protobuf' version " 0.9.4 "
88 id ' jacoco'
99 id ' maven-publish'
10- id ' org.jetbrains.kotlin.jvm' version ' 1.8.10 '
10+ id ' org.jetbrains.kotlin.jvm' version ' 1.9.0 '
1111 id ' projectversiongen'
1212 id ' signing'
1313 id ' steamlanguagegen'
1414}
1515
1616allprojects {
1717 group ' in.dragonbra'
18- version ' 1.3.0-beta01 '
18+ version ' 1.3.0'
1919}
2020
2121sourceCompatibility = 1.8
@@ -26,11 +26,11 @@ repositories {
2626
2727// https://mvnrepository.com/artifact/com.google.protobuf/protoc
2828protobuf. protoc {
29- artifact = ' com.google.protobuf:protoc:3.22.2 '
29+ artifact = ' com.google.protobuf:protoc:3.22.4 '
3030}
3131
3232// https://www.eclemma.org/jacoco
33- jacoco. toolVersion = " 0.8.8 "
33+ jacoco. toolVersion = " 0.8.10 "
3434
3535jacocoTestReport. reports {
3636 xml. required = true
@@ -66,56 +66,47 @@ sourceSets.main {
6666 )
6767}
6868
69- compileKotlin {
70- kotlinOptions {
71- jvmTarget = " 1.8"
72- }
73- }
74- compileTestKotlin {
75- kotlinOptions {
76- jvmTarget = " 1.8"
77- }
78- }
79-
8069check. dependsOn jacocoTestReport
8170compileJava. dependsOn(generateSteamLanguage)
8271compileJava. dependsOn(generateProjectVersion)
8372
8473dependencies {
8574 implementation " org.jetbrains.kotlin:kotlin-stdlib-jdk8"
86- implementation(" org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.0-Beta" )
75+
76+ // https://mvnrepository.com/artifact/org.jetbrains.kotlinx/kotlinx-coroutines-core
77+ implementation ' org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3'
8778
8879 // https://mvnrepository.com/artifact/com.google.code.gson/gson
8980 implementation ' com.google.code.gson:gson:2.10.1'
9081 // https://mvnrepository.com/artifact/com.google.protobuf/protobuf-java
91- implementation ' com.google.protobuf:protobuf-java:3.22.2 '
82+ implementation ' com.google.protobuf:protobuf-java:3.22.4 '
9283 // https://mvnrepository.com/artifact/com.squareup.okhttp3/okhttp
9384 implementation ' com.squareup.okhttp3:okhttp:4.10.0'
9485 // https://mvnrepository.com/artifact/commons-validator/commons-validator
9586 implementation ' commons-validator:commons-validator:1.7'
9687 // https://mvnrepository.com/artifact/org.apache.commons/commons-lang3
9788 implementation ' org.apache.commons:commons-lang3:3.12.0'
9889 // https://mvnrepository.com/artifact/org.java-websocket/Java-WebSocket
99- implementation ' org.java-websocket:Java-WebSocket:1.5.3 '
90+ implementation ' org.java-websocket:Java-WebSocket:1.5.4 '
10091 // https://mvnrepository.com/artifact/commons-io/commons-io
101- implementation ' commons-io:commons-io:2.11 .0'
92+ implementation ' commons-io:commons-io:2.13 .0'
10293
10394 /* Unit Testing */
10495
10596 // https://mvnrepository.com/artifact/com.squareup.okhttp3/mockwebserver3-junit5
10697 testImplementation ' com.squareup.okhttp3:mockwebserver3-junit5:5.0.0-alpha.11'
10798 // https://mvnrepository.com/artifact/commons-codec/commons-codec
108- testImplementation ' commons-codec:commons-codec:1.15 '
99+ testImplementation ' commons-codec:commons-codec:1.16.0 '
109100 // https://mvnrepository.com/artifact/org.junit.jupiter/junit-jupiter-api
110- testImplementation ' org.junit.jupiter:junit-jupiter-api:5.9.2 '
101+ testImplementation ' org.junit.jupiter:junit-jupiter-api:5.10.0 '
111102 // https://mvnrepository.com/artifact/org.junit.jupiter/junit-jupiter-engine
112- testImplementation ' org.junit.jupiter:junit-jupiter-engine:5.9.2 '
103+ testImplementation ' org.junit.jupiter:junit-jupiter-engine:5.10.0 '
113104 // https://mvnrepository.com/artifact/org.bouncycastle/bcprov-jdk15on
114105 testImplementation ' org.bouncycastle:bcprov-jdk15on:1.70'
115106 // https://mvnrepository.com/artifact/org.mockito/mockito-core
116107 testImplementation ' org.mockito:mockito-core:4.11.0'
117108 // https://mvnrepository.com/artifact/org.junit.jupiter/junit-jupiter-params
118- testImplementation ' org.junit.jupiter:junit-jupiter-params:5.9.2 '
109+ testImplementation ' org.junit.jupiter:junit-jupiter-params:5.10.0 '
119110 // https://mvnrepository.com/artifact/org.mockito/mockito-junit-jupiter
120111 testImplementation ' org.mockito:mockito-junit-jupiter:4.11.0'
121112}
0 commit comments