[Git][java-team/access-modifier-checker][master] 3 commits: New upstream version 1.31

Emmanuel Bourg (@ebourg) gitlab at salsa.debian.org
Sun Jun 11 07:37:29 BST 2023



Emmanuel Bourg pushed to branch master at Debian Java Maintainers / access-modifier-checker


Commits:
d82eaaf3 by Emmanuel Bourg at 2023-06-11T08:31:01+02:00
New upstream version 1.31
- - - - -
8381934b by Emmanuel Bourg at 2023-06-11T08:31:01+02:00
Update upstream source from tag 'upstream/1.31'

Update to upstream version '1.31'
with Debian dir c06b6d65b64c96d71e58bdfe4baac9bc67cf3ac2
- - - - -
96f15e96 by Emmanuel Bourg at 2023-06-11T08:37:01+02:00
New upstream release (1.31)

- - - - -


8 changed files:

- .github/dependabot.yml
- .mvn/extensions.xml
- access-modifier-annotation/pom.xml
- access-modifier-checker/pom.xml
- access-modifier-suppressions/pom.xml
- debian/changelog
- debian/maven.ignoreRules
- pom.xml


Changes:

=====================================
.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:


=====================================
.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>


=====================================
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>
 


=====================================
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>


=====================================
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>
 


=====================================
debian/changelog
=====================================
@@ -1,3 +1,10 @@
+access-modifier-checker (1.31-1) unstable; urgency=medium
+
+  * Team upload.
+  * New upstream release
+
+ -- Emmanuel Bourg <ebourg at apache.org>  Sun, 11 Jun 2023 08:36:27 +0200
+
 access-modifier-checker (1.30-1) unstable; urgency=medium
 
   * Team upload.


=====================================
debian/maven.ignoreRules
=====================================
@@ -14,6 +14,7 @@
 # from the POM
 #   junit junit jar s/3\\..*/3.x/
 
+org.apache.maven.plugins maven-enforcer-plugin * * * *
 org.apache.maven.plugins maven-invoker-plugin * * * *
 org.apache.maven.plugins maven-javadoc-plugin * * * *
 org.apache.maven.plugins maven-release-plugin * * * *


=====================================
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 at 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>



View it on GitLab: https://salsa.debian.org/java-team/access-modifier-checker/-/compare/3a1ecc9093f8bd7e565c095a1cb264c335163f01...96f15e96e9853798b106e64f82265674b7232e32

-- 
View it on GitLab: https://salsa.debian.org/java-team/access-modifier-checker/-/compare/3a1ecc9093f8bd7e565c095a1cb264c335163f01...96f15e96e9853798b106e64f82265674b7232e32
You're receiving this email because of your account on salsa.debian.org.


-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://alioth-lists.debian.net/pipermail/pkg-java-commits/attachments/20230611/99abf86a/attachment.htm>


More information about the pkg-java-commits mailing list