File tree 7 files changed +16
-14
lines changed
mongodb/example/src/test/java/example/springdata/mongodb/projections
7 files changed +16
-14
lines changed Original file line number Diff line number Diff line change 29
29
import org .springframework .context .annotation .Configuration ;
30
30
import org .springframework .data .projection .TargetAware ;
31
31
import org .springframework .test .context .junit4 .SpringJUnit4ClassRunner ;
32
- import org .springframework .transaction .annotation .Transactional ;
33
32
34
33
/**
35
34
* Integration tests for {@link CustomerRepository} to show projection capabilities.
38
37
*/
39
38
@ RunWith (SpringJUnit4ClassRunner .class )
40
39
@ SpringApplicationConfiguration
41
- @ Transactional
42
40
public class CustomerRepositoryIntegrationTest {
43
41
44
42
@ Configuration
Original file line number Diff line number Diff line change 12
12
<parent >
13
13
<groupId >org.springframework.boot</groupId >
14
14
<artifactId >spring-boot-starter-parent</artifactId >
15
- <version >1.3.2.RELEASE </version >
15
+ <version >1.4.0.M1 </version >
16
16
</parent >
17
17
18
18
<modules >
35
35
<apt .version>1.1.3</apt .version>
36
36
<java .version>1.8</java .version>
37
37
<querydsl .version>4.0.8</querydsl .version>
38
- <solr .version>5.4.1</solr .version>
39
- <spring-data-releasetrain .version>Hopper-M1</spring-data-releasetrain .version>
40
38
41
39
</properties >
42
40
61
59
<name >Greg Turnquist</name >
62
60
63
61
</developer >
62
+ <developer >
63
+ <id >mpaluch</id >
64
+ <name >Mark Paluch</name >
65
+
66
+ </developer >
64
67
</developers >
65
68
66
69
<dependencies >
Original file line number Diff line number Diff line change 16
16
17
17
<dependency >
18
18
<groupId >org.springframework.boot</groupId >
19
- <artifactId >spring-boot-starter-redis</artifactId >
19
+ <artifactId >spring-boot-starter-data- redis</artifactId >
20
20
</dependency >
21
21
<dependency >
22
22
<groupId >${project.groupId} </groupId >
Original file line number Diff line number Diff line change 16
16
17
17
<dependency >
18
18
<groupId >org.springframework.boot</groupId >
19
- <artifactId >spring-boot-starter-redis</artifactId >
19
+ <artifactId >spring-boot-starter-data- redis</artifactId >
20
20
</dependency >
21
-
21
+
22
22
<dependency >
23
23
<groupId >${project.groupId} </groupId >
24
24
<artifactId >spring-data-redis-example-utils</artifactId >
31
31
<artifactId >spring-boot-configuration-processor</artifactId >
32
32
<optional >true</optional >
33
33
</dependency >
34
-
34
+
35
35
</dependencies >
36
36
37
37
</project >
Original file line number Diff line number Diff line change 16
16
17
17
<dependency >
18
18
<groupId >org.springframework.boot</groupId >
19
- <artifactId >spring-boot-starter-redis</artifactId >
19
+ <artifactId >spring-boot-starter-data- redis</artifactId >
20
20
</dependency >
21
21
22
22
<dependency >
Original file line number Diff line number Diff line change 9
9
<groupId >org.springframework.data.examples</groupId >
10
10
<artifactId >spring-data-examples</artifactId >
11
11
<version >1.0.0.BUILD-SNAPSHOT</version >
12
+ <relativePath >../pom.xml</relativePath >
12
13
</parent >
13
14
14
15
<name >Spring Data Redis - Examples</name >
Original file line number Diff line number Diff line change 2
2
xsi:schemaLocation=" http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" >
3
3
<modelVersion >4.0.0</modelVersion >
4
4
5
- <artifactId >spring-data-redis-example-utils</artifactId >
6
- <name >Spring Data Redis - Example utilities</name >
7
-
8
5
<parent >
9
6
<groupId >org.springframework.data.examples</groupId >
10
7
<artifactId >spring-data-redis-examples</artifactId >
11
8
<version >1.0.0.BUILD-SNAPSHOT</version >
12
9
<relativePath >../pom.xml</relativePath >
13
10
</parent >
14
11
12
+ <artifactId >spring-data-redis-example-utils</artifactId >
13
+ <name >Spring Data Redis - Example utilities</name >
14
+
15
15
<dependencies >
16
16
<dependency >
17
17
<groupId >junit</groupId >
18
18
<artifactId >junit</artifactId >
19
19
</dependency >
20
20
<dependency >
21
21
<groupId >org.springframework.boot</groupId >
22
- <artifactId >spring-boot-starter-redis</artifactId >
22
+ <artifactId >spring-boot-starter-data- redis</artifactId >
23
23
</dependency >
24
24
</dependencies >
25
25
You can’t perform that action at this time.
0 commit comments