Relocate projects to spring-boot-project
Move projects to better reflect the way that Spring Boot is released. The following projects are under `spring-boot-project`: - `spring-boot` - `spring-boot-autoconfigure` - `spring-boot-tools` - `spring-boot-starters` - `spring-boot-actuator` - `spring-boot-actuator-autoconfigure` - `spring-boot-test` - `spring-boot-test-autoconfigure` - `spring-boot-devtools` - `spring-boot-cli` - `spring-boot-docs` See gh-9316
This commit is contained in:
6
spring-boot-project/spring-boot-actuator/src/test/resources/cache/test-ehcache.xml
vendored
Normal file
6
spring-boot-project/spring-boot-actuator/src/test/resources/cache/test-ehcache.xml
vendored
Normal file
@@ -0,0 +1,6 @@
|
||||
<ehcache>
|
||||
<diskStore path="java.io.tmpdir"/>
|
||||
<defaultCache/>
|
||||
<cache name="books" maxEntriesLocalHeap="50"/>
|
||||
<cache name="players" maxEntriesLocalHeap="50"/>
|
||||
</ehcache>
|
||||
12
spring-boot-project/spring-boot-actuator/src/test/resources/cache/test-hazelcast.xml
vendored
Normal file
12
spring-boot-project/spring-boot-actuator/src/test/resources/cache/test-hazelcast.xml
vendored
Normal file
@@ -0,0 +1,12 @@
|
||||
<hazelcast xsi:schemaLocation="http://www.hazelcast.com/schema/config hazelcast-config-3.8.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>
|
||||
8
spring-boot-project/spring-boot-actuator/src/test/resources/cache/test-infinispan.xml
vendored
Normal file
8
spring-boot-project/spring-boot-actuator/src/test/resources/cache/test-infinispan.xml
vendored
Normal file
@@ -0,0 +1,8 @@
|
||||
<?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>
|
||||
Reference in New Issue
Block a user