Skip to content

Commit

Permalink
Include parameters when compiling (fixes #94)
Browse files Browse the repository at this point in the history
  • Loading branch information
geirsagberg committed Mar 22, 2024
1 parent 3f272b7 commit a32c770
Showing 1 changed file with 10 additions and 5 deletions.
15 changes: 10 additions & 5 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://maven.apache.org/POM/4.0.0"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>no.bekk.db-scheduler-ui</groupId>
Expand Down Expand Up @@ -104,6 +104,9 @@
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.10.1</version>
<configuration>
<compilerArgument>-parameters</compilerArgument>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
Expand Down Expand Up @@ -151,8 +154,8 @@
<version>1.16.0</version>
<style>GOOGLE</style>
</googleJavaFormat>
<importOrder />
<removeUnusedImports />
<importOrder/>
<removeUnusedImports/>
<toggleOffOn/>
<trimTrailingWhitespace/>
<endWithNewline/>
Expand Down Expand Up @@ -209,7 +212,9 @@
<maven-central>
<active>ALWAYS</active>
<url>https://oss.sonatype.org/service/local/</url>
<snapshotUrl>https://oss.sonatype.org/content/repositories/snapshots</snapshotUrl>
<snapshotUrl>
https://oss.sonatype.org/content/repositories/snapshots
</snapshotUrl>
<closeRepository>true</closeRepository>
<releaseRepository>false</releaseRepository>
<stagingRepositories>target/staging-deploy</stagingRepositories>
Expand Down

0 comments on commit a32c770

Please sign in to comment.