|
@@ -560,11 +560,6 @@
|
|
|
<artifactId>jasper-runtime</artifactId>
|
|
|
<version>5.5.23</version>
|
|
|
</dependency>
|
|
|
- <dependency>
|
|
|
- <groupId>javax.servlet.jsp</groupId>
|
|
|
- <artifactId>jsp-api</artifactId>
|
|
|
- <version>2.1</version>
|
|
|
- </dependency>
|
|
|
<dependency>
|
|
|
<groupId>commons-el</groupId>
|
|
|
<artifactId>commons-el</artifactId>
|
|
@@ -1057,7 +1052,6 @@
|
|
|
<plugin>
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
<artifactId>maven-enforcer-plugin</artifactId>
|
|
|
- <inherited>false</inherited>
|
|
|
<configuration>
|
|
|
<rules>
|
|
|
<requireMavenVersion>
|
|
@@ -1075,6 +1069,7 @@
|
|
|
<goal>enforce</goal>
|
|
|
</goals>
|
|
|
<phase>pre-clean</phase>
|
|
|
+ <inherited>false</inherited>
|
|
|
</execution>
|
|
|
<execution>
|
|
|
<id>default</id>
|
|
@@ -1082,6 +1077,7 @@
|
|
|
<goal>enforce</goal>
|
|
|
</goals>
|
|
|
<phase>validate</phase>
|
|
|
+ <inherited>false</inherited>
|
|
|
</execution>
|
|
|
<execution>
|
|
|
<id>site</id>
|
|
@@ -1089,6 +1085,21 @@
|
|
|
<goal>enforce</goal>
|
|
|
</goals>
|
|
|
<phase>pre-site</phase>
|
|
|
+ <inherited>false</inherited>
|
|
|
+ </execution>
|
|
|
+ <execution>
|
|
|
+ <id>depcheck</id>
|
|
|
+ <configuration>
|
|
|
+ <rules>
|
|
|
+ <DependencyConvergence>
|
|
|
+ <uniqueVersions>true</uniqueVersions>
|
|
|
+ </DependencyConvergence>
|
|
|
+ </rules>
|
|
|
+ </configuration>
|
|
|
+ <goals>
|
|
|
+ <goal>enforce</goal>
|
|
|
+ </goals>
|
|
|
+ <phase>verify</phase>
|
|
|
</execution>
|
|
|
</executions>
|
|
|
</plugin>
|
|
@@ -1140,26 +1151,6 @@
|
|
|
<includeReports>false</includeReports>
|
|
|
</configuration>
|
|
|
</plugin>
|
|
|
- <plugin>
|
|
|
- <groupId>org.apache.maven.plugins</groupId>
|
|
|
- <artifactId>maven-enforcer-plugin</artifactId>
|
|
|
- <executions>
|
|
|
- <execution>
|
|
|
- <id>depcheck</id>
|
|
|
- <configuration>
|
|
|
- <rules>
|
|
|
- <DependencyConvergence>
|
|
|
- <uniqueVersions>true</uniqueVersions>
|
|
|
- </DependencyConvergence>
|
|
|
- </rules>
|
|
|
- </configuration>
|
|
|
- <goals>
|
|
|
- <goal>enforce</goal>
|
|
|
- </goals>
|
|
|
- <phase>verify</phase>
|
|
|
- </execution>
|
|
|
- </executions>
|
|
|
- </plugin>
|
|
|
</plugins>
|
|
|
</build>
|
|
|
|