File tree Expand file tree Collapse file tree 1 file changed +27
-1
lines changed Expand file tree Collapse file tree 1 file changed +27
-1
lines changed Original file line number Diff line number Diff line change 27
27
<version .javax-el>2.2</version .javax-el>
28
28
<version .slf4j>2.0.12</version .slf4j>
29
29
30
+ <java11 .opensargs></java11 .opensargs>
30
31
</properties >
31
32
32
33
<!-- Dependencies -->
119
120
<scope >test</scope >
120
121
</dependency >
121
122
</dependencies >
122
- </project >
123
123
124
+ <build >
125
+ <plugins >
126
+ <plugin >
127
+ <groupId >org.apache.maven.plugins</groupId >
128
+ <artifactId >maven-surefire-plugin</artifactId >
129
+ <configuration >
130
+ <argLine >
131
+ ${java11.opensargs}
132
+ </argLine >
133
+ </configuration >
134
+ </plugin >
135
+ </plugins >
136
+ </build >
137
+
138
+ <profiles >
139
+ <profile >
140
+ <id >not-java8</id >
141
+ <activation >
142
+ <jdk >[11,]</jdk >
143
+ </activation >
144
+ <properties >
145
+ <java11 .opensargs>--add-opens java.base/java.lang=ALL-UNNAMED</java11 .opensargs>
146
+ </properties >
147
+ </profile >
148
+ </profiles >
149
+ </project >
You can’t perform that action at this time.
0 commit comments