This is an automated email from the ASF dual-hosted git repository.

olamy pushed a commit to branch ci-reporting
in repository https://gitbox.apache.org/repos/asf/maven-compiler-plugin.git


The following commit(s) were added to refs/heads/ci-reporting by this push:
     new 987f4ae  ci reporting moved to a snapshot parent
987f4ae is described below

commit 987f4aeade2c3ef0822ba5fabafc63c77655245a
Author: Olivier Lamy <ol...@apache.org>
AuthorDate: Mon Feb 28 12:20:42 2022 +1000

    ci reporting moved to a snapshot parent
    
    Signed-off-by: Olivier Lamy <ol...@apache.org>
---
 pom.xml | 186 +---------------------------------------------------------------
 1 file changed, 1 insertion(+), 185 deletions(-)

diff --git a/pom.xml b/pom.xml
index 503c9fc..f442423 100644
--- a/pom.xml
+++ b/pom.xml
@@ -25,7 +25,7 @@ under the License.
   <parent>
     <groupId>org.apache.maven.plugins</groupId>
     <artifactId>maven-plugins</artifactId>
-    <version>34</version>
+    <version>99-SNAPSHOT</version>
     <relativePath />
   </parent>
 
@@ -359,189 +359,5 @@ under the License.
         </pluginManagement>
       </build>
     </profile>
-    <profile>
-      <id>errorprone</id>
-      <build>
-        <pluginManagement>
-          <plugins>
-            <plugin>
-              <groupId>org.apache.maven.plugins</groupId>
-              <artifactId>maven-compiler-plugin</artifactId>
-              <configuration>
-                <showWarnings>true</showWarnings>
-                <compilerArgs combine.children="append">
-                  <arg>-XDcompilePolicy=simple</arg>
-                  <arg>-Xplugin:ErrorProne -XepAllErrorsAsWarnings</arg>
-                </compilerArgs>
-                <annotationProcessorPaths>
-                  <path>
-                    <groupId>com.google.errorprone</groupId>
-                    <artifactId>error_prone_core</artifactId>
-                    <version>2.11.0</version>
-                  </path>
-                </annotationProcessorPaths>
-              </configuration>
-            </plugin>
-          </plugins>
-        </pluginManagement>
-      </build>
-    </profile>
-    <profile>
-      <id>ci-reporting</id>
-      <properties>
-        <spotbugs.failOnError>false</spotbugs.failOnError>
-        <!-- Defines a SpotBugs threshold. Use "Low" to discover low-priority 
bugs -->
-        <spotbugs.threshold>Medium</spotbugs.threshold>
-        <!-- Defines a SpotBugs effort. Use "Max" to maximize the scan depth 
-->
-        <spotbugs.effort>Default</spotbugs.effort>
-        <spotbugs.skip>false</spotbugs.skip>
-        <spotbugs.onlyAnalyze>org.eclipse.jetty.*</spotbugs.onlyAnalyze>
-        <invoker.writeJunitReport>true</invoker.writeJunitReport>
-        
<invoker.junitPackageName>org.apache.maven.plugins.its.compiler</invoker.junitPackageName>
-        <!-- Enable recording of coverage during execution of 
maven-invoker-plugin -->
-        <jacoco.propertyName>invoker.mavenOpts</jacoco.propertyName>
-        <jacoco.includes>org.apache.maven.plugin.compiler</jacoco.includes>
-      </properties>
-      <build>
-        <pluginManagement>
-          <plugins>
-            <plugin>
-              <groupId>org.jacoco</groupId>
-              <artifactId>jacoco-maven-plugin</artifactId>
-              <version>${jacoco.version}</version>
-            </plugin>
-            <plugin>
-              <groupId>com.github.spotbugs</groupId>
-              <artifactId>spotbugs-maven-plugin</artifactId>
-              <version>4.5.3.0</version>
-            </plugin>
-            <plugin>
-              <groupId>org.apache.maven.plugins</groupId>
-              <artifactId>maven-pmd-plugin</artifactId>
-              <version>3.16.0</version>
-            </plugin>
-            <plugin>
-              <groupId>org.codehaus.mojo</groupId>
-              <artifactId>taglist-maven-plugin</artifactId>
-              <version>3.0.0</version>
-            </plugin>
-          </plugins>
-        </pluginManagement>
-        <plugins>
-          <plugin>
-            <groupId>org.apache.maven.plugins</groupId>
-            <artifactId>maven-invoker-plugin</artifactId>
-            <configuration>
-              <extraArtifacts>
-                
<extraArtifact>org.jacoco:org.jacoco.agent:${jacoco.version}:jar:runtime</extraArtifact>
-              </extraArtifacts>
-            </configuration>
-          </plugin>
-          <plugin>
-            <groupId>org.jacoco</groupId>
-            <artifactId>jacoco-maven-plugin</artifactId>
-            <executions>
-              <execution>
-                <id>jacoco-initialize</id>
-                <phase>initialize</phase>
-                <goals>
-                  <goal>prepare-agent</goal>
-                </goals>
-              </execution>
-            </executions>
-          </plugin>
-          <plugin>
-            <groupId>com.github.spotbugs</groupId>
-            <artifactId>spotbugs-maven-plugin</artifactId>
-            <executions>
-              <execution>
-                <id>spotbugs</id>
-                <goals>
-                  <goal>check</goal>
-                </goals>
-                <phase>verify</phase>
-                <configuration>
-                  <skip>${spotbugs.skip}</skip>
-                  <failOnError>${spotbugs.failOnError}</failOnError>
-                  <xmlOutput>true</xmlOutput>
-                  <spotbugsXmlOutput>false</spotbugsXmlOutput>
-                  <effort>${spotbugs.effort}</effort>
-                  <threshold>${spotbugs.threshold}</threshold>
-                </configuration>
-              </execution>
-            </executions>
-          </plugin>
-          <plugin>
-            <groupId>org.apache.maven.plugins</groupId>
-            <artifactId>maven-pmd-plugin</artifactId>
-            <executions>
-              <execution>
-                <id>pmd-check</id>
-                <goals>
-                  <goal>check</goal>
-                </goals>
-                <configuration>
-                  <!-- we are only interested to get report file -->
-                  <failOnViolation>false</failOnViolation>
-                </configuration>
-              </execution>
-            </executions>
-          </plugin>
-          <plugin>
-            <groupId>org.codehaus.mojo</groupId>
-            <artifactId>taglist-maven-plugin</artifactId>
-            <executions>
-              <execution>
-                <phase>test-compile</phase>
-                <goals>
-                  <goal>taglist</goal>
-                </goals>
-                <configuration>
-                  <tagListOptions>
-                    <tagClasses>
-                      <tagClass>
-                        <displayName>FIXME Work</displayName>
-                        <tags>
-                          <tag>
-                            <matchString>fixme</matchString>
-                            <matchType>ignoreCase</matchType>
-                          </tag>
-                          <tag>
-                            <matchString>@fixme</matchString>
-                            <matchType>ignoreCase</matchType>
-                          </tag>
-                        </tags>
-                      </tagClass>
-                      <tagClass>
-                        <displayName>Todo Work</displayName>
-                        <tags>
-                          <tag>
-                            <matchString>todo</matchString>
-                            <matchType>ignoreCase</matchType>
-                          </tag>
-                          <tag>
-                            <matchString>@todo</matchString>
-                            <matchType>ignoreCase</matchType>
-                          </tag>
-                        </tags>
-                      </tagClass>
-                      <tagClass>
-                        <displayName>Deprecated Work</displayName>
-                        <tags>
-                          <tag>
-                            <matchString>@deprecated</matchString>
-                            <matchType>ignoreCase</matchType>
-                          </tag>
-                        </tags>
-                      </tagClass>
-                    </tagClasses>
-                  </tagListOptions>
-                </configuration>
-              </execution>
-            </executions>
-          </plugin>
-        </plugins>
-      </build>
-    </profile>
   </profiles>
 </project>

Reply via email to