2019-12-05 09:56:52 -05:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2021-05-06 08:31:55 -04:00
|
|
|
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
2020-03-15 08:52:24 -04:00
|
|
|
xmlns="http://maven.apache.org/POM/4.0.0"
|
|
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
|
2019-10-31 21:43:47 -04:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<artifactId>checker-plugin</artifactId>
|
|
|
|
<version>1.0-SNAPSHOT</version>
|
|
|
|
<name>checker-plugin</name>
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
|
|
|
|
<parent>
|
|
|
|
<groupId>com.baeldung</groupId>
|
|
|
|
<artifactId>parent-modules</artifactId>
|
|
|
|
<version>1.0.0-SNAPSHOT</version>
|
|
|
|
</parent>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<!-- Annotations from the Checker Framework: nullness, interning, locking, ... -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.checkerframework</groupId>
|
|
|
|
<artifactId>checker-qual</artifactId>
|
|
|
|
<version>${checker-qual.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.checkerframework</groupId>
|
|
|
|
<artifactId>checker</artifactId>
|
|
|
|
<version>${checker.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.checkerframework</groupId>
|
|
|
|
<artifactId>jdk8</artifactId>
|
|
|
|
<version>${jdk8.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<!-- The Type Annotations compiler. Uncomment if using annotations in comments. -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.checkerframework</groupId>
|
|
|
|
<artifactId>compiler</artifactId>
|
|
|
|
<version>${checkerframework.compiler.version}</version>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
<version>${maven-compiler-plugin.version}</version>
|
|
|
|
<configuration>
|
|
|
|
<source>${java.version}</source>
|
|
|
|
<target>${java.version}</target>
|
|
|
|
<!-- Uncomment the following line to use the type annotations compiler. -->
|
|
|
|
<!-- <fork>true</fork> -->
|
|
|
|
<compilerArguments>
|
|
|
|
<Xmaxerrs>10000</Xmaxerrs>
|
|
|
|
<Xmaxwarns>10000</Xmaxwarns>
|
|
|
|
</compilerArguments>
|
|
|
|
<annotationProcessors>
|
|
|
|
<!-- Add all the checkers you want to enable here -->
|
|
|
|
<annotationProcessor>org.checkerframework.checker.nullness.NullnessChecker</annotationProcessor>
|
|
|
|
<annotationProcessor>org.checkerframework.checker.interning.InterningChecker</annotationProcessor>
|
|
|
|
<annotationProcessor>org.checkerframework.checker.fenum.FenumChecker</annotationProcessor>
|
|
|
|
<annotationProcessor>org.checkerframework.checker.formatter.FormatterChecker</annotationProcessor>
|
|
|
|
<annotationProcessor>org.checkerframework.checker.regex.RegexChecker</annotationProcessor>
|
|
|
|
</annotationProcessors>
|
|
|
|
<compilerArgs>
|
|
|
|
<arg>-AprintErrorStack</arg>
|
|
|
|
|
|
|
|
<!-- location of the annotated JDK, which comes from a Maven dependency -->
|
|
|
|
<arg>-Xbootclasspath/p:${annotatedJdk}</arg>
|
2020-03-15 08:52:24 -04:00
|
|
|
<!-- -->
|
2019-10-31 21:43:47 -04:00
|
|
|
<!-- Uncomment the following line to use the type annotations compiler. -->
|
2020-03-15 08:52:24 -04:00
|
|
|
<!-- <arg>-J-Xbootclasspath/p:${typeAnnotationsJavac}</arg> -->
|
2019-10-31 21:43:47 -04:00
|
|
|
<!-- Uncomment the following line to turn type-checking warnings into errors. -->
|
|
|
|
<arg>-Awarns</arg>
|
|
|
|
</compilerArgs>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
|
|
|
<properties>
|
|
|
|
<!-- These properties will be set by the Maven Dependency plugin -->
|
|
|
|
<annotatedJdk>${org.checkerframework:jdk8:jar}</annotatedJdk>
|
|
|
|
<!-- Uncomment to use the Type Annotations compiler. -->
|
2020-03-15 08:52:24 -04:00
|
|
|
<!-- <typeAnnotationsJavac>${org.checkerframework:compiler:jar}</typeAnnotationsJavac> -->
|
2019-10-31 21:43:47 -04:00
|
|
|
<checker-qual.version>2.3.1</checker-qual.version>
|
|
|
|
<checker.version>2.3.1</checker.version>
|
|
|
|
<jdk8.version>2.3.1</jdk8.version>
|
|
|
|
<checkerframework.compiler.version>2.3.1</checkerframework.compiler.version>
|
|
|
|
</properties>
|
|
|
|
|
2021-05-06 08:31:55 -04:00
|
|
|
</project>
|