Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Micronaut Framework 4.0.0-M4 #374

Merged
merged 4 commits into from
May 19, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,4 @@ plugins {

repositories {
mavenCentral()
maven { url "https://s01.oss.sonatype.org/content/repositories/snapshots/" }
}
1 change: 0 additions & 1 deletion buildSrc/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ plugins {
repositories {
gradlePluginPortal()
mavenCentral()
maven { url "https://s01.oss.sonatype.org/content/repositories/snapshots/" }
}

dependencies {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
repositories {
mavenCentral()
maven { url "https://s01.oss.sonatype.org/content/repositories/snapshots/" }
}
3 changes: 0 additions & 3 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,6 @@ projectUrl=https://micronaut.io
githubSlug=micronaut-projects/micronaut-redis
developers=Graeme Rocher

githubCoreBranch=4.0.x
bomProperty=micronautRedisVersion
bomProperties=lettuceVersion

testsredis=redis-lettuce/src/test/groovy/io/micronaut/configuration/lettuce

Expand Down
12 changes: 7 additions & 5 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@
managed-lettuce = "6.2.4.RELEASE"

micronaut-docs = "2.0.0"
micronaut = "4.0.0-M2"
micronaut-test = "4.0.0-M2"
micronaut-cache = "4.0.0-M1"
micronaut = "4.0.0-M4"
micronaut-test = "4.0.0-M3"
micronaut-cache = "4.0.0-M2"
micronaut-micrometer = "5.0.0-M1"
micronaut-serde = "2.0.0-M3"
micronaut-serde = "2.0.0-M7"
micronaut-session = "4.0.0-M1"
micronaut-gradle-plugin = "4.0.0-M1"
micronaut-gradle-plugin = "4.0.0-M3"

redis-embedded = "0.6"

Expand All @@ -17,7 +17,9 @@ spock = "2.3-groovy-4.0"

testcontainers = "1.18.1"

micronaut-logging = "1.0.0-M2"
[libraries]
micronaut-logging = { module = "io.micronaut.logging:micronaut-logging-bom", version.ref = "micronaut-logging" }
managed-lettuce = { module = "io.lettuce:lettuce-core", version.ref = "managed-lettuce" }

micronaut-cache = { module = "io.micronaut.cache:micronaut-cache-bom", version.ref = "micronaut-cache" }
Expand Down
2 changes: 1 addition & 1 deletion redis-lettuce/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,6 @@ dependencies {
testRuntimeOnly mn.micronaut.http.server.netty
testImplementation mn.micronaut.http.client
testImplementation libs.redis.embedded
testRuntimeOnly(mn.logback.classic)
testRuntimeOnly(mnLogging.logback.classic)
testImplementation mn.snakeyaml
}
2 changes: 1 addition & 1 deletion settings.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ include 'redis-lettuce'
include 'test-suite-graal'

micronautBuild {
addSnapshotRepository()
importMicronautCatalog("micronaut-logging")
useStandardizedProjectNames = true
importMicronautCatalog()
importMicronautCatalog("micronaut-cache")
Expand Down
2 changes: 1 addition & 1 deletion test-suite-graal/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -24,5 +24,5 @@ dependencies {
implementation mn.micronaut.jackson.databind
implementation project(':micronaut-redis-lettuce')
implementation mn.snakeyaml
runtimeOnly mn.logback.classic
runtimeOnly mnLogging.logback.classic
}