Skip to content

Commit

Permalink
net-sf-ucanaccess-fork: Configure maven-compiler-plugin to issue all …
Browse files Browse the repository at this point in the history
…warnings
  • Loading branch information
spannm committed Feb 13, 2024
1 parent 28ef6b1 commit 7fc4394
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@
<connection>scm:git:ssh//git@github.com/${developerId}/${project.artifactId}.git</connection>
<developerConnection>scm:git:ssh://git@github.com/${developerId}/${project.artifactId}.git</developerConnection>
<url>https://github.com/${developerId}/${project.artifactId}/tree/master</url>
</scm>
</scm>

<distributionManagement>
<snapshotRepository>
Expand All @@ -81,6 +81,7 @@

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>

<project.build.systemJdk>11</project.build.systemJdk>
<project.build.targetJdk>11</project.build.targetJdk>

Expand Down Expand Up @@ -215,6 +216,13 @@
<pluginManagement>
<plugins>

<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<compilerArgument>-Xlint:all</compilerArgument>
</configuration>
</plugin>

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
Expand Down

0 comments on commit 7fc4394

Please sign in to comment.