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

Emmanuel Bourg (@ebourg) gitlab at salsa.debian.org
Sat Oct 2 20:39:04 BST 2021



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


Commits:
7c4480b6 by Emmanuel Bourg at 2021-10-02T21:24:00+02:00
New upstream version 1.25
- - - - -
12c95ad0 by Emmanuel Bourg at 2021-10-02T21:24:00+02:00
Update upstream source from tag 'upstream/1.25'

Update to upstream version '1.25'
with Debian dir 38e8ceef52b826c27921f1487ed51063976f4df3
- - - - -
c242566f by Emmanuel Bourg at 2021-10-02T21:25:16+02:00
New upstream release (1.25)

- - - - -


6 changed files:

- access-modifier-annotation/pom.xml
- access-modifier-checker/pom.xml
- access-modifier-suppressions/pom.xml
- access-modifier-suppressions/src/main/java/org/kohsuke/accmod/restrictions/suppressions/SuppressRestrictedWarnings.java
- debian/changelog
- pom.xml


Changes:

=====================================
access-modifier-annotation/pom.xml
=====================================
@@ -4,7 +4,7 @@
   <parent>
     <artifactId>access-modifier</artifactId>
     <groupId>org.kohsuke</groupId>
-    <version>1.24</version>
+    <version>1.25</version>
   </parent>
   <artifactId>access-modifier-annotation</artifactId>
 
@@ -14,7 +14,7 @@
     <dependency>
       <groupId>org.jenkins-ci</groupId>
       <artifactId>annotation-indexer</artifactId>
-      <version>1.14</version>
+      <version>1.15</version>
     </dependency>
     <dependency>
       <groupId>org.ow2.asm</groupId>


=====================================
access-modifier-checker/pom.xml
=====================================
@@ -4,12 +4,16 @@
   <parent>
     <artifactId>access-modifier</artifactId>
     <groupId>org.kohsuke</groupId>
-    <version>1.24</version>
+    <version>1.25</version>
   </parent>
   <artifactId>access-modifier-checker</artifactId>
   <packaging>maven-plugin</packaging>
   <name>Custom Access Modifier Checker</name>
 
+  <properties>
+    <maven.version>3.8.2</maven.version>
+  </properties>
+
   <dependencies>
     <dependency>
       <groupId>junit</groupId>
@@ -40,14 +44,14 @@
     <dependency>
       <groupId>org.apache.maven</groupId>
       <artifactId>maven-plugin-api</artifactId>
-      <version>3.6.3</version>
+      <version>${maven.version}</version>
       <scope>provided</scope>
     </dependency>
     <dependency>
       <!-- needed when injecting the Maven Project into a plugin  -->
       <groupId>org.apache.maven</groupId>
       <artifactId>maven-core</artifactId>
-      <version>3.6.3</version>
+      <version>${maven.version}</version>
       <scope>provided</scope>
     </dependency>
 
@@ -59,6 +63,16 @@
     </dependency>
   </dependencies>
 
+  <dependencyManagement>
+    <dependencies>
+      <dependency> <!-- Irritatingly, maven-resolver-provider & maven-resolver-impl request different versions -->
+        <groupId>org.slf4j</groupId>
+        <artifactId>slf4j-api</artifactId>
+        <version>1.7.32</version>
+      </dependency>
+    </dependencies>
+  </dependencyManagement>
+
   <profiles>
     <profile>
       <id>run-its</id>


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


=====================================
access-modifier-suppressions/src/main/java/org/kohsuke/accmod/restrictions/suppressions/SuppressRestrictedWarnings.java
=====================================
@@ -26,11 +26,10 @@ package org.kohsuke.accmod.restrictions.suppressions;
 import java.lang.annotation.Documented;
 import java.lang.annotation.ElementType;
 import java.lang.annotation.Retention;
+import java.lang.annotation.RetentionPolicy;
 import java.lang.annotation.Target;
 import org.kohsuke.accmod.Restricted;
 
-import static java.lang.annotation.RetentionPolicy.RUNTIME;
-
 /**
  * <p>Indicates that certain classes annotated with {@link Restricted} annotations should be skipped during the
  * access-modifier-check.</p>
@@ -40,7 +39,7 @@ import static java.lang.annotation.RetentionPolicy.RUNTIME;
  *
  * @author Steve Arch
  */
- at Retention(RUNTIME)
+ at Retention(RetentionPolicy.CLASS)
 @Documented
 @Target({ElementType.METHOD, ElementType.CONSTRUCTOR, ElementType.TYPE})
 public @interface SuppressRestrictedWarnings {


=====================================
debian/changelog
=====================================
@@ -1,3 +1,10 @@
+access-modifier-checker (1.25-1) unstable; urgency=medium
+
+  * Team upload.
+  * New upstream release
+
+ -- Emmanuel Bourg <ebourg at apache.org>  Sat, 02 Oct 2021 21:25:03 +0200
+
 access-modifier-checker (1.24-1) unstable; urgency=medium
 
   * Team upload.


=====================================
pom.xml
=====================================
@@ -4,13 +4,13 @@
   <parent>
     <groupId>org.jenkins-ci</groupId>
     <artifactId>jenkins</artifactId>
-    <version>1.61</version>
+    <version>1.65</version>
     <relativePath />
   </parent>
 
   <groupId>org.kohsuke</groupId>
   <artifactId>access-modifier</artifactId>
-  <version>1.24</version>
+  <version>1.25</version>
 
   <name>Custom access modifier for Java</name>
   <packaging>pom</packaging>
@@ -18,7 +18,7 @@
   <url>https://github.com/jenkinsci/lib-access-modifier</url>
 
   <properties>
-    <revision>1.24</revision>
+    <revision>1.25</revision>
     <changelist>-SNAPSHOT</changelist>
     <gitHubRepo>jenkinsci/lib-access-modifier</gitHubRepo>
     <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
@@ -36,7 +36,7 @@
     <connection>scm:git:git at github.com/${gitHubRepo}.git</connection>
     <developerConnection>scm:git:ssh://git@github.com/${gitHubRepo}.git</developerConnection>
     <url>https://github.com/${gitHubRepo}</url>
-    <tag>access-modifier-1.24</tag>
+    <tag>access-modifier-1.25</tag>
   </scm>
 
   <developers>



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

-- 
View it on GitLab: https://salsa.debian.org/java-team/access-modifier-checker/-/compare/a86db9f2211ca050abb1522cf5992f7ba58c407a...c242566fb0acecafae4e2070aaf752918e2bed40
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/20211002/2bebe6b3/attachment.htm>


More information about the pkg-java-commits mailing list