Skip to content

Commit 7874da8

Browse files
authored
Feature/update 4 (#28)
* Update Gradle * Update Kotlin * Update Plugins * Update libraries * Update Redis * Update version
1 parent 48195ec commit 7874da8

12 files changed

Lines changed: 26 additions & 22 deletions

File tree

build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
tasks.wrapper {
2-
gradleVersion = "9.3.1"
2+
gradleVersion = "9.4.1"
33
}
44

55
allprojects {
66

77
group = "com.ucasoft.ktor"
88

9-
version = "0.59.4"
9+
version = "0.63.3"
1010

1111
repositories {
1212
mavenCentral()

buildSrc/src/main/kotlin/Dependensies.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import org.gradle.api.Project
22

3-
const val ktorVersion = "3.4.0"
4-
const val kotestVersion = "6.1.4"
3+
const val ktorVersion = "3.4.2"
4+
const val kotestVersion = "6.1.10"
55

66
fun Project.ktor(module: String) = "io.ktor:ktor-$module:$ktorVersion"
77

gradle/wrapper/gradle-wrapper.jar

2.73 KB
Binary file not shown.

gradle/wrapper/gradle-wrapper.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-9.3.1-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-9.4.1-bin.zip
44
networkTimeout=10000
55
validateDistributionUrl=true
66
zipStoreBase=GRADLE_USER_HOME

gradlew

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

ktor-simple-cache/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
# Ktor Simple Cache
22
Base solution which provides the plugin implementation and abstract class for cache providers.
33

4-
[![Maven Central with version prefix filter](https://img.shields.io/maven-central/v/com.ucasoft.ktor/ktor-simple-cache/0.59.4?color=blue)](https://search.maven.org/artifact/com.ucasoft.ktor/ktor-simple-cache/0.59.4/jar)
4+
[![Maven Central with version prefix filter](https://img.shields.io/maven-central/v/com.ucasoft.ktor/ktor-simple-cache/0.63.3?color=blue)](https://search.maven.org/artifact/com.ucasoft.ktor/ktor-simple-cache/0.63.3/jar)
55
## Setup
66
### Gradle
77
```kotlin
88
repositories {
99
mavenCentral()
1010
}
1111

12-
implementation("com.ucasoft.ktor:ktor-simple-cache:0.59.4")
12+
implementation("com.ucasoft.ktor:ktor-simple-cache:0.63.3")
1313
```
1414
## Usage
1515
```kotlin

ktor-simple-cache/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ kotlin {
2727
implementation(ktorServer("test-host"))
2828
implementation(kotest("assertions-core"))
2929
implementation(kotest("assertions-ktor"))
30-
implementation("org.mockito.kotlin:mockito-kotlin:6.2.3")
30+
implementation("org.mockito.kotlin:mockito-kotlin:6.3.0")
3131
}
3232
kotlin.srcDir("src/test/kotlin")
3333
}

ktor-simple-memory-cache/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
# Ktor Simple Memory Cache
22
Memory cache provider for Ktor Simple Cache plugin
33

4-
[![Maven Central with version prefix filter](https://img.shields.io/maven-central/v/com.ucasoft.ktor/ktor-simple-memory-cache/0.59.4?color=blue)](https://search.maven.org/artifact/com.ucasoft.ktor/ktor-simple-memory-cache/0.59.4/jar)
4+
[![Maven Central with version prefix filter](https://img.shields.io/maven-central/v/com.ucasoft.ktor/ktor-simple-memory-cache/0.63.3?color=blue)](https://search.maven.org/artifact/com.ucasoft.ktor/ktor-simple-memory-cache/0.63.3/jar)
55
## Setup
66
### Gradle
77
```kotlin
88
repositories {
99
mavenCentral()
1010
}
1111

12-
implementation("com.ucasoft.ktor:ktor-simple-memory-cache:0.59.4")
12+
implementation("com.ucasoft.ktor:ktor-simple-memory-cache:0.63.3")
1313
```
1414
## Usage
1515
```kotlin

ktor-simple-redis-cache/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
# Ktor Simple Redis Cache
22
Redis cache provider for Ktor Simple Cache plugin
33

4-
[![Maven Central with version prefix filter](https://img.shields.io/maven-central/v/com.ucasoft.ktor/ktor-simple-redis-cache/0.59.4?color=blue)](https://search.maven.org/artifact/com.ucasoft.ktor/ktor-simple-redis-cache/0.59.4/jar)
4+
[![Maven Central with version prefix filter](https://img.shields.io/maven-central/v/com.ucasoft.ktor/ktor-simple-redis-cache/0.63.3?color=blue)](https://search.maven.org/artifact/com.ucasoft.ktor/ktor-simple-redis-cache/0.63.3/jar)
55
## Setup
66
### Gradle
77
```kotlin
88
repositories {
99
mavenCentral()
1010
}
1111

12-
implementation("com.ucasoft.ktor:ktor-simple-redis-cache:0.59.4")
12+
implementation("com.ucasoft.ktor:ktor-simple-redis-cache:0.63.3")
1313
```
1414
## Usage
1515
```kotlin

ktor-simple-redis-cache/build.gradle.kts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ plugins {
66
}
77

88
kotlin {
9-
jvmToolchain(11)
9+
jvmToolchain(17)
1010
jvm {
1111
tasks.withType<Test> {
1212
useJUnitPlatform()
@@ -16,14 +16,14 @@ kotlin {
1616
val jvmMain by getting {
1717
dependencies {
1818
implementation(project(":ktor-simple-cache"))
19-
implementation("redis.clients:jedis:7.3.0")
19+
implementation("redis.clients:jedis:7.4.0")
2020
implementation("com.google.code.gson:gson:2.13.2")
2121
}
2222
kotlin.srcDir("src/main/kotlin")
2323
}
2424
val jvmTest by getting {
2525
dependencies {
26-
implementation("com.redis:testcontainers-redis:1.7.0")
26+
implementation("com.redis:testcontainers-redis:2.2.4")
2727
implementation("org.testcontainers:junit-jupiter:1.21.4")
2828
implementation(kotlin("test"))
2929
implementation(ktorServer("test-host"))

0 commit comments

Comments
 (0)