|
@@ -1,124 +1,65 @@
|
1
|
1
|
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
|
-<<<<<<< HEAD
|
3
|
|
-<project xmlns="http://maven.apache.org/POM/4.0.0"
|
4
|
|
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
5
|
|
- xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
6
|
|
- <modelVersion>4.0.0</modelVersion>
|
7
|
|
-
|
8
|
|
- <groupId>io.zipcoder</groupId>
|
9
|
|
- <artifactId>spring-demo</artifactId>
|
10
|
|
- <version>1.0-SNAPSHOT</version>
|
11
|
|
- <build>
|
12
|
|
- <plugins>
|
13
|
|
- <plugin>
|
14
|
|
- <groupId>org.apache.maven.plugins</groupId>
|
15
|
|
- <artifactId>maven-compiler-plugin</artifactId>
|
16
|
|
- <configuration>
|
17
|
|
- <source>8</source>
|
18
|
|
- <target>8</target>
|
19
|
|
- </configuration>
|
20
|
|
- </plugin>
|
21
|
|
- </plugins>
|
22
|
|
- </build>
|
23
|
|
- <parent>
|
24
|
|
- <groupId>org.springframework.boot</groupId>
|
25
|
|
- <artifactId>spring-boot-starter-parent</artifactId>
|
26
|
|
- <version>1.5.3.RELEASE</version>
|
27
|
|
- <relativePath/> <!-- lookup parent from repository -->
|
28
|
|
- </parent>
|
29
|
|
- <properties>
|
30
|
|
- <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
31
|
|
- <start-class>com.zipcodewilmington.bakery.BakeryApplication</start-class>
|
32
|
|
- <java.version>1.7</java.version>
|
33
|
|
- </properties>
|
34
|
|
- <dependencies>
|
35
|
|
- <dependency>
|
36
|
|
- <groupId>org.springframework.boot</groupId>
|
37
|
|
- <artifactId>spring-boot-starter-web</artifactId>
|
38
|
|
- </dependency>
|
39
|
|
- <dependency>
|
40
|
|
- <groupId>org.springframework.boot</groupId>
|
41
|
|
- <artifactId>spring-boot-starter-data-jpa</artifactId>
|
42
|
|
- </dependency>
|
43
|
|
- <dependency>
|
44
|
|
- <groupId>org.springframework.boot</groupId>
|
45
|
|
- <artifactId>spring-boot-starter-test</artifactId>
|
46
|
|
- <scope>test</scope>
|
47
|
|
- </dependency>
|
48
|
|
- <dependency>
|
49
|
|
- <groupId>org.hsqldb</groupId>
|
50
|
|
- <artifactId>hsqldb</artifactId>
|
51
|
|
- <scope>runtime</scope>
|
52
|
|
- </dependency>
|
53
|
|
-
|
54
|
|
- <dependency>
|
55
|
|
- <groupId>javax.inject</groupId>
|
56
|
|
- <artifactId>javax.inject</artifactId>
|
57
|
|
- <version>1</version>
|
58
|
|
- </dependency>
|
59
|
|
- </dependencies>
|
60
|
|
-=======
|
61
|
2
|
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
62
|
3
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
63
|
4
|
<modelVersion>4.0.0</modelVersion>
|
64
|
|
-
|
|
5
|
+ <parent>
|
|
6
|
+ <groupId>org.springframework.boot</groupId>
|
|
7
|
+ <artifactId>spring-boot-starter-parent</artifactId>
|
|
8
|
+ <version>2.1.1.RELEASE</version>
|
|
9
|
+ <relativePath/> <!-- lookup parent from repository -->
|
|
10
|
+ </parent>
|
65
|
11
|
<groupId>com.zipcodewilmington</groupId>
|
66
|
12
|
<artifactId>bakery</artifactId>
|
67
|
13
|
<version>0.0.1-SNAPSHOT</version>
|
68
|
14
|
<packaging>jar</packaging>
|
69
|
|
-
|
70
|
15
|
<name>bakery</name>
|
71
|
16
|
<description>Demo project for Spring Boot</description>
|
72
|
17
|
|
73
|
|
- <parent>
|
74
|
|
- <groupId>org.springframework.boot</groupId>
|
75
|
|
- <artifactId>spring-boot-starter-parent</artifactId>
|
76
|
|
- <version>2.0.4.RELEASE</version>
|
77
|
|
- <relativePath/> <!-- lookup parent from repository -->
|
78
|
|
- </parent>
|
79
|
|
-
|
80
|
18
|
<properties>
|
81
|
|
- <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
82
|
|
- <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
83
|
19
|
<java.version>1.8</java.version>
|
84
|
20
|
</properties>
|
85
|
21
|
|
86
|
22
|
<dependencies>
|
|
23
|
+ <!-- https://mvnrepository.com/artifact/org.mockito/mockito-all -->
|
87
|
24
|
<dependency>
|
88
|
|
- <groupId>org.springframework.boot</groupId>
|
89
|
|
- <artifactId>spring-boot-starter</artifactId>
|
|
25
|
+ <groupId>javax.xml.bind</groupId>
|
|
26
|
+ <artifactId>jaxb-api</artifactId>
|
|
27
|
+ <version>2.3.0</version>
|
90
|
28
|
</dependency>
|
91
|
|
-
|
92
|
29
|
<dependency>
|
93
|
30
|
<groupId>org.springframework.boot</groupId>
|
94
|
|
- <artifactId>spring-boot-starter-data-rest</artifactId>
|
|
31
|
+ <artifactId>spring-boot-starter-web</artifactId>
|
95
|
32
|
</dependency>
|
96
|
|
-
|
97
|
33
|
<dependency>
|
98
|
34
|
<groupId>org.springframework.boot</groupId>
|
99
|
|
- <artifactId>spring-boot-starter-web</artifactId>
|
|
35
|
+ <artifactId>spring-boot-starter-data-jpa</artifactId>
|
100
|
36
|
</dependency>
|
101
|
|
-
|
102
|
37
|
<dependency>
|
103
|
38
|
<groupId>org.springframework.boot</groupId>
|
104
|
39
|
<artifactId>spring-boot-starter-test</artifactId>
|
105
|
40
|
<scope>test</scope>
|
106
|
41
|
</dependency>
|
107
|
42
|
<dependency>
|
108
|
|
- <groupId>org.springframework.data</groupId>
|
109
|
|
- <artifactId>spring-data-commons</artifactId>
|
|
43
|
+ <groupId>org.hsqldb</groupId>
|
|
44
|
+ <artifactId>hsqldb</artifactId>
|
|
45
|
+ <scope>runtime</scope>
|
110
|
46
|
</dependency>
|
111
|
47
|
<dependency>
|
112
|
|
- <groupId>org.springframework.boot</groupId>
|
113
|
|
- <artifactId>spring-boot-starter-data-jpa</artifactId>
|
114
|
|
- </dependency>
|
115
|
|
- <dependency>
|
116
|
|
- <groupId>com.h2database</groupId>
|
117
|
|
- <artifactId>h2</artifactId>
|
|
48
|
+ <groupId>javax.inject</groupId>
|
|
49
|
+ <artifactId>javax.inject</artifactId>
|
|
50
|
+ <version>1</version>
|
118
|
51
|
</dependency>
|
119
|
52
|
<dependency>
|
120
|
|
- <groupId>org.springframework.boot</groupId>
|
121
|
|
- <artifactId>spring-boot-starter-data-jpa</artifactId>
|
|
53
|
+ <groupId>org.mockito</groupId>
|
|
54
|
+ <artifactId>mockito-core</artifactId>
|
|
55
|
+ <version>1.10.19</version>
|
|
56
|
+ <exclusions>
|
|
57
|
+ <exclusion>
|
|
58
|
+ <groupId>org.hamcrest</groupId>
|
|
59
|
+ <artifactId>hamcrest-core</artifactId>
|
|
60
|
+ </exclusion>
|
|
61
|
+ </exclusions>
|
|
62
|
+ <scope>test</scope>
|
122
|
63
|
</dependency>
|
123
|
64
|
</dependencies>
|
124
|
65
|
|
|
@@ -130,7 +71,6 @@
|
130
|
71
|
</plugin>
|
131
|
72
|
</plugins>
|
132
|
73
|
</build>
|
133
|
|
->>>>>>> 1356254de500f16124e3fe66a4b3ab488374a38d
|
134
|
74
|
|
135
|
75
|
|
136
|
76
|
</project>
|