File tree Expand file tree Collapse file tree 1 file changed +34
-2
lines changed Expand file tree Collapse file tree 1 file changed +34
-2
lines changed Original file line number Diff line number Diff line change 11
11
<dependency >
12
12
<groupId >junit</groupId >
13
13
<artifactId >junit</artifactId >
14
- <version >4.13.1 </version >
14
+ <version >4.13.2 </version >
15
15
<scope >test</scope >
16
16
</dependency >
17
17
</dependencies >
18
+ <properties >
19
+ <project .build.sourceEncoding>UTF-8</project .build.sourceEncoding>
20
+ </properties >
18
21
<build >
22
+ <pluginManagement >
23
+ <plugins >
24
+ <plugin >
25
+ <groupId >org.apache.maven.plugins</groupId >
26
+ <artifactId >maven-compiler-plugin</artifactId >
27
+ <version >3.8.1</version >
28
+ </plugin >
29
+ </plugins >
30
+ </pluginManagement >
19
31
<plugins >
20
32
<plugin >
21
33
<!-- Build an executable JAR -->
22
34
<groupId >org.apache.maven.plugins</groupId >
23
35
<artifactId >maven-jar-plugin</artifactId >
24
- <version >3.0.2 </version >
36
+ <version >3.2.0 </version >
25
37
<configuration >
26
38
<archive >
27
39
<manifest >
32
44
</archive >
33
45
</configuration >
34
46
</plugin >
47
+ <plugin >
48
+ <groupId >org.apache.maven.plugins</groupId >
49
+ <artifactId >maven-enforcer-plugin</artifactId >
50
+ <version >3.0.0-M3</version >
51
+ <executions >
52
+ <execution >
53
+ <id >enforce-maven</id >
54
+ <goals >
55
+ <goal >enforce</goal >
56
+ </goals >
57
+ <configuration >
58
+ <rules >
59
+ <requireMavenVersion >
60
+ <version >[3.5.4,)</version >
61
+ </requireMavenVersion >
62
+ </rules >
63
+ </configuration >
64
+ </execution >
65
+ </executions >
66
+ </plugin >
35
67
</plugins >
36
68
</build >
37
69
</project >
You can’t perform that action at this time.
0 commit comments