File tree Expand file tree Collapse file tree 1 file changed +24
-1
lines changed Expand file tree Collapse file tree 1 file changed +24
-1
lines changed Original file line number Diff line number Diff line change 19
19
20
20
<build >
21
21
<plugins >
22
+ <plugin >
23
+ <groupId >org.apache.maven.plugins</groupId >
24
+ <artifactId >maven-enforcer-plugin</artifactId >
25
+ <version >3.0.0-M3</version >
26
+ <executions >
27
+ <execution >
28
+ <id >enforce-maven</id >
29
+ <goals >
30
+ <goal >enforce</goal >
31
+ </goals >
32
+ <configuration >
33
+ <rules >
34
+ <requireMavenVersion >
35
+ <version >3.6.3</version >
36
+ </requireMavenVersion >
37
+ <requireJavaVersion >
38
+ <version >1.8.0</version >
39
+ </requireJavaVersion >
40
+ </rules >
41
+ </configuration >
42
+ </execution >
43
+ </executions >
44
+ </plugin >
22
45
<plugin >
23
46
<groupId >org.owasp</groupId >
24
47
<artifactId >dependency-check-maven</artifactId >
25
48
<version >6.0.3</version >
26
49
<configuration >
27
- <failBuildOnCVSS >8 </failBuildOnCVSS >
50
+ <failBuildOnCVSS >0 </failBuildOnCVSS >
28
51
</configuration >
29
52
<executions >
30
53
<execution >
You can’t perform that action at this time.
0 commit comments