[Git][java-team/access-modifier-checker][master] 5 commits: Standards-Version updated to 4.7.3
Emmanuel Bourg (@ebourg)
gitlab at salsa.debian.org
Mon Feb 9 14:47:37 GMT 2026
Emmanuel Bourg pushed to branch master at Debian Java Maintainers / access-modifier-checker
Commits:
ce6b964a by Emmanuel Bourg at 2026-02-09T15:42:27+01:00
Standards-Version updated to 4.7.3
- - - - -
8ce80274 by Emmanuel Bourg at 2026-02-09T15:44:09+01:00
Converted debian/watch to version 5
- - - - -
7eca8a48 by Emmanuel Bourg at 2026-02-09T15:45:05+01:00
New upstream version 1.35
- - - - -
ae2958a1 by Emmanuel Bourg at 2026-02-09T15:45:06+01:00
Update upstream source from tag 'upstream/1.35'
Update to upstream version '1.35'
with Debian dir 7b6eebd803a2e28c4ac181bb68949c41c2036913
- - - - -
29e1010b by Emmanuel Bourg at 2026-02-09T15:47:18+01:00
New upstream release (1.35)
- - - - -
9 changed files:
- access-modifier-annotation/pom.xml
- access-modifier-annotation/src/main/java/org/kohsuke/accmod/restrictions/ProtectedExternally.java
- access-modifier-checker/pom.xml
- access-modifier-checker/src/main/java/org/kohsuke/accmod/impl/EnforcerMojo.java
- access-modifier-suppressions/pom.xml
- debian/changelog
- debian/control
- debian/watch
- pom.xml
Changes:
=====================================
access-modifier-annotation/pom.xml
=====================================
@@ -4,7 +4,7 @@
<parent>
<groupId>org.kohsuke</groupId>
<artifactId>access-modifier</artifactId>
- <version>1.34</version>
+ <version>1.35</version>
</parent>
<artifactId>access-modifier-annotation</artifactId>
@@ -14,7 +14,7 @@
<dependency>
<groupId>org.jenkins-ci</groupId>
<artifactId>annotation-indexer</artifactId>
- <version>1.17</version>
+ <version>1.18</version>
</dependency>
<dependency>
<groupId>org.ow2.asm</groupId>
=====================================
access-modifier-annotation/src/main/java/org/kohsuke/accmod/restrictions/ProtectedExternally.java
=====================================
@@ -30,7 +30,6 @@ import java.lang.annotation.Inherited;
import java.util.Arrays;
import java.util.concurrent.atomic.AtomicBoolean;
-import edu.umd.cs.findbugs.annotations.SuppressFBWarnings;
import org.kohsuke.accmod.Restricted;
import org.kohsuke.accmod.impl.ErrorListener;
import org.kohsuke.accmod.impl.Location;
@@ -49,9 +48,6 @@ import org.objectweb.asm.Opcodes;
public class ProtectedExternally extends None {
@Override
- @SuppressFBWarnings(
- value={"RCN_REDUNDANT_NULLCHECK_OF_NULL_VALUE", "NP_LOAD_OF_KNOWN_NULL_VALUE"},
- justification="something in this class confuses spotbugs, I can't see anything redundant and the error line is the catch block")
public void invoked(Location loc, RestrictedElement target, ErrorListener errorListener) {
if (target.isInTheInspectedModule()) {
return;
=====================================
access-modifier-checker/pom.xml
=====================================
@@ -4,7 +4,7 @@
<parent>
<groupId>org.kohsuke</groupId>
<artifactId>access-modifier</artifactId>
- <version>1.34</version>
+ <version>1.35</version>
</parent>
<artifactId>access-modifier-checker</artifactId>
<packaging>maven-plugin</packaging>
@@ -12,7 +12,7 @@
<properties>
<maven.version>3.9.6</maven.version>
- <maven-plugin-tools.version>3.15.0</maven-plugin-tools.version>
+ <maven-plugin-tools.version>3.15.1</maven-plugin-tools.version>
</properties>
<prerequisites>
@@ -125,7 +125,7 @@
<plugins>
<plugin>
<artifactId>maven-invoker-plugin</artifactId>
- <version>3.8.0</version>
+ <version>3.9.0</version>
<executions>
<execution>
<id>integration-test</id>
=====================================
access-modifier-checker/src/main/java/org/kohsuke/accmod/impl/EnforcerMojo.java
=====================================
@@ -53,11 +53,7 @@ public class EnforcerMojo extends AbstractMojo {
private Properties properties;
@Override
- @SuppressFBWarnings(value = {
- "URLCONNECTION_SSRF_FD",
- "PATH_TRAVERSAL_IN",
- "DP_CREATE_CLASSLOADER_INSIDE_DO_PRIVILEGED"
- })
+ @SuppressFBWarnings(value = "PATH_TRAVERSAL_IN", justification = "User-provided value for running the program")
public void execute() throws MojoExecutionException, MojoFailureException {
if (skip) {
getLog().info("Skipping access modifier checks");
=====================================
access-modifier-suppressions/pom.xml
=====================================
@@ -4,7 +4,7 @@
<parent>
<groupId>org.kohsuke</groupId>
<artifactId>access-modifier</artifactId>
- <version>1.34</version>
+ <version>1.35</version>
</parent>
<artifactId>access-modifier-suppressions</artifactId>
=====================================
debian/changelog
=====================================
@@ -1,3 +1,12 @@
+access-modifier-checker (1.35-1) unstable; urgency=medium
+
+ * Team upload.
+ * New upstream release
+ * Standards-Version updated to 4.7.3
+ * Converted debian/watch to version 5
+
+ -- Emmanuel Bourg <ebourg at apache.org> Mon, 09 Feb 2026 15:47:04 +0100
+
access-modifier-checker (1.34-1) unstable; urgency=medium
* Team upload.
=====================================
debian/control
=====================================
@@ -15,7 +15,7 @@ Build-Depends:
libmaven3-core-java,
libmetainf-services-java,
maven-debian-helper (>= 2.0)
-Standards-Version: 4.6.1
+Standards-Version: 4.7.3
Vcs-Git: https://salsa.debian.org/java-team/access-modifier-checker.git
Vcs-Browser: https://salsa.debian.org/java-team/access-modifier-checker
Homepage: https://github.com/kohsuke/access-modifier
=====================================
debian/watch
=====================================
@@ -1,2 +1,4 @@
-version=3
-https://github.com/kohsuke/access-modifier/tags .*/access-modifier-(.*).tar.gz
+Version: 5
+Template: GitHub
+Owner: kohsuke
+Project: access-modifier
=====================================
pom.xml
=====================================
@@ -4,13 +4,13 @@
<parent>
<groupId>org.jenkins-ci</groupId>
<artifactId>jenkins</artifactId>
- <version>1.123</version>
+ <version>1.131</version>
<relativePath />
</parent>
<groupId>org.kohsuke</groupId>
<artifactId>access-modifier</artifactId>
- <version>1.34</version>
+ <version>1.35</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.34</tag>
+ <tag>access-modifier-1.35</tag>
<url>https://github.com/${gitHubRepo}</url>
</scm>
<properties>
- <revision>1.34</revision>
+ <revision>1.35</revision>
<changelist>-SNAPSHOT</changelist>
<gitHubRepo>jenkinsci/lib-access-modifier</gitHubRepo>
</properties>
@@ -56,7 +56,7 @@
<dependency>
<groupId>org.ow2.asm</groupId>
<artifactId>asm</artifactId>
- <version>9.7</version>
+ <version>9.8</version>
</dependency>
</dependencies>
</dependencyManagement>
View it on GitLab: https://salsa.debian.org/java-team/access-modifier-checker/-/compare/e3fbc3fc7c896befc45e3cf41fc2061a1f8608ba...29e1010bb69b7c1a3cdf036cf62636e318c0bb28
--
View it on GitLab: https://salsa.debian.org/java-team/access-modifier-checker/-/compare/e3fbc3fc7c896befc45e3cf41fc2061a1f8608ba...29e1010bb69b7c1a3cdf036cf62636e318c0bb28
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/20260209/67f9fca3/attachment.htm>
More information about the pkg-java-commits
mailing list