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

Emmanuel Bourg (@ebourg) gitlab at salsa.debian.org
Mon Mar 3 16:06:57 GMT 2025



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


Commits:
9b6a917c by Emmanuel Bourg at 2025-03-03T17:04:04+01:00
New upstream version 1.34
- - - - -
2b77e90b by Emmanuel Bourg at 2025-03-03T17:04:04+01:00
Update upstream source from tag 'upstream/1.34'

Update to upstream version '1.34'
with Debian dir 3b3fb745306d9f8ea814d2f00a388c58deff83c1
- - - - -
e3fbc3fc by Emmanuel Bourg at 2025-03-03T17:04:54+01:00
New upstream release (1.34)

- - - - -


8 changed files:

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


Changes:

=====================================
.github/dependabot.yml
=====================================
@@ -9,9 +9,6 @@ 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:


=====================================
.github/workflows/release-drafter.yml
=====================================
@@ -11,6 +11,6 @@ jobs:
     runs-on: ubuntu-latest
     steps:
       # Drafts your next Release notes as Pull Requests are merged into "master"
-      - uses: release-drafter/release-drafter at v5
+      - uses: release-drafter/release-drafter at v6
         env:
           GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}


=====================================
.mvn/extensions.xml
=====================================
@@ -2,6 +2,6 @@
   <extension>
     <groupId>io.jenkins.tools.incrementals</groupId>
     <artifactId>git-changelist-maven-extension</artifactId>
-    <version>1.7</version>
+    <version>1.8</version>
   </extension>
 </extensions>


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


=====================================
access-modifier-checker/pom.xml
=====================================
@@ -4,14 +4,15 @@
   <parent>
     <groupId>org.kohsuke</groupId>
     <artifactId>access-modifier</artifactId>
-    <version>1.33</version>
+    <version>1.34</version>
   </parent>
   <artifactId>access-modifier-checker</artifactId>
   <packaging>maven-plugin</packaging>
   <name>Custom Access Modifier Checker</name>
 
   <properties>
-    <maven.version>3.8.1</maven.version>
+    <maven.version>3.9.6</maven.version>
+    <maven-plugin-tools.version>3.15.0</maven-plugin-tools.version>
   </properties>
 
   <prerequisites>
@@ -47,7 +48,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.9.0</version>
+      <version>${maven-plugin-tools.version}</version>
       <optional>true</optional>
     </dependency>
     <dependency>
@@ -70,6 +71,7 @@
   <build>
     <plugins>
       <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-enforcer-plugin</artifactId>
         <executions>
           <execution>
@@ -86,6 +88,27 @@
           </execution>
         </executions>
       </plugin>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-plugin-plugin</artifactId>
+        <version>${maven-plugin-tools.version}</version>
+        <configuration>
+          <goalPrefix>access-modifier-checker</goalPrefix>
+        </configuration>
+        <executions>
+          <!-- if you want to generate help goal -->
+          <execution>
+            <id>help-goal</id>
+            <goals>
+              <goal>helpmojo</goal>
+            </goals>
+          </execution>
+          <execution>
+            <id>default-descriptor</id>
+            <phase>process-classes</phase>
+          </execution>
+        </executions>
+      </plugin>
     </plugins>
   </build>
 
@@ -102,7 +125,7 @@
         <plugins>
           <plugin>
             <artifactId>maven-invoker-plugin</artifactId>
-            <version>3.6.0</version>
+            <version>3.8.0</version>
             <executions>
               <execution>
                 <id>integration-test</id>
@@ -127,7 +150,7 @@
           <plugin>
             <groupId>org.codehaus.mojo</groupId>
             <artifactId>mrm-maven-plugin</artifactId>
-            <version>1.5.0</version>
+            <version>1.6.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.33</version>
+    <version>1.34</version>
   </parent>
   <artifactId>access-modifier-suppressions</artifactId>
 


=====================================
debian/changelog
=====================================
@@ -1,3 +1,10 @@
+access-modifier-checker (1.34-1) unstable; urgency=medium
+
+  * Team upload.
+  * New upstream release
+
+ -- Emmanuel Bourg <ebourg at apache.org>  Mon, 03 Mar 2025 17:04:42 +0100
+
 access-modifier-checker (1.33-1) unstable; urgency=medium
 
   * Team upload.


=====================================
pom.xml
=====================================
@@ -4,13 +4,13 @@
   <parent>
     <groupId>org.jenkins-ci</groupId>
     <artifactId>jenkins</artifactId>
-    <version>1.106</version>
+    <version>1.123</version>
     <relativePath />
   </parent>
 
   <groupId>org.kohsuke</groupId>
   <artifactId>access-modifier</artifactId>
-  <version>1.33</version>
+  <version>1.34</version>
   <packaging>pom</packaging>
 
   <name>Custom access modifier for Java</name>
@@ -41,27 +41,22 @@
   <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.33</tag>
+    <tag>access-modifier-1.34</tag>
     <url>https://github.com/${gitHubRepo}</url>
   </scm>
 
   <properties>
-    <revision>1.33</revision>
+    <revision>1.34</revision>
     <changelist>-SNAPSHOT</changelist>
     <gitHubRepo>jenkinsci/lib-access-modifier</gitHubRepo>
   </properties>
 
   <dependencyManagement>
     <dependencies>
-      <dependency>
-        <groupId>org.codehaus.plexus</groupId>
-        <artifactId>plexus-utils</artifactId>
-        <version>3.5.1</version>
-      </dependency>
       <dependency>
         <groupId>org.ow2.asm</groupId>
         <artifactId>asm</artifactId>
-        <version>9.6</version>
+        <version>9.7</version>
       </dependency>
     </dependencies>
   </dependencyManagement>
@@ -94,29 +89,6 @@
     </pluginRepository>
   </pluginRepositories>
 
-  <build>
-    <plugins>
-      <plugin>
-        <groupId>org.apache.maven.plugins</groupId>
-        <artifactId>maven-plugin-plugin</artifactId>
-        <version>3.9.0</version>
-        <executions>
-          <!-- if you want to generate help goal -->
-          <execution>
-            <id>help-goal</id>
-            <goals>
-              <goal>helpmojo</goal>
-            </goals>
-          </execution>
-          <execution>
-            <id>default-descriptor</id>
-            <phase>process-classes</phase>
-          </execution>
-        </executions>
-      </plugin>
-    </plugins>
-  </build>
-
   <reporting>
     <plugins>
       <plugin>



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

-- 
View it on GitLab: https://salsa.debian.org/java-team/access-modifier-checker/-/compare/d35bfde9a2bbad7d02e7ccd0dd0660f9f820698d...e3fbc3fc7c896befc45e3cf41fc2061a1f8608ba
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/20250303/ba0e5be7/attachment.htm>


More information about the pkg-java-commits mailing list