* 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
94 lines
3.2 KiB
XML
94 lines
3.2 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-annotations</artifactId>
|
|
<version>4.9.3</version>
|
|
<name>SpotBugs Annotations</name>
|
|
<description>Annotations the SpotBugs tool supports</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>com.google.code.findbugs</groupId>
|
|
<artifactId>jsr305</artifactId>
|
|
<version>3.0.2</version>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
</project>
|