Files
spotbugs/spotbugs-4.9.3.pom
Anton Shvetz 1f900d909b - Update to v4.9.3
* Added
    + Introduced UselessSuppressionDetector to report the useless
      annotations instead of NoteSuppressedWarnings (#3348)
  * Fixed
    + Do not report US_USELESS_SUPPRESSION_ON_METHOD on synthetic
      methods (#3351)

OBS-URL: https://build.opensuse.org/package/show/Java:packages/spotbugs?expand=0&rev=10
2025-03-15 21:58:02 +00:00

211 lines
6.5 KiB
XML

<?xml version="1.0" encoding="UTF-8"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<!-- This module was also published with a richer model, Gradle metadata, -->
<!-- which should be used instead. Do not delete the following line which -->
<!-- is to indicate to Gradle or any Gradle module metadata file consumer -->
<!-- that they should prefer consuming it instead. -->
<!-- do_not_remove: published-with-gradle-metadata -->
<modelVersion>4.0.0</modelVersion>
<groupId>com.github.spotbugs</groupId>
<artifactId>spotbugs</artifactId>
<version>4.9.3</version>
<packaging>pom</packaging>
<name>SpotBugs</name>
<description>SpotBugs: Because it's easy!</description>
<url>https://spotbugs.github.io/</url>
<licenses>
<license>
<name>GNU LESSER GENERAL PUBLIC LICENSE, Version 2.1</name>
<url>https://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html</url>
</license>
</licenses>
<developers>
<developer>
<id>jsotuyod</id>
<name>Juan Martín Sotuyo Dodero</name>
<url>https://github.com/jsotuyod</url>
<timezone>-3</timezone>
</developer>
<developer>
<id>mebigfatguy</id>
<name>Dave Brosius</name>
<email>dbrosius@mebigfatguy.com</email>
<url>http://www.jroller.com/dbrosius/</url>
<timezone>-5</timezone>
</developer>
<developer>
<id>henrik242</id>
<url>https://github.com/henrik242</url>
</developer>
<developer>
<id>KengoTODA</id>
<name>Kengo TODA</name>
<email>skypencil@gmail.com</email>
<url>https://github.com/KengoTODA/</url>
<timezone>+8</timezone>
</developer>
<developer>
<id>iloveeclipse</id>
<name>Andrey Loskutov</name>
<email>loskutov@gmx.de</email>
<url>https://github.com/iloveeclipse</url>
<timezone>+2</timezone>
</developer>
<developer>
<id>ThrawnCA</id>
<url>https://github.com/ThrawnCA</url>
</developer>
<developer>
<id>sewe</id>
<name>Andreas Sewe</name>
<email>andreas.sewe@codetrails.com</email>
<url>https://github.com/sewe</url>
<timezone>+1</timezone>
</developer>
</developers>
<scm>
<connection>scm:git:git@github.com:spotbugs/spotbugs.git</connection>
<developerConnection>scm:git:git@github.com:spotbugs/spotbugs.git</developerConnection>
<url>https://github.com/spotbugs/spotbugs/</url>
</scm>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-core</artifactId>
<version>[2.17.1, 3)</version>
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-core</artifactId>
<version>[1.2.9, 2)</version>
</dependency>
</dependencies>
</dependencyManagement>
<dependencies>
<dependency>
<groupId>org.ow2.asm</groupId>
<artifactId>asm</artifactId>
<version>9.7.1</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.ow2.asm</groupId>
<artifactId>asm-analysis</artifactId>
<version>9.7.1</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.ow2.asm</groupId>
<artifactId>asm-commons</artifactId>
<version>9.7.1</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.ow2.asm</groupId>
<artifactId>asm-tree</artifactId>
<version>9.7.1</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.ow2.asm</groupId>
<artifactId>asm-util</artifactId>
<version>9.7.1</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.apache.bcel</groupId>
<artifactId>bcel</artifactId>
<version>6.10.0</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>com.github.stephenc.jcip</groupId>
<artifactId>jcip-annotations</artifactId>
<version>1.0-1</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.dom4j</groupId>
<artifactId>dom4j</artifactId>
<version>2.1.4</version>
<scope>compile</scope>
<exclusions>
<exclusion>
<groupId>javax.xml.bind</groupId>
<artifactId>jaxb-api</artifactId>
</exclusion>
<exclusion>
<groupId>jaxen</groupId>
<artifactId>jaxen</artifactId>
</exclusion>
<exclusion>
<groupId>net.java.dev.msv</groupId>
<artifactId>xsdlib</artifactId>
</exclusion>
<exclusion>
<groupId>javax.xml.stream</groupId>
<artifactId>stax-api</artifactId>
</exclusion>
<exclusion>
<groupId>xpp3</groupId>
<artifactId>xpp3</artifactId>
</exclusion>
<exclusion>
<groupId>pull-parser</groupId>
<artifactId>pull-parser</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>3.17.0</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-text</artifactId>
<version>1.13.0</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>2.0.17</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>com.github.spotbugs</groupId>
<artifactId>spotbugs-annotations</artifactId>
<version>4.9.3</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
<version>2.12.1</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>jaxen</groupId>
<artifactId>jaxen</artifactId>
<version>2.0.0</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>net.sf.saxon</groupId>
<artifactId>Saxon-HE</artifactId>
<version>12.5</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-core</artifactId>
<version>2.24.3</version>
<scope>runtime</scope>
</dependency>
</dependencies>
</project>