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 >com.workflow.github</groupId >
8
+ <artifactId >workflow-github-actions</artifactId >
9
+ <version >1.0-SNAPSHOT</version >
10
+
11
+ <properties >
12
+ <project .build.sourceEncoding>UTF-8</project .build.sourceEncoding>
13
+ <project .reporting.outputEncoding>UTF-8</project .reporting.outputEncoding>
14
+ <java .version>8</java .version>
15
+
16
+ <maven-surefire-plugin .version>2.19.1</maven-surefire-plugin .version>
17
+ <junit5 .version>5.1.1</junit5 .version>
18
+ <junit .jupiter.version>5.1.0</junit .jupiter.version>
19
+ <junit .vintage.version>5.1.0</junit .vintage.version>
20
+ <junit .platform.version>1.1.0</junit .platform.version>
21
+ </properties >
22
+
23
+ <dependencies >
24
+
25
+ <dependency >
26
+ <groupId >org.springframework.boot</groupId >
27
+ <artifactId >spring-boot-starter</artifactId >
28
+ <version >2.2.6.RELEASE</version >
29
+ </dependency >
30
+
31
+ <dependency >
32
+ <groupId >org.springframework.boot</groupId >
33
+ <artifactId >spring-boot-starter-web</artifactId >
34
+ <version >2.2.6.RELEASE</version >
35
+ </dependency >
36
+
37
+ <dependency >
38
+ <groupId >org.springframework.boot</groupId >
39
+ <artifactId >spring-boot-starter-test</artifactId >
40
+ <version >2.2.6.RELEASE</version >
41
+ <scope >test</scope >
42
+ </dependency >
43
+
44
+ </dependencies >
45
+
46
+ <profiles >
47
+ <profile >
48
+ <id >eclipse</id >
49
+ <dependencies >
50
+ <dependency >
51
+ <groupId >org.junit.jupiter</groupId >
52
+ <artifactId >junit-jupiter-engine</artifactId >
53
+ </dependency >
54
+ <dependency >
55
+ <groupId >org.junit.platform</groupId >
56
+ <artifactId >junit-platform-launcher</artifactId >
57
+ <version >1.6.0</version >
58
+ <scope >test</scope >
59
+ </dependency >
60
+ </dependencies >
61
+ <dependencyManagement >
62
+ <dependencies >
63
+ <dependency >
64
+ <groupId >org.junit.jupiter</groupId >
65
+ <artifactId >junit-jupiter-engine</artifactId >
66
+ <version >${junit5.version} </version >
67
+ <scope >test</scope >
68
+ </dependency >
69
+ <dependency >
70
+ <groupId >org.junit.platform</groupId >
71
+ <artifactId >junit-platform-launcher</artifactId >
72
+ <version >1.1.1</version >
73
+ <scope >test</scope >
74
+ </dependency >
75
+ </dependencies >
76
+ </dependencyManagement >
77
+ </profile >
78
+ </profiles >
79
+
80
+ </project >
0 commit comments