|
1 | 1 | <?xml version="1.0" encoding="UTF-8"?> |
2 | 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"> |
4 | | - <modelVersion>4.0.0</modelVersion> |
| 3 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 4 | + <modelVersion>4.0.0</modelVersion> |
5 | 5 |
|
6 | | - <groupId>com.example</groupId> |
7 | | - <artifactId>demo</artifactId> |
8 | | - <version>0.0.1-SNAPSHOT</version> |
9 | | - <packaging>jar</packaging> |
| 6 | + <groupId>com.example</groupId> |
| 7 | + <artifactId>demo</artifactId> |
| 8 | + <version>0.0.1-SNAPSHOT</version> |
| 9 | + <packaging>jar</packaging> |
10 | 10 |
|
11 | | - <name>demo</name> |
12 | | - <description>Demo project for Spring Boot</description> |
| 11 | + <name>demo</name> |
| 12 | + <description>Demo project for Spring Boot</description> |
13 | 13 |
|
14 | | - <parent> |
15 | | - <groupId>org.springframework.boot</groupId> |
16 | | - <artifactId>spring-boot-starter-parent</artifactId> |
17 | | - <version>1.4.1.RELEASE</version> |
18 | | - <relativePath/> <!-- lookup parent from repository --> |
19 | | - </parent> |
| 14 | + <parent> |
| 15 | + <groupId>org.springframework.boot</groupId> |
| 16 | + <artifactId>spring-boot-starter-parent</artifactId> |
| 17 | + <version>1.4.1.RELEASE</version> |
| 18 | + <relativePath/> <!-- lookup parent from repository --> |
| 19 | + </parent> |
20 | 20 |
|
21 | | - <properties> |
22 | | - <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
23 | | - <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> |
24 | | - <java.version>1.8</java.version> |
25 | | - </properties> |
| 21 | + <properties> |
| 22 | + <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 23 | + <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> |
| 24 | + <java.version>1.8</java.version> |
| 25 | + </properties> |
26 | 26 |
|
27 | | - <dependencies> |
| 27 | + <dependencies> |
28 | 28 | <dependency> |
29 | 29 | <groupId>org.springframework.boot</groupId> |
30 | 30 | <artifactId>spring-boot-starter-data-rest</artifactId> |
31 | 31 | </dependency> |
32 | | - <dependency> |
33 | | - <groupId>org.springframework.boot</groupId> |
34 | | - <artifactId>spring-boot-starter-data-jpa</artifactId> |
35 | | - </dependency> |
36 | | - <dependency> |
37 | | - <groupId>org.springframework.boot</groupId> |
38 | | - <artifactId>spring-boot-devtools</artifactId> |
39 | | - </dependency> |
40 | | - <dependency> |
41 | | - <groupId>com.stormpath.spring</groupId> |
42 | | - <artifactId>stormpath-default-spring-boot-starter</artifactId> |
43 | | - <version>1.1.2-SNAPSHOT</version> |
44 | | - </dependency> |
45 | | - <dependency> |
46 | | - <groupId>org.springframework.boot</groupId> |
47 | | - <artifactId>spring-boot-starter-web</artifactId> |
48 | | - </dependency> |
49 | | - |
50 | | - <dependency> |
51 | | - <groupId>com.h2database</groupId> |
52 | | - <artifactId>h2</artifactId> |
53 | | - <scope>runtime</scope> |
54 | | - </dependency> |
55 | | - <dependency> |
56 | | - <groupId>org.springframework.boot</groupId> |
57 | | - <artifactId>spring-boot-starter-test</artifactId> |
58 | | - <scope>test</scope> |
59 | | - </dependency> |
60 | | - </dependencies> |
| 32 | + <dependency> |
| 33 | + <groupId>org.springframework.boot</groupId> |
| 34 | + <artifactId>spring-boot-starter-data-jpa</artifactId> |
| 35 | + </dependency> |
| 36 | + <dependency> |
| 37 | + <groupId>org.springframework.boot</groupId> |
| 38 | + <artifactId>spring-boot-devtools</artifactId> |
| 39 | + </dependency> |
| 40 | + <dependency> |
| 41 | + <groupId>com.stormpath.spring</groupId> |
| 42 | + <artifactId>stormpath-default-spring-boot-starter</artifactId> |
| 43 | + <version>1.1.2-SNAPSHOT</version> |
| 44 | + </dependency> |
| 45 | + <dependency> |
| 46 | + <groupId>org.springframework.boot</groupId> |
| 47 | + <artifactId>spring-boot-starter-web</artifactId> |
| 48 | + </dependency> |
61 | 49 |
|
62 | | -<build> |
63 | | - <plugins> |
64 | | - <plugin> |
| 50 | + <dependency> |
| 51 | + <groupId>com.h2database</groupId> |
| 52 | + <artifactId>h2</artifactId> |
| 53 | + <scope>runtime</scope> |
| 54 | + </dependency> |
| 55 | + <dependency> |
65 | 56 | <groupId>org.springframework.boot</groupId> |
66 | | - <artifactId>spring-boot-maven-plugin</artifactId> |
67 | | - <configuration> |
68 | | - <addResources>true</addResources> |
69 | | - </configuration> |
70 | | - </plugin> |
71 | | - </plugins> |
72 | | -</build> |
| 57 | + <artifactId>spring-boot-starter-test</artifactId> |
| 58 | + <scope>test</scope> |
| 59 | + </dependency> |
| 60 | + </dependencies> |
73 | 61 |
|
| 62 | + <build> |
| 63 | + <plugins> |
| 64 | + <plugin> |
| 65 | + <groupId>org.springframework.boot</groupId> |
| 66 | + <artifactId>spring-boot-maven-plugin</artifactId> |
| 67 | + <configuration> |
| 68 | + <addResources>true</addResources> |
| 69 | + </configuration> |
| 70 | + </plugin> |
| 71 | + </plugins> |
| 72 | + </build> |
74 | 73 |
|
75 | 74 | </project> |
0 commit comments