|
@@ -1,65 +1,61 @@
|
1
|
1
|
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
|
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
3
|
|
- xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
2
|
+<project xmlns="http://maven.apache.org/POM/4.0.0"
|
|
3
|
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
4
|
+ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
4
|
5
|
<modelVersion>4.0.0</modelVersion>
|
5
|
6
|
|
6
|
|
- <groupId>com.zipcodewilmington</groupId>
|
7
|
|
- <artifactId>bakery</artifactId>
|
8
|
|
- <version>0.0.1-SNAPSHOT</version>
|
9
|
|
- <packaging>jar</packaging>
|
10
|
|
-
|
11
|
|
- <name>bakery</name>
|
12
|
|
- <description>Demo project for Spring Boot</description>
|
13
|
|
-
|
|
7
|
+ <groupId>io.zipcoder</groupId>
|
|
8
|
+ <artifactId>spring-demo</artifactId>
|
|
9
|
+ <version>1.0-SNAPSHOT</version>
|
|
10
|
+ <build>
|
|
11
|
+ <plugins>
|
|
12
|
+ <plugin>
|
|
13
|
+ <groupId>org.apache.maven.plugins</groupId>
|
|
14
|
+ <artifactId>maven-compiler-plugin</artifactId>
|
|
15
|
+ <configuration>
|
|
16
|
+ <source>8</source>
|
|
17
|
+ <target>8</target>
|
|
18
|
+ </configuration>
|
|
19
|
+ </plugin>
|
|
20
|
+ </plugins>
|
|
21
|
+ </build>
|
14
|
22
|
<parent>
|
15
|
23
|
<groupId>org.springframework.boot</groupId>
|
16
|
24
|
<artifactId>spring-boot-starter-parent</artifactId>
|
17
|
|
- <version>2.0.4.RELEASE</version>
|
|
25
|
+ <version>1.5.3.RELEASE</version>
|
18
|
26
|
<relativePath/> <!-- lookup parent from repository -->
|
19
|
27
|
</parent>
|
20
|
|
-
|
21
|
28
|
<properties>
|
22
|
29
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
23
|
|
- <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
24
|
|
- <java.version>1.8</java.version>
|
|
30
|
+ <start-class>com.zipcodewilmington.bakery.BakeryApplication</start-class>
|
|
31
|
+ <java.version>1.7</java.version>
|
25
|
32
|
</properties>
|
26
|
|
-
|
27
|
33
|
<dependencies>
|
28
|
34
|
<dependency>
|
29
|
35
|
<groupId>org.springframework.boot</groupId>
|
30
|
|
- <artifactId>spring-boot-starter</artifactId>
|
31
|
|
- </dependency>
|
32
|
|
-
|
33
|
|
- <dependency>
|
34
|
|
- <groupId>org.springframework.boot</groupId>
|
35
|
|
- <artifactId>spring-boot-starter-data-rest</artifactId>
|
|
36
|
+ <artifactId>spring-boot-starter-web</artifactId>
|
36
|
37
|
</dependency>
|
37
|
|
-
|
38
|
38
|
<dependency>
|
39
|
39
|
<groupId>org.springframework.boot</groupId>
|
40
|
|
- <artifactId>spring-boot-starter-web</artifactId>
|
|
40
|
+ <artifactId>spring-boot-starter-data-jpa</artifactId>
|
41
|
41
|
</dependency>
|
42
|
|
-
|
43
|
42
|
<dependency>
|
44
|
43
|
<groupId>org.springframework.boot</groupId>
|
45
|
44
|
<artifactId>spring-boot-starter-test</artifactId>
|
46
|
45
|
<scope>test</scope>
|
47
|
46
|
</dependency>
|
48
|
47
|
<dependency>
|
49
|
|
- <groupId>org.springframework.data</groupId>
|
50
|
|
- <artifactId>spring-data-commons</artifactId>
|
51
|
|
- <version>1.13.10.RELEASE</version>
|
|
48
|
+ <groupId>org.hsqldb</groupId>
|
|
49
|
+ <artifactId>hsqldb</artifactId>
|
|
50
|
+ <scope>runtime</scope>
|
52
|
51
|
</dependency>
|
53
|
|
- </dependencies>
|
54
|
52
|
|
55
|
|
- <build>
|
56
|
|
- <plugins>
|
57
|
|
- <plugin>
|
58
|
|
- <groupId>org.springframework.boot</groupId>
|
59
|
|
- <artifactId>spring-boot-maven-plugin</artifactId>
|
60
|
|
- </plugin>
|
61
|
|
- </plugins>
|
62
|
|
- </build>
|
|
53
|
+ <dependency>
|
|
54
|
+ <groupId>javax.inject</groupId>
|
|
55
|
+ <artifactId>javax.inject</artifactId>
|
|
56
|
+ <version>1</version>
|
|
57
|
+ </dependency>
|
|
58
|
+ </dependencies>
|
63
|
59
|
|
64
|
60
|
|
65
|
61
|
</project>
|