Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump io.inscopemetrics.build:parent-pom from 2.4.1 to 2.5.0 #16

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .jdkw
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
JDKW_RELEASE=latest
JDKW_DIST=zulu
JDKW_BUILD=17.40.19-ca
JDKW_VERSION=17.0.6
JDKW_BUILD=21.32.17-ca
JDKW_VERSION=21.0.2
2 changes: 1 addition & 1 deletion maven/maven-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#Maven download properties
#Thu Jan 26 14:52:42 PST 2023
distributionUrl=https\://repo1.maven.org/maven2/org/apache/maven/apache-maven/3.8.7/apache-maven-3.8.7-bin.zip
distributionUrl=https\://repo1.maven.org/maven2/org/apache/maven/apache-maven/3.9.6/apache-maven-3.9.6-bin.zip
verifyDownload=true
checksumAlgorithm=SHA1
14 changes: 13 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
<parent>
<groupId>io.inscopemetrics.build</groupId>
<artifactId>parent-pom</artifactId>
<version>2.4.1</version>
<version>2.5.1</version>
<relativePath />
</parent>

Expand Down Expand Up @@ -81,6 +81,18 @@
<build>
<plugins>
<!-- Project Specific Plugins -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<showDeprecation>true</showDeprecation>
<showWarnings>true</showWarnings>
<compilerArgs>
<arg>-Xlint:all</arg>
<arg>-Xlint:-processing</arg>
</compilerArgs>
</configuration>
</plugin>
<plugin>
<groupId>com.github.os72</groupId>
<artifactId>protoc-jar-maven-plugin</artifactId>
Expand Down
8 changes: 7 additions & 1 deletion spotbugs.exclude.xml
Original file line number Diff line number Diff line change
Expand Up @@ -80,5 +80,11 @@
<Bug pattern="MS_EXPOSE_REP"/>
</Or>
</Match>

<!-- Ignore generated sources -->
<Match>
<Or>
<Source name="~.*generated.*" />
<Class name="~.*io\.inscopemetrics\.kairosdb\.proto\..*" />
</Or>
</Match>
</FindBugsFilter>
Loading