Skip to content

Commit f6e2ab5

Browse files
committed
Merge branch '7.0.x' into 7.1.x
# Conflicts: # settings.gradle
2 parents 78a9d6b + bf766ca commit f6e2ab5

82 files changed

Lines changed: 2926 additions & 1325 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
{
2+
"groups": [
3+
{
4+
"name": "grails.cache",
5+
"description": "Cache Plugin"
6+
}
7+
],
8+
"properties": [
9+
{
10+
"name": "grails.cache.enabled",
11+
"type": "java.lang.Boolean",
12+
"description": "Whether the cache plugin is enabled.",
13+
"defaultValue": true
14+
},
15+
{
16+
"name": "grails.cache.clearAtStartup",
17+
"type": "java.lang.Boolean",
18+
"description": "Whether to clear all caches when the application starts.",
19+
"defaultValue": false
20+
},
21+
{
22+
"name": "grails.cache.cacheManager",
23+
"type": "java.lang.String",
24+
"description": "The cache manager implementation class name. Use `GrailsConcurrentLinkedMapCacheManager` for bounded caches with maxCapacity support.",
25+
"defaultValue": "GrailsConcurrentMapCacheManager"
26+
},
27+
{
28+
"name": "grails.cache.caches",
29+
"type": "java.util.Map",
30+
"description": "Map of cache-specific configurations keyed by cache name, each supporting a `maxCapacity` setting (used by GrailsConcurrentLinkedMapCacheManager).",
31+
"defaultValue": {}
32+
},
33+
{
34+
"name": "grails.cache.ehcache.ehcacheXmlLocation",
35+
"type": "java.lang.String",
36+
"description": "Location of the Ehcache XML configuration file on the classpath.",
37+
"defaultValue": "classpath:ehcache.xml"
38+
},
39+
{
40+
"name": "grails.cache.ehcache.lockTimeout",
41+
"type": "java.lang.Integer",
42+
"description": "The timeout in milliseconds for acquiring a lock on a cache element.",
43+
"defaultValue": 200
44+
}
45+
]
46+
}

grails-core/build.gradle

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ dependencies {
4343

4444
implementation 'com.github.ben-manes.caffeine:caffeine'
4545
api 'org.apache.groovy:groovy'
46+
implementation 'org.apache.groovy:groovy-json'
4647
api 'org.springframework.boot:spring-boot'
4748
api 'org.springframework:spring-core'
4849
api 'org.springframework:spring-tx'
@@ -97,4 +98,4 @@ tasks.named('processResources', ProcessResources).configure { ProcessResources i
9798
apply {
9899
from rootProject.layout.projectDirectory.file('gradle/docs-config.gradle')
99100
from rootProject.layout.projectDirectory.file('gradle/test-config.gradle')
100-
}
101+
}

0 commit comments

Comments
 (0)