Skip to content

Commit

Permalink
Added caffeine dependency
Browse files Browse the repository at this point in the history
as it grails-datastore-gorm does not bring it transitively.
  • Loading branch information
puneetbehl committed Aug 11, 2020
1 parent d36ba1d commit 68a7c1e
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions grails-plugin-rest/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ dependencies {

api "org.grails.plugins:converters:$legacyConvertersVersion"

implementation "com.github.ben-manes.caffeine:caffeine:$caffeineVersion"
testImplementation project(":grails-plugin-url-mappings"),
project(":grails-test-suite-base")
}
1 change: 1 addition & 0 deletions grails-web-common/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,5 @@ dependencies {

api "org.springframework:spring-webmvc:${springVersion}"
api "org.springframework:spring-context-support:${springVersion}"
implementation "com.github.ben-manes.caffeine:caffeine:$caffeineVersion"
}
2 changes: 2 additions & 0 deletions grails-web-url-mappings/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,8 @@ dependencies {
provided "org.fusesource.jansi:jansi:$jansiVersion"
provided "jline:jline:$jlineVersion"

implementation "com.github.ben-manes.caffeine:caffeine:$caffeineVersion"

testImplementation project(":grails-test-suite-base")
}
tasks.withType(Test) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@
import java.util.Collection;
import java.util.Map;
import java.util.concurrent.ConcurrentHashMap;
import java.util.concurrent.ConcurrentMap;


import com.github.benmanes.caffeine.cache.Cache;
Expand Down

0 comments on commit 68a7c1e

Please sign in to comment.