Files
spring-data-redis/.travis.yml
Mark Paluch 92274a8450 DATAREDIS-425 - Add JSR-310 support, CDI extension and Update reference documentation.
We ship converters for JSR-310 types (LocalDate/Time, ZonedDateTime, Period, Duration and ZoneId) to map between UTF-8-encoded byte[] and JDK 8 date/time types.

We also export Redis Repositories in a CDI environment. Repositories can be injected using @Inject. The CDI extension requires at least RedisOperations to be provided. Other beans like RedisKeyValueAdapter and RedisKeyValueTemplate can be provided by the user. If no RedisKeyValueAdapter/RedisKeyValueTemplate beans are found, the CDI extension creates own managed instances.

Original Pull Request: #156
2016-03-14 10:39:50 +01:00

15 lines
249 B
YAML

language: java
jdk:
- oraclejdk8
env:
matrix:
- PROFILE=spring42
- PROFILE=spring42-next
- PROFILE=spring43-next
cache:
directories:
- $HOME/.m2
sudo: false
install: true
script: travis_wait make test SPRING_PROFILE=${PROFILE}