|
1 |
| -<?xml version="1.0" encoding="UTF-8"?> |
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"> |
5 |
| - <modelVersion>4.0.0</modelVersion> |
6 |
| - |
7 |
| - <groupId>net.guides.springboot2</groupId> |
8 |
| - <artifactId>springboot2-junit5-example</artifactId> |
9 |
| - <version>0.0.1-SNAPSHOT</version> |
10 |
| - <packaging>jar</packaging> |
11 |
| - |
12 |
| - <name>springboot2-junit5-example</name> |
13 |
| - <description>Demo project for Spring Boot</description> |
14 |
| - |
15 |
| - <parent> |
16 |
| - <groupId>org.springframework.boot</groupId> |
17 |
| - <artifactId>spring-boot-starter-parent</artifactId> |
18 |
| - <version>2.0.5.RELEASE</version> |
19 |
| - <relativePath /> <!-- lookup parent from repository --> |
20 |
| - </parent> |
21 |
| - |
22 |
| - <properties> |
23 |
| - <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
24 |
| - <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> |
25 |
| - <java.version>1.8</java.version> |
26 |
| - </properties> |
27 |
| - |
28 |
| - <dependencies> |
29 |
| - <dependency> |
30 |
| - <groupId>org.springframework.boot</groupId> |
31 |
| - <artifactId>spring-boot-starter-web</artifactId> |
32 |
| - </dependency> |
33 |
| - <dependency> |
34 |
| - <groupId>org.springframework.boot</groupId> |
35 |
| - <artifactId>spring-boot-starter-test</artifactId> |
36 |
| - <scope>test</scope> |
37 |
| - <exclusions> |
38 |
| - <exclusion> |
39 |
| - <groupId>junit</groupId> |
40 |
| - <artifactId>junit</artifactId> |
41 |
| - </exclusion> |
42 |
| - </exclusions> |
43 |
| - </dependency> |
44 |
| - <dependency> |
45 |
| - <groupId>org.junit.jupiter</groupId> |
46 |
| - <artifactId>junit-jupiter-api</artifactId> |
47 |
| - <scope>test</scope> |
48 |
| - </dependency> |
49 |
| - <dependency> |
50 |
| - <groupId>org.junit.jupiter</groupId> |
51 |
| - <artifactId>junit-jupiter-engine</artifactId> |
52 |
| - <scope>test</scope> |
53 |
| - </dependency> |
54 |
| - </dependencies> |
55 |
| - <build> |
56 |
| - <plugins> |
57 |
| - <plugin> |
58 |
| - <groupId>org.springframework.boot</groupId> |
59 |
| - <artifactId>spring-boot-maven-plugin</artifactId> |
60 |
| - </plugin> |
61 |
| - <plugin> |
62 |
| - <groupId>org.apache.maven.plugins</groupId> |
63 |
| - <artifactId>maven-surefire-plugin</artifactId> |
64 |
| - </plugin> |
65 |
| - </plugins> |
66 |
| - </build> |
67 |
| - |
68 |
| -</project> |
0 commit comments