Skip to content

Commit

Permalink
Added spring dependencies to lib module
Browse files Browse the repository at this point in the history
  • Loading branch information
oscarcpozas committed Mar 26, 2024
1 parent bbc5348 commit e6b1c95
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions lib/spring-base/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
plugins {
kotlin("jvm")
`java-library`
}

repositories {
mavenCentral()
}

dependencies {
// Spring boot dependencies
implementation(libs.springboot.web)
implementation(libs.springboot.actuator)
implementation(libs.springboot.cache)
implementation(libs.springboot.data.redis)
}

kotlin {
jvmToolchain(17)
}

0 comments on commit e6b1c95

Please sign in to comment.