New Upstream Release - access-modifier-checker

Ready changes

Summary

Merged new upstream version: 1.31 (was: 1.30).

Diff

diff --git a/.github/dependabot.yml b/.github/dependabot.yml
index fdc58d1..d9126d1 100644
--- a/.github/dependabot.yml
+++ b/.github/dependabot.yml
@@ -6,6 +6,9 @@ updates:
     directory: "/"
     schedule:
       interval: "weekly"
+    ignore:
+      # maven core artifacts are provided by the running maven, do not update to prevent consuming something unavailable
+      - dependency-name: "org.apache.maven:*"
   - package-ecosystem: "github-actions"
     directory: "/"
     schedule:
diff --git a/.mvn/extensions.xml b/.mvn/extensions.xml
index 9ac2968..90787cb 100644
--- a/.mvn/extensions.xml
+++ b/.mvn/extensions.xml
@@ -2,6 +2,6 @@
   <extension>
     <groupId>io.jenkins.tools.incrementals</groupId>
     <artifactId>git-changelist-maven-extension</artifactId>
-    <version>1.4</version>
+    <version>1.6</version>
   </extension>
 </extensions>
diff --git a/access-modifier-annotation/pom.xml b/access-modifier-annotation/pom.xml
index f26f879..e7f3a48 100644
--- a/access-modifier-annotation/pom.xml
+++ b/access-modifier-annotation/pom.xml
@@ -4,7 +4,7 @@
   <parent>
     <groupId>org.kohsuke</groupId>
     <artifactId>access-modifier</artifactId>
-    <version>1.30</version>
+    <version>1.31</version>
   </parent>
   <artifactId>access-modifier-annotation</artifactId>
 
diff --git a/access-modifier-checker/pom.xml b/access-modifier-checker/pom.xml
index 2238454..45246d6 100644
--- a/access-modifier-checker/pom.xml
+++ b/access-modifier-checker/pom.xml
@@ -4,16 +4,20 @@
   <parent>
     <groupId>org.kohsuke</groupId>
     <artifactId>access-modifier</artifactId>
-    <version>1.30</version>
+    <version>1.31</version>
   </parent>
   <artifactId>access-modifier-checker</artifactId>
   <packaging>maven-plugin</packaging>
   <name>Custom Access Modifier Checker</name>
 
   <properties>
-    <maven.version>3.8.6</maven.version>
+    <maven.version>3.8.1</maven.version>
   </properties>
 
+  <prerequisites>
+      <maven>${maven.version}</maven>
+  </prerequisites>
+
   <dependencies>
     <dependency>
       <groupId>${project.groupId}</groupId>
@@ -43,7 +47,7 @@
       <!-- annotations are not used at runtime because @Retention(value=CLASS), they are needed only to build the plugin -->
       <groupId>org.apache.maven.plugin-tools</groupId>
       <artifactId>maven-plugin-annotations</artifactId>
-      <version>3.7.0</version>
+      <version>3.8.1</version>
       <optional>true</optional>
     </dependency>
     <dependency>
@@ -63,6 +67,28 @@
     </dependency>
   </dependencies>
 
+  <build>
+    <plugins>
+      <plugin>
+        <artifactId>maven-enforcer-plugin</artifactId>
+        <executions>
+          <execution>
+            <id>display-info</id>
+            <configuration>
+              <rules>
+                <requireUpperBoundDeps>
+                  <excludes combine.children="append">
+                    <exclude>org.slf4j:slf4j-api</exclude>
+                  </excludes>
+                </requireUpperBoundDeps>
+              </rules>
+            </configuration>
+          </execution>
+        </executions>
+      </plugin>
+    </plugins>
+  </build>
+
   <profiles>
     <profile>
       <id>run-its</id>
@@ -76,7 +102,7 @@
         <plugins>
           <plugin>
             <artifactId>maven-invoker-plugin</artifactId>
-            <version>3.3.0</version>
+            <version>3.5.0</version>
             <executions>
               <execution>
                 <id>integration-test</id>
@@ -101,7 +127,7 @@
           <plugin>
             <groupId>org.codehaus.mojo</groupId>
             <artifactId>mrm-maven-plugin</artifactId>
-            <version>1.4.1</version>
+            <version>1.5.0</version>
             <executions>
               <execution>
                 <goals>
diff --git a/access-modifier-suppressions/pom.xml b/access-modifier-suppressions/pom.xml
index 5e68b98..b04417d 100644
--- a/access-modifier-suppressions/pom.xml
+++ b/access-modifier-suppressions/pom.xml
@@ -4,7 +4,7 @@
   <parent>
     <groupId>org.kohsuke</groupId>
     <artifactId>access-modifier</artifactId>
-    <version>1.30</version>
+    <version>1.31</version>
   </parent>
   <artifactId>access-modifier-suppressions</artifactId>
 
diff --git a/debian/changelog b/debian/changelog
index 7f46274..e7871fe 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+access-modifier-checker (1.31-1) UNRELEASED; urgency=low
+
+  * New upstream release.
+
+ -- Debian Janitor <janitor@jelmer.uk>  Sat, 03 Jun 2023 00:18:40 -0000
+
 access-modifier-checker (1.30-1) unstable; urgency=medium
 
   * Team upload.
diff --git a/pom.xml b/pom.xml
index e97b970..9d9a7d1 100644
--- a/pom.xml
+++ b/pom.xml
@@ -4,13 +4,13 @@
   <parent>
     <groupId>org.jenkins-ci</groupId>
     <artifactId>jenkins</artifactId>
-    <version>1.92</version>
+    <version>1.95</version>
     <relativePath />
   </parent>
 
   <groupId>org.kohsuke</groupId>
   <artifactId>access-modifier</artifactId>
-  <version>1.30</version>
+  <version>1.31</version>
   <packaging>pom</packaging>
 
   <name>Custom access modifier for Java</name>
@@ -41,12 +41,12 @@
   <scm child.scm.connection.inherit.append.path="false" child.scm.developerConnection.inherit.append.path="false" child.scm.url.inherit.append.path="false">
     <connection>scm:git:https://github.com/${gitHubRepo}.git</connection>
     <developerConnection>scm:git:git@github.com:${gitHubRepo}.git</developerConnection>
-    <tag>access-modifier-1.30</tag>
+    <tag>access-modifier-1.31</tag>
     <url>https://github.com/${gitHubRepo}</url>
   </scm>
 
   <properties>
-    <revision>1.30</revision>
+    <revision>1.31</revision>
     <changelist>-SNAPSHOT</changelist>
     <gitHubRepo>jenkinsci/lib-access-modifier</gitHubRepo>
   </properties>
@@ -56,7 +56,7 @@
       <dependency>
         <groupId>org.codehaus.plexus</groupId>
         <artifactId>plexus-utils</artifactId>
-        <version>3.5.0</version>
+        <version>3.5.1</version>
       </dependency>
       <dependency>
         <groupId>org.ow2.asm</groupId>
@@ -99,7 +99,7 @@
       <plugin>
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-plugin-plugin</artifactId>
-        <version>3.7.0</version>
+        <version>3.8.1</version>
         <executions>
           <!-- if you want to generate help goal -->
           <execution>

More details

Full run details

Historical runs