Skip to content

Commit 0e7ae45

Browse files
authored
Enhance Maven compiler plugin configuration (#308)
Added fork option and custom compiler arguments to Maven compiler plugin configuration. Signed-off-by: RamukaRitik <ritik.ramuka@docusign.com>
1 parent f9867f1 commit 0e7ae45

1 file changed

Lines changed: 7 additions & 2 deletions

File tree

pom.xml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -210,8 +210,13 @@
210210
<artifactId>maven-compiler-plugin</artifactId>
211211
<version>3.6.1</version>
212212
<configuration>
213-
<source>1.8</source>
214-
<target>1.8</target>
213+
<source>1.8</source>
214+
<target>1.8</target>
215+
<fork>true</fork>
216+
<executable>javac</executable>
217+
<compilerArgs>
218+
<arg>-J-Xss4m</arg>
219+
</compilerArgs>
215220
</configuration>
216221
</plugin>
217222
<plugin>

0 commit comments

Comments
 (0)