diff options
author | wr148d <wr148d@att.com> | 2021-03-23 14:08:21 -0400 |
---|---|---|
committer | wr148d <wr148d@att.com> | 2021-03-23 14:32:09 -0400 |
commit | f66e9b316eea473c9907a8f4d3d916e22949f39c (patch) | |
tree | 047ba928d22611e095652f3af0e301938946837c | |
parent | 952675d47b3063c9322b42983412e1aceca67094 (diff) |
Reverting Brian's Java 11 updates in the pom to see if we can again pass sonar test coverage
Issue-ID: AAI-3276
Signed-off-by: wr148d <wr148d@att.com>
Change-Id: I088b6eb55dd3edab1ce11e081321a74787a203f4
-rw-r--r-- | pom.xml | 85 |
1 files changed, 0 insertions, 85 deletions
@@ -53,95 +53,10 @@ <!-- GMaven plugin uses this property to figure out the name of the docker tag --> <aai.project.version>${project.version}</aai.project.version> <checkstyle.skip>false</checkstyle.skip> - - - <maven-site-plugin.version>3.9.1</maven-site-plugin.version> - <wagon-webdav-jackrabbit.version>3.4.2</wagon-webdav-jackrabbit.version> - <jacoco-maven-plugin.version>0.8.6</jacoco-maven-plugin.version> - <maven-surefire-plugin.version>2.22.2</maven-surefire-plugin.version> - <maven-compiler-plugin.version>3.8.1</maven-compiler-plugin.version> - <maven-compiler-plugin.source>8</maven-compiler-plugin.source> - <maven-compiler-plugin.target>8</maven-compiler-plugin.target> - <maven-compiler-plugin.test.source>8</maven-compiler-plugin.test.source> - <maven-compiler-plugin.test.target>8</maven-compiler-plugin.test.target> - <sonar-maven-plugin.version>3.7.0.1746</sonar-maven-plugin.version> - <slf4j.version>1.7.26</slf4j.version> </properties> <build> <pluginManagement> <plugins> - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-site-plugin</artifactId> - <version>${maven-site-plugin.version}</version> - <dependencies> - <dependency> - <groupId>org.apache.maven.wagon</groupId> - <artifactId>wagon-webdav-jackrabbit</artifactId> - <version>${wagon-webdav-jackrabbit.version}</version> - </dependency> - </dependencies> - </plugin> - <plugin> - <groupId>org.jacoco</groupId> - <artifactId>jacoco-maven-plugin</artifactId> - <version>${jacoco-maven-plugin.version}</version> - <executions> - <!-- Unit-Tests --> - <execution> - <id>prepare-agent</id> - <goals> - <goal>prepare-agent</goal> - </goals> - <configuration> - <destFile>${sonar.jacoco.reportPath}</destFile> - </configuration> - </execution> - </executions> - </plugin> - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-surefire-plugin</artifactId> - <version>${maven-surefire-plugin.version}</version> - <configuration> - <argLine>${argLine} -Xmx2048m --illegal-access=permit</argLine> - </configuration> - </plugin> - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-failsafe-plugin</artifactId> - <version>2.22.0</version> - <configuration> - <argLine> - --illegal-access=permit - </argLine> - </configuration> - </plugin> - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-compiler-plugin</artifactId> - <version>${maven-compiler-plugin.version}</version> - <inherited>true</inherited> - <configuration> - <source>${maven-compiler-plugin.source}</source> - <target>${maven-compiler-plugin.target}</target> - <testSource>${maven-compiler-plugin.test.source}</testSource> - <testTarget>${maven-compiler-plugin.test.target}</testTarget> - </configuration> - </plugin> - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-javadoc-plugin</artifactId> - <version>${maven-javadoc-plugin.version}</version> - <configuration/> - </plugin> - <plugin> - <groupId>org.sonarsource.scanner.maven</groupId> - <artifactId>sonar-maven-plugin</artifactId> - <version>${sonar-maven-plugin.version}</version> - </plugin> - - <!-- Using https://code.revelc.net/formatter-maven-plugin/ for Eclipse formatter Using https://github.com/diffplug/spotless/tree/master/plugin-maven for import order |