Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
jaguililla committed Apr 5, 2022
1 parent 6c05555 commit 9c30985
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 19 deletions.
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ import com.github.jk1.license.render.ReportRenderer
*/

plugins {
kotlin("jvm") version("1.6.10") apply(false)
kotlin("jvm") version("1.6.20") apply(false)

id("idea")
id("eclipse")
Expand Down
6 changes: 3 additions & 3 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -34,17 +34,17 @@ logoLarge=assets/img/logo.svg
iconsDirectory=content

# VERSIONS
kotlinVersion=1.6.10
kotlinVersion=1.6.20
dokkaVersion=1.6.10
mockkVersion=1.12.3
junitVersion=5.8.2
gatlingVersion=3.7.6
jmhVersion=1.34
mkdocsMaterialVersion=8.2.7
mkdocsMaterialVersion=8.2.8

# http_server_servlet
servletVersion=5.0.0
jettyVersion=11.0.8
jettyVersion=11.0.9

# http_server_netty
nettyVersion=4.1.74.Final
Expand Down
2 changes: 1 addition & 1 deletion gradle/kotlin.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ tasks.withType(Test) { testTask ->
}

jacoco {
toolVersion = "0.8.7"
toolVersion = "0.8.8"
}

jacocoTestReport {
Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https://services.gradle.org/distributions/gradle-7.4.1-all.zip
distributionUrl=https://services.gradle.org/distributions/gradle-7.4.2-all.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
1 change: 0 additions & 1 deletion license.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@ SOFTWARE.
* [org.eclipse.jetty:webapp](https://www.eclipse.org/jetty): [Eclipse Public License, Version 2.0]
* [org.freemarker](https://freemarker.apache.org): [Apache License, Version 2.0]
* [org.jetbrains.kotlin](https://kotlinlang.org): [Apache License, Version 2.0]
* [org.jetbrains.kotlinx:kotlinx-coroutines](https://kotlinlang.org): [Apache License, Version 2.0]
* [org.junit.jupiter](https://junit.org/junit5): [Eclipse Public License, Version 2.0]
* [org.slf4j](https://www.slf4j.org): [MIT License]
* [org.yaml](https://www.snakeyaml.org): [Apache License, Version 2.0]
Expand Down
1 change: 0 additions & 1 deletion starters/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@ extensions.configure<PublishingExtension> {
"maven.compiler.target" to target,
"kotlin.compiler.jvmTarget" to target,
"kotlin.version" to project.properties["kotlinVersion"].toString(),
"coroutines.version" to project.properties["kotlinxCoroutinesVersion"].toString(),
"dokka.version" to project.properties["dokkaVersion"].toString(),
"mockk.version" to project.properties["mockkVersion"].toString(),
"junit.version" to project.properties["junitVersion"].toString(),
Expand Down
12 changes: 1 addition & 11 deletions starters/kotlin_pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,6 @@
<artifactId>kotlin-reflect</artifactId>
<version>${kotlin.version}</version>
</dependency>
<dependency>
<groupId>org.jetbrains.kotlinx</groupId>
<artifactId>kotlinx-coroutines-core</artifactId>
<version>${coroutines.version}</version>
</dependency>

<!-- Hexagon -->
<dependency>
Expand Down Expand Up @@ -114,11 +109,6 @@
<artifactId>kotlin-test</artifactId>
<version>${kotlin.version}</version>
</dependency>
<dependency>
<groupId>org.jetbrains.kotlinx</groupId>
<artifactId>kotlinx-coroutines-test</artifactId>
<version>${coroutines.version}</version>
</dependency>
<dependency>
<groupId>io.mockk</groupId>
<artifactId>mockk</artifactId>
Expand Down Expand Up @@ -257,7 +247,7 @@
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>0.8.7</version>
<version>0.8.8</version>
<executions>
<execution>
<goals>
Expand Down

0 comments on commit 9c30985

Please sign in to comment.