|
6 | 6 | <groupId>guru.springframework</groupId> |
7 | 7 | <artifactId>spring5webapp</artifactId> |
8 | 8 | <version>0.0.1-SNAPSHOT</version> |
9 | | - <packaging>jar</packaging> |
10 | 9 |
|
11 | 10 | <name>spring5webapp</name> |
12 | | - <description>Demo project for Spring Boot</description> |
13 | 11 |
|
14 | | - <parent> |
15 | | - <groupId>org.springframework.boot</groupId> |
16 | | - <artifactId>spring-boot-starter-parent</artifactId> |
17 | | - <version>2.1.2.RELEASE</version> |
18 | | - <relativePath/> <!-- lookup parent from repository --> |
19 | | - </parent> |
| 12 | + <description>Example Spring 5 Web Application</description> |
20 | 13 |
|
21 | 14 | <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> |
| 15 | + <java.version>11</java.version> |
25 | 16 | </properties> |
26 | 17 |
|
27 | 18 | <dependencies> |
28 | | - <dependency> |
29 | | - <groupId>org.springframework.boot</groupId> |
30 | | - <artifactId>spring-boot-starter-actuator</artifactId> |
31 | | - </dependency> |
32 | 19 | <dependency> |
33 | 20 | <groupId>org.springframework.boot</groupId> |
34 | 21 | <artifactId>spring-boot-starter-data-jpa</artifactId> |
35 | 22 | </dependency> |
36 | | - <dependency> |
37 | | - <groupId>org.springframework.boot</groupId> |
38 | | - <artifactId>spring-boot-starter-thymeleaf</artifactId> |
39 | | - </dependency> |
40 | 23 | <dependency> |
41 | 24 | <groupId>org.springframework.boot</groupId> |
42 | 25 | <artifactId>spring-boot-starter-web</artifactId> |
|
51 | 34 | <groupId>org.springframework.boot</groupId> |
52 | 35 | <artifactId>spring-boot-starter-test</artifactId> |
53 | 36 | <scope>test</scope> |
| 37 | + <exclusions> |
| 38 | + <exclusion> |
| 39 | + <groupId>org.junit.vintage</groupId> |
| 40 | + <artifactId>junit-vintage-engine</artifactId> |
| 41 | + </exclusion> |
| 42 | + </exclusions> |
54 | 43 | </dependency> |
55 | 44 | </dependencies> |
56 | 45 |
|
|
63 | 52 | </plugins> |
64 | 53 | </build> |
65 | 54 |
|
66 | | - <repositories> |
67 | | - <repository> |
68 | | - <id>spring-snapshots</id> |
69 | | - <name>Spring Snapshots</name> |
70 | | - <url>https://repo.spring.io/snapshot</url> |
71 | | - <snapshots> |
72 | | - <enabled>true</enabled> |
73 | | - </snapshots> |
74 | | - </repository> |
75 | | - <repository> |
76 | | - <id>spring-milestones</id> |
77 | | - <name>Spring Milestones</name> |
78 | | - <url>https://repo.spring.io/milestone</url> |
79 | | - <snapshots> |
80 | | - <enabled>false</enabled> |
81 | | - </snapshots> |
82 | | - </repository> |
83 | | - </repositories> |
84 | | - |
85 | | - <pluginRepositories> |
86 | | - <pluginRepository> |
87 | | - <id>spring-snapshots</id> |
88 | | - <name>Spring Snapshots</name> |
89 | | - <url>https://repo.spring.io/snapshot</url> |
90 | | - <snapshots> |
91 | | - <enabled>true</enabled> |
92 | | - </snapshots> |
93 | | - </pluginRepository> |
94 | | - <pluginRepository> |
95 | | - <id>spring-milestones</id> |
96 | | - <name>Spring Milestones</name> |
97 | | - <url>https://repo.spring.io/milestone</url> |
98 | | - <snapshots> |
99 | | - <enabled>false</enabled> |
100 | | - </snapshots> |
101 | | - </pluginRepository> |
102 | | - </pluginRepositories> |
103 | | - |
104 | | - |
105 | 55 | </project> |
0 commit comments