Skip to content

Commit

Permalink
- rv-kit dependency updates.
Browse files Browse the repository at this point in the history
  • Loading branch information
jjzazuet committed Oct 10, 2023
1 parent c9de44b commit 12ee0a9
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ plugins { id("io.vacco.oss.gitflow") version "0.9.8" apply(false) }
subprojects {
apply(plugin = "io.vacco.oss.gitflow")
group = "io.vacco.ronove"
version = "1.2.1"
version = "1.2.2"

configure<io.vacco.oss.gitflow.GsPluginProfileExtension> {
addJ8Spec()
Expand Down
4 changes: 3 additions & 1 deletion rv-kit-murmux/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
configure<io.vacco.oss.gitflow.GsPluginProfileExtension> { sharedLibrary(true, false) }

val api by configurations
val murmuxVer = "2.2.2"
version = murmuxVer

dependencies {
api(project(":rv-core"))
implementation("io.vacco.murmux:murmux:2.2.0")
api("io.vacco.murmux:murmux:${murmuxVer}")
}
4 changes: 3 additions & 1 deletion rv-kit-undertow/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
configure<io.vacco.oss.gitflow.GsPluginProfileExtension> { sharedLibrary(true, false) }

val api by configurations
val undertowVer = "2.3.8.Final"
version = undertowVer

dependencies {
api(project(":rv-core"))
implementation("io.undertow:undertow-core:2.3.3.Final")
api("io.undertow:undertow-core:${undertowVer}")
}

0 comments on commit 12ee0a9

Please sign in to comment.