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

Emmanuel Bourg (@ebourg) gitlab at salsa.debian.org
Sat Apr 6 09:55:36 BST 2024



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


Commits:
db2dbab3 by Emmanuel Bourg at 2024-04-06T10:52:28+02:00
New upstream version 1.33
- - - - -
4d419441 by Emmanuel Bourg at 2024-04-06T10:52:28+02:00
Update upstream source from tag 'upstream/1.33'

Update to upstream version '1.33'
with Debian dir 06a22a75e29ecd6a11156db043e027c5adba440b
- - - - -
d35bfde9 by Emmanuel Bourg at 2024-04-06T10:53:35+02:00
New upstream release (1.33)

- - - - -


8 changed files:

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


Changes:

=====================================
.github/dependabot.yml
=====================================
@@ -9,6 +9,9 @@ updates:
     ignore:
       # maven core artifacts are provided by the running maven, do not update to prevent consuming something unavailable
       - dependency-name: "org.apache.maven:*"
+      # https://lists.apache.org/thread/ltd1g1dbv0lqqdw5q941gmrkfyn6m87m
+      - dependency-name: "org.codehaus.plexus:plexus-utils"
+        versions: [">=4.0.0"]
   - 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.6</version>
+    <version>1.7</version>
   </extension>
 </extensions>


=====================================
Jenkinsfile
=====================================
@@ -4,7 +4,6 @@
  * allowing one to test against multiple Jenkins versions.
  */
 buildPlugin(useContainerAgent: true, configurations: [
-  [ platform: 'linux', jdk: '11' ],
-  [ platform: 'windows', jdk: '11' ],
-  [ platform: 'linux', jdk: '17' ],
+  [ platform: 'windows', jdk: '17' ],
+  [ platform: 'linux', jdk: '21' ]
 ])


=====================================
access-modifier-annotation/pom.xml
=====================================
@@ -4,7 +4,7 @@
   <parent>
     <groupId>org.kohsuke</groupId>
     <artifactId>access-modifier</artifactId>
-    <version>1.32</version>
+    <version>1.33</version>
   </parent>
   <artifactId>access-modifier-annotation</artifactId>
 


=====================================
access-modifier-checker/pom.xml
=====================================
@@ -4,7 +4,7 @@
   <parent>
     <groupId>org.kohsuke</groupId>
     <artifactId>access-modifier</artifactId>
-    <version>1.32</version>
+    <version>1.33</version>
   </parent>
   <artifactId>access-modifier-checker</artifactId>
   <packaging>maven-plugin</packaging>


=====================================
access-modifier-suppressions/pom.xml
=====================================
@@ -4,7 +4,7 @@
   <parent>
     <groupId>org.kohsuke</groupId>
     <artifactId>access-modifier</artifactId>
-    <version>1.32</version>
+    <version>1.33</version>
   </parent>
   <artifactId>access-modifier-suppressions</artifactId>
 


=====================================
debian/changelog
=====================================
@@ -1,3 +1,10 @@
+access-modifier-checker (1.33-1) unstable; urgency=medium
+
+  * Team upload.
+  * New upstream release
+
+ -- Emmanuel Bourg <ebourg at apache.org>  Sat, 06 Apr 2024 10:53:25 +0200
+
 access-modifier-checker (1.32-1) unstable; urgency=medium
 
   * Team upload.


=====================================
pom.xml
=====================================
@@ -4,13 +4,13 @@
   <parent>
     <groupId>org.jenkins-ci</groupId>
     <artifactId>jenkins</artifactId>
-    <version>1.101</version>
+    <version>1.106</version>
     <relativePath />
   </parent>
 
   <groupId>org.kohsuke</groupId>
   <artifactId>access-modifier</artifactId>
-  <version>1.32</version>
+  <version>1.33</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.32</tag>
+    <tag>access-modifier-1.33</tag>
     <url>https://github.com/${gitHubRepo}</url>
   </scm>
 
   <properties>
-    <revision>1.32</revision>
+    <revision>1.33</revision>
     <changelist>-SNAPSHOT</changelist>
     <gitHubRepo>jenkinsci/lib-access-modifier</gitHubRepo>
   </properties>
@@ -56,12 +56,12 @@
       <dependency>
         <groupId>org.codehaus.plexus</groupId>
         <artifactId>plexus-utils</artifactId>
-        <version>4.0.0</version>
+        <version>3.5.1</version>
       </dependency>
       <dependency>
         <groupId>org.ow2.asm</groupId>
         <artifactId>asm</artifactId>
-        <version>9.5</version>
+        <version>9.6</version>
       </dependency>
     </dependencies>
   </dependencyManagement>



View it on GitLab: https://salsa.debian.org/java-team/access-modifier-checker/-/compare/848bab37e587c73da10865cd51fd53b27ef6397d...d35bfde9a2bbad7d02e7ccd0dd0660f9f820698d

-- 
View it on GitLab: https://salsa.debian.org/java-team/access-modifier-checker/-/compare/848bab37e587c73da10865cd51fd53b27ef6397d...d35bfde9a2bbad7d02e7ccd0dd0660f9f820698d
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/20240406/9fa117ef/attachment.htm>


More information about the pkg-java-commits mailing list