Skip to content

Commit 385e3f2

Browse files
authored
Fix Java 25 compatibility during integration tests (#1020)
1 parent 6b34423 commit 385e3f2

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

src/it/MCOMPILER-540/pom.xml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,4 +67,23 @@
6767
</plugin>
6868
</plugins>
6969
</build>
70+
71+
<profiles>
72+
<profile>
73+
<id>java9</id>
74+
<activation>
75+
<jdk>[9,)</jdk>
76+
</activation>
77+
<build>
78+
<plugins>
79+
<plugin>
80+
<artifactId>maven-compiler-plugin</artifactId>
81+
<configuration>
82+
<proc>full</proc>
83+
</configuration>
84+
</plugin>
85+
</plugins>
86+
</build>
87+
</profile>
88+
</profiles>
7089
</project>

0 commit comments

Comments
 (0)