Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in / Register
Toggle navigation
S
spring-boot
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
DEMO
spring-boot
Commits
08967bca
Commit
08967bca
authored
Jan 21, 2020
by
Stephane Nicoll
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch '2.2.x'
Closes gh-19843
parents
1e72fa20
84324c43
Changes
8
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
1 addition
and
54 deletions
+1
-54
build.gradle
...t-project/spring-boot-actuator-autoconfigure/build.gradle
+0
-1
test-ehcache.xml
...r-autoconfigure/src/test/resources/cache/test-ehcache.xml
+0
-6
test-hazelcast.xml
...autoconfigure/src/test/resources/cache/test-hazelcast.xml
+0
-12
test-infinispan.xml
...utoconfigure/src/test/resources/cache/test-infinispan.xml
+0
-8
build.gradle
spring-boot-project/spring-boot-actuator/build.gradle
+1
-1
test-ehcache.xml
...g-boot-actuator/src/test/resources/cache/test-ehcache.xml
+0
-6
test-hazelcast.xml
...boot-actuator/src/test/resources/cache/test-hazelcast.xml
+0
-12
test-infinispan.xml
...oot-actuator/src/test/resources/cache/test-infinispan.xml
+0
-8
No files found.
spring-boot-project/spring-boot-actuator-autoconfigure/build.gradle
View file @
08967bca
...
...
@@ -83,7 +83,6 @@ dependencies {
optional
'org.hibernate.validator:hibernate-validator'
optional
'org.influxdb:influxdb-java'
optional
'org.jolokia:jolokia-core'
optional
'org.infinispan:infinispan-spring4-embedded'
optional
'org.liquibase:liquibase-core'
optional
'org.mongodb:mongodb-driver-async'
optional
'org.mongodb:mongodb-driver-reactivestreams'
...
...
spring-boot-project/spring-boot-actuator-autoconfigure/src/test/resources/cache/test-ehcache.xml
deleted
100644 → 0
View file @
1e72fa20
<ehcache>
<diskStore
path=
"java.io.tmpdir"
/>
<defaultCache/>
<cache
name=
"books"
maxEntriesLocalHeap=
"50"
/>
<cache
name=
"players"
maxEntriesLocalHeap=
"50"
/>
</ehcache>
spring-boot-project/spring-boot-actuator-autoconfigure/src/test/resources/cache/test-hazelcast.xml
deleted
100644 → 0
View file @
1e72fa20
<hazelcast
xsi:schemaLocation=
"http://www.hazelcast.com/schema/config hazelcast-config-3.12.xsd"
xmlns=
"http://www.hazelcast.com/schema/config"
xmlns:xsi=
"http://www.w3.org/2001/XMLSchema-instance"
>
<map
name=
"books"
/>
<map
name=
"players"
/>
<network>
<join>
<tcp-ip
enabled=
"false"
/>
<multicast
enabled=
"false"
/>
</join>
</network>
</hazelcast>
spring-boot-project/spring-boot-actuator-autoconfigure/src/test/resources/cache/test-infinispan.xml
deleted
100644 → 0
View file @
1e72fa20
<?xml version="1.0" encoding="UTF-8"?>
<infinispan>
<cache-container
default-cache=
"default"
>
<local-cache
name=
"default"
/>
<local-cache
name=
"books"
statistics=
"true"
/>
<local-cache
name=
"players"
statistics=
"true"
/>
</cache-container>
</infinispan>
spring-boot-project/spring-boot-actuator/build.gradle
View file @
08967bca
...
...
@@ -15,6 +15,7 @@ dependencies {
optional
platform
(
project
(
':spring-boot-project:spring-boot-dependencies'
))
optional
'com.fasterxml.jackson.core:jackson-databind'
optional
'com.github.ben-manes.caffeine:caffeine'
optional
'com.hazelcast:hazelcast'
optional
'com.hazelcast:hazelcast-spring'
optional
'com.sun.mail:jakarta.mail'
...
...
@@ -40,7 +41,6 @@ dependencies {
optional
'org.glassfish.jersey.core:jersey-server'
optional
'org.glassfish.jersey.containers:jersey-container-servlet-core'
optional
'org.hibernate.validator:hibernate-validator'
optional
'org.infinispan:infinispan-spring4-embedded'
optional
'org.influxdb:influxdb-java'
optional
'org.liquibase:liquibase-core'
optional
'org.mongodb:mongodb-driver-async'
...
...
spring-boot-project/spring-boot-actuator/src/test/resources/cache/test-ehcache.xml
deleted
100644 → 0
View file @
1e72fa20
<ehcache>
<diskStore
path=
"java.io.tmpdir"
/>
<defaultCache/>
<cache
name=
"books"
maxEntriesLocalHeap=
"50"
/>
<cache
name=
"players"
maxEntriesLocalHeap=
"50"
/>
</ehcache>
spring-boot-project/spring-boot-actuator/src/test/resources/cache/test-hazelcast.xml
deleted
100644 → 0
View file @
1e72fa20
<hazelcast
xsi:schemaLocation=
"http://www.hazelcast.com/schema/config hazelcast-config-3.12.xsd"
xmlns=
"http://www.hazelcast.com/schema/config"
xmlns:xsi=
"http://www.w3.org/2001/XMLSchema-instance"
>
<map
name=
"books"
/>
<map
name=
"players"
/>
<network>
<join>
<tcp-ip
enabled=
"false"
/>
<multicast
enabled=
"false"
/>
</join>
</network>
</hazelcast>
spring-boot-project/spring-boot-actuator/src/test/resources/cache/test-infinispan.xml
deleted
100644 → 0
View file @
1e72fa20
<?xml version="1.0" encoding="UTF-8"?>
<infinispan>
<cache-container
default-cache=
"default"
>
<local-cache
name=
"default"
/>
<local-cache
name=
"books"
statistics=
"true"
/>
<local-cache
name=
"players"
statistics=
"true"
/>
</cache-container>
</infinispan>
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment