Skip to content

Commit 64f6b5b

Browse files
committed
Improve protection against Java Annotation Processor Supply chain attack scenarios
1 parent ac1fefc commit 64f6b5b

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

vaadin-addon-template-demo/pom.xml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -96,6 +96,9 @@
9696
<version>3.10.1</version>
9797
<configuration>
9898
<release>${maven.compiler.release}</release>
99+
<compilerArgs>
100+
<arg>-proc:none</arg>
101+
</compilerArgs>
99102
</configuration>
100103
</plugin>
101104
<plugin>

vaadin-addon-template/pom.xml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -153,6 +153,9 @@
153153
<version>3.10.1</version>
154154
<configuration>
155155
<release>${maven.compiler.release}</release>
156+
<compilerArgs>
157+
<arg>-proc:none</arg>
158+
</compilerArgs>
156159
</configuration>
157160
</plugin>
158161
<plugin>

0 commit comments

Comments
 (0)