Skip to content

Commit

Permalink
ID-3456: Support native image build (-parameters) (#73)
Browse files Browse the repository at this point in the history
  • Loading branch information
oyri authored Oct 24, 2023
1 parent 6aa5347 commit 44be41a
Showing 1 changed file with 16 additions and 1 deletion.
17 changes: 16 additions & 1 deletion idporten-access-log-spring-boot-3-starter/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -82,5 +82,20 @@
</dependency>

</dependencies>

<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>${maven-compiler-plugin.version}</version>
<configuration>
<source>${java.version}</source>
<target>${java.version}</target>
<compilerArgs>
<arg>-parameters</arg>
</compilerArgs>
</configuration>
</plugin>
</plugins>
</build>
</project>

0 comments on commit 44be41a

Please sign in to comment.