Skip to content

Commit b8df4d4

Browse files
committed
Merge pull request #5806 from eddumelendez/gh-5800
* pr/5806: Fix spring-boot-sample-cache Infinispan example
2 parents 628cbcd + 81bf386 commit b8df4d4

File tree

2 files changed

+8
-4
lines changed

2 files changed

+8
-4
lines changed

spring-boot-samples/spring-boot-sample-cache/README.adoc

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -79,10 +79,10 @@ the underlying `HazelcastInstance`.
7979

8080

8181
=== Infinispan
82-
Simply add the `org.infinispan:infinispan-spring4` dependency to enable support for
83-
Infinispan. There is no default location that Infinispan uses to look for a config
84-
file so if you don't specify anything it will bootstrap on a hardcoded default. You
85-
can set the `spring.cache.infinispan.config` property to use the provided
82+
Add the `org.infinispan:infinispan-spring4` and `org.infinispan:infinispan-spring4-embedded`
83+
dependencies to enable support for Infinispan. There is no default location that Infinispan
84+
uses to look for a config file so if you don't specify anything it will bootstrap on a hardcoded
85+
default. You can set the `spring.cache.infinispan.config` property to use the provided
8686
`infinispan.xml` configuration instead.
8787

8888

spring-boot-samples/spring-boot-sample-cache/pom.xml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,10 @@
6969
<groupId>org.infinispan</groupId>
7070
<artifactId>infinispan-spring4</artifactId>
7171
</dependency>
72+
<dependency>
73+
<groupId>org.infinispan</groupId>
74+
<artifactId>infinispan-spring4-embedded</artifactId>
75+
</dependency>
7276
<dependency>
7377
<groupId>org.infinispan</groupId>
7478
<artifactId>infinispan-jcache</artifactId>

0 commit comments

Comments
 (0)