Skip to content

Commit

Permalink
Added Caffeine.
Browse files Browse the repository at this point in the history
  • Loading branch information
atom7xyz committed Jul 20, 2023
1 parent 9d1213a commit 7821774
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -38,17 +38,18 @@ dependencies {

/* Data structures related */
implementation("com.google.guava:guava:32.1.1-jre")
implementation("org.apache.commons:commons-collections4:4.4")
implementation("commons-codec:commons-codec:1.16.0")
implementation("org.apache.commons:commons-collections4:4.4")
implementation("org.apache.commons:commons-math3:3.6.1")
implementation("com.github.ben-manes.caffeine:caffeine:3.1.6")

/* DB related */
implementation("com.rabbitmq:amqp-client:5.18.0")
implementation("com.zaxxer:HikariCP:5.0.1")
implementation("org.jooq:jooq:3.18.5")

/* Config related */
implementation("com.github.Carleslc.Simple-YAML:Simple-Configuration:1.8.4")
implementation("com.github.Carleslc.Simple-YAML:Simple-Yaml:1.8.4")
}

tasks.test {
Expand All @@ -60,6 +61,6 @@ tasks.withType<KotlinCompile> {
}

tasks.withType<ShadowJar> {
val time = SimpleDateFormat("dd-MM-yyyy").format(Date())
val time = SimpleDateFormat("dd-MM-yyyy_HH-mm").format(Date())
archiveFileName.set("${project.name}-${time}.jar")
}

0 comments on commit 7821774

Please sign in to comment.