diff options
Diffstat (limited to 'eaaf_core_api/pom.xml')
-rw-r--r-- | eaaf_core_api/pom.xml | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/eaaf_core_api/pom.xml b/eaaf_core_api/pom.xml index ce140dea..8cf64e77 100644 --- a/eaaf_core_api/pom.xml +++ b/eaaf_core_api/pom.xml @@ -48,6 +48,10 @@ <groupId>com.google.code.findbugs</groupId> <artifactId>jsr305</artifactId> </dependency> + <dependency> + <groupId>com.fasterxml.jackson.core</groupId> + <artifactId>jackson-annotations</artifactId> + </dependency> <dependency> <groupId>javax.servlet</groupId> <artifactId>javax.servlet-api</artifactId> @@ -63,6 +67,19 @@ <directory>src/main/resources</directory> </resource> </resources> + + <plugins> + <plugin> + <groupId>com.github.spotbugs</groupId> + <artifactId>spotbugs-maven-plugin</artifactId> + <version>${spotbugs-maven-plugin.version}</version> + <configuration> + <failOnError>true</failOnError> + <excludeFilterFile>checks/spotbugs-exclude.xml</excludeFilterFile> + </configuration> + </plugin> + </plugins> + </build> </project> |