Skip to content

Commit f4eb49e

Browse files
committed
use relative path instead of parent path for spotbugs filter
1 parent 2692177 commit f4eb49e

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

aws-serverless-java-container-springboot3/pom.xml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@
33
<parent>
44
<artifactId>aws-serverless-java-container</artifactId>
55
<groupId>com.amazonaws.serverless</groupId>
6-
<version>2.1.5</version>
6+
<version>2.1.5-SNAPSHOT</version>
7+
<relativePath>..</relativePath>
78
</parent>
89
<modelVersion>4.0.0</modelVersion>
910

@@ -29,12 +30,12 @@
2930
<dependency>
3031
<groupId>com.amazonaws.serverless</groupId>
3132
<artifactId>aws-serverless-java-container-core</artifactId>
32-
<version>2.1.5</version>
33+
<version>2.1.5-SNAPSHOT</version>
3334
</dependency>
3435
<dependency>
3536
<groupId>com.amazonaws.serverless</groupId>
3637
<artifactId>aws-serverless-java-container-core</artifactId>
37-
<version>2.1.5</version>
38+
<version>2.1.5-SNAPSHOT</version>
3839
<classifier>tests</classifier>
3940
<type>test-jar</type>
4041
<scope>test</scope>

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -267,7 +267,7 @@
267267
<xmlOutput>true</xmlOutput>
268268
<!-- Configures the directory in which the XML report is created -->
269269
<spotbugsXmlOutputDirectory>${project.build.directory}/spotbugs</spotbugsXmlOutputDirectory>
270-
<excludeFilterFile>${project.parent.basedir}/spotbugs-excludeFilter.xml</excludeFilterFile>
270+
<excludeFilterFile>${project.basedir}/../spotbugs-excludeFilter.xml</excludeFilterFile>
271271
<plugins>
272272
<plugin>
273273
<groupId>com.h3xstream.findsecbugs</groupId>

0 commit comments

Comments
 (0)