Browse Source

Fix namespace declarations in Hazelcast xml's and make them consistent

pull/5489/head
Vedran Pavic 10 years ago committed by Andy Wilkinson
parent
commit
6801e8208d
  1. 8
      spring-boot-actuator/src/test/resources/cache/test-hazelcast.xml
  2. 4
      spring-boot-samples/spring-boot-sample-cache/src/main/resources/hazelcast.xml

8
spring-boot-actuator/src/test/resources/cache/test-hazelcast.xml vendored

@ -1,4 +1,8 @@ @@ -1,4 +1,8 @@
<hazelcast>
<hazelcast xsi:schemaLocation="http://www.hazelcast.com/schema/config hazelcast-config-3.5.xsd"
xmlns="http://www.hazelcast.com/schema/config"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<map name="books"/>
<map name="players"/>
</hazelcast>
</hazelcast>

4
spring-boot-samples/spring-boot-sample-cache/src/main/resources/hazelcast.xml vendored

@ -1,4 +1,4 @@ @@ -1,4 +1,4 @@
<hazelcast xsi:schemaLocation="http://www.hazelcast.com/schema/config hazelcast-config-3.4.xsd"
<hazelcast xsi:schemaLocation="http://www.hazelcast.com/schema/config hazelcast-config-3.5.xsd"
xmlns="http://www.hazelcast.com/schema/config"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
@ -14,4 +14,4 @@ @@ -14,4 +14,4 @@
<management-enabled>true</management-enabled>
</cache>
</hazelcast>
</hazelcast>

Loading…
Cancel
Save