File tree Expand file tree Collapse file tree 6 files changed +55
-114
lines changed Expand file tree Collapse file tree 6 files changed +55
-114
lines changed Original file line number Diff line number Diff line change 17
17
<module >spring-boot-mongo</module >
18
18
</modules >
19
19
20
+ <properties >
21
+ <project .build.sourceEncoding>UTF-8</project .build.sourceEncoding>
22
+ <java .version>1.8</java .version>
23
+ <junit .version>4.12</junit .version>
24
+ </properties >
25
+
26
+ <build >
27
+ <plugins >
28
+ <plugin >
29
+ <groupId >org.apache.maven.plugins</groupId >
30
+ <artifactId >maven-compiler-plugin</artifactId >
31
+ <version >3.5.1</version >
32
+ <configuration >
33
+ <source >${java.version} </source >
34
+ <target >${java.version} </target >
35
+ </configuration >
36
+ </plugin >
37
+ </plugins >
38
+ </build >
39
+
20
40
<organization >
21
41
<name >codecentric AG</name >
22
42
<url >http://www.codecentric.de</url >
Original file line number Diff line number Diff line change 3
3
xsi:schemaLocation=" http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" >
4
4
<modelVersion >4.0.0</modelVersion >
5
5
6
- <groupId >de.codecentric</groupId >
7
- <artifactId >mongoboot</artifactId >
8
- <version >0.0.1-SNAPSHOT</version >
9
- <packaging >jar</packaging >
10
-
11
- <name >SpringBoot MongoDB REST</name >
12
- <description >Demo project for Spring Boot MongoDB</description >
13
-
14
6
<parent >
15
7
<groupId >org.springframework.boot</groupId >
16
8
<artifactId >spring-boot-starter-parent</artifactId >
17
9
<version >1.5.4.RELEASE</version >
18
10
<relativePath />
19
11
</parent >
20
12
13
+ <groupId >de.codecentric</groupId >
14
+ <artifactId >mongoboot</artifactId >
15
+ <version >0.0.1-SNAPSHOT</version >
16
+ <packaging >jar</packaging >
17
+ <name >SpringBoot MongoDB REST</name >
18
+ <description >Demo project for Spring Boot MongoDB</description >
19
+
21
20
<properties >
22
21
<project .build.sourceEncoding>UTF-8</project .build.sourceEncoding>
23
22
<project .reporting.outputEncoding>UTF-8</project .reporting.outputEncoding>
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
- <groupId >de.codecentric</groupId >
5
+ <parent >
6
+ <groupId >de.codecentric</groupId >
7
+ <artifactId >springdata-examples</artifactId >
8
+ <version >1.0.0</version >
9
+ </parent >
10
+
6
11
<artifactId >springdata-jpa-examples</artifactId >
7
- <version >1.0.0</version >
8
12
<packaging >jar</packaging >
9
-
10
13
<name >Spring Data JPA Examples</name >
11
14
<url >https://github.com/ttrelle/spring-data-examples/tree/master/springdata-jpa</url >
12
15
13
- <properties >
14
- <project .build.sourceEncoding>UTF-8</project .build.sourceEncoding>
15
- </properties >
16
-
17
16
<dependencies >
18
17
19
18
<dependency >
44
43
<dependency >
45
44
<groupId >junit</groupId >
46
45
<artifactId >junit</artifactId >
47
- <version >4.11 </version >
46
+ <version >${junit.version} </version >
48
47
<scope >test</scope >
49
48
</dependency >
50
49
<dependency >
61
60
</dependency >
62
61
</dependencies >
63
62
64
- <build >
65
- <plugins >
66
- <plugin >
67
- <groupId >org.apache.maven.plugins</groupId >
68
- <artifactId >maven-compiler-plugin</artifactId >
69
- <version >2.3.2</version >
70
- <configuration >
71
- <source >1.7</source >
72
- <target >1.7</target >
73
- </configuration >
74
- </plugin >
75
- </plugins >
76
- </build >
77
-
78
63
</project >
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
- <groupId >de.codecentric</groupId >
5
+ <parent >
6
+ <groupId >de.codecentric</groupId >
7
+ <artifactId >springdata-examples</artifactId >
8
+ <version >1.0.0</version >
9
+ </parent >
10
+
6
11
<artifactId >springdata-mongodb-examples</artifactId >
7
- <version >1.0.0</version >
8
12
<packaging >jar</packaging >
9
-
10
13
<name >Spring Data MongoDB Examples</name >
11
14
<url >https://github.com/ttrelle/spring-data-examples/tree/master/springdata-mongodb</url >
12
15
13
16
<properties >
14
- <project .build.sourceEncoding>UTF-8</project .build.sourceEncoding>
15
17
<spring .data.mongodb.version>1.9.6.RELEASE</spring .data.mongodb.version>
16
- <mongo .driver.version>3.4.1 </mongo .driver.version>
18
+ <mongo .driver.version>3.4.2 </mongo .driver.version>
17
19
<spring .version>4.2.9.RELEASE</spring .version>
18
- <junit .version>4.12</junit .version>
19
20
</properties >
20
21
21
22
<dependencies >
56
57
<targetPath >test-classes</targetPath >
57
58
</resource >
58
59
</resources >
59
-
60
- <plugins >
61
- <plugin >
62
- <groupId >org.apache.maven.plugins</groupId >
63
- <artifactId >maven-compiler-plugin</artifactId >
64
- <version >2.3.2</version >
65
- <configuration >
66
- <source >1.7</source >
67
- <target >1.7</target >
68
- </configuration >
69
- </plugin >
70
- </plugins >
71
60
</build >
72
61
73
-
74
- <organization >
75
- <name >codecentric AG</name >
76
- <url >http://www.codecentric.de</url >
77
- </organization >
78
-
79
- <developers >
80
- <developer >
81
- <name >Tobias Trelle</name >
82
-
83
- </developer >
84
- </developers >
85
-
86
62
<repositories >
87
63
<repository >
88
64
<id >spring-snapshot</id >
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
- <groupId >de.codecentric</groupId >
5
+ <parent >
6
+ <groupId >de.codecentric</groupId >
7
+ <artifactId >springdata-examples</artifactId >
8
+ <version >1.0.0</version >
9
+ </parent >
10
+
6
11
<artifactId >springdata-neo4j-examples</artifactId >
7
- <version >1.0.0</version >
8
12
<packaging >jar</packaging >
9
-
10
13
<name >Spring Data Neo4j Examples</name >
11
14
<url >http://maven.apache.org</url >
12
15
13
16
<properties >
14
- <project .build.sourceEncoding>UTF-8</project .build.sourceEncoding>
15
17
<neo4j .version>2.2.5</neo4j .version>
16
18
</properties >
17
19
27
29
<dependency >
28
30
<groupId >junit</groupId >
29
31
<artifactId >junit</artifactId >
30
- <version >4.11 </version >
32
+ <version >${junit.version} </version >
31
33
<scope >test</scope >
32
34
</dependency >
33
35
<dependency >
85
87
86
88
</dependencies >
87
89
88
- <build >
89
- <plugins >
90
- <plugin >
91
- <groupId >org.apache.maven.plugins</groupId >
92
- <artifactId >maven-compiler-plugin</artifactId >
93
- <version >3.1</version >
94
- <configuration >
95
- <source >1.7</source >
96
- <target >1.7</target >
97
- </configuration >
98
- </plugin >
99
- </plugins >
100
- </build >
101
-
102
90
</project >
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
- <groupId >de.codecentric</groupId >
5
+ <parent >
6
+ <groupId >de.codecentric</groupId >
7
+ <artifactId >springdata-examples</artifactId >
8
+ <version >1.0.0</version >
9
+ </parent >
10
+
6
11
<artifactId >springdata-redis-examples</artifactId >
7
- <version >1.0.0</version >
8
12
<packaging >jar</packaging >
9
-
10
13
<name >Spring Data Redis Examples</name >
11
14
<url >https://github.com/ttrelle/spring-data-examples/tree/master/springdata-redis</url >
12
15
13
- <properties >
14
- <project .build.sourceEncoding>UTF-8</project .build.sourceEncoding>
15
- </properties >
16
-
17
16
<dependencies >
18
17
<dependency >
19
18
<groupId >org.springframework.data</groupId >
30
29
<dependency >
31
30
<groupId >junit</groupId >
32
31
<artifactId >junit</artifactId >
33
- <version >4.11 </version >
32
+ <version >${junit.version} </version >
34
33
<scope >test</scope >
35
34
</dependency >
36
35
<dependency >
70
69
</dependency >
71
70
</dependencies >
72
71
73
- <build >
74
- <plugins >
75
- <plugin >
76
- <groupId >org.apache.maven.plugins</groupId >
77
- <artifactId >maven-compiler-plugin</artifactId >
78
- <version >2.3.2</version >
79
- <configuration >
80
- <source >1.7</source >
81
- <target >1.7</target >
82
- </configuration >
83
- </plugin >
84
- </plugins >
85
- </build >
86
-
87
- <organization >
88
- <name >codecentric AG</name >
89
- <url >http://www.codecentric.de</url >
90
- </organization >
91
-
92
- <developers >
93
- <developer >
94
- <name >Tobias Trelle</name >
95
-
96
- </developer >
97
- </developers >
98
-
99
72
</project >
You can’t perform that action at this time.
0 commit comments