File tree 1 file changed +18
-16
lines changed
1 file changed +18
-16
lines changed Original file line number Diff line number Diff line change 151
151
<artifactId >maven-compiler-plugin</artifactId >
152
152
<version >3.8.1</version >
153
153
<configuration >
154
- <!-- parent pom 1.11 forces version instead of using property -->
155
- <source >${jdkTarget} </source >
156
- <target >${jdkTarget} </target >
154
+ <source >8</source >
155
+ <target >8</target >
157
156
</configuration >
157
+ <executions >
158
+ <execution >
159
+ <id >default-compile</id >
160
+ <configuration >
161
+ <source >${jdkTarget} </source >
162
+ <target >${jdkTarget} </target >
163
+ </configuration >
164
+ </execution >
165
+ <execution >
166
+ <id >default-testCompile</id >
167
+ <configuration >
168
+ <source >1.8</source >
169
+ <target >1.8</target >
170
+ </configuration >
171
+ </execution >
172
+ </executions >
158
173
</plugin >
159
174
<plugin >
160
175
<groupId >org.apache.felix</groupId >
364
379
</dependency >
365
380
</dependencies >
366
381
367
- <profiles >
368
- <profile >
369
- <id >jdk15+</id >
370
- <activation >
371
- <jdk >[15,)</jdk >
372
- </activation >
373
- <properties >
374
- <jdkTarget >1.7</jdkTarget >
375
- <javadocSource >7</javadocSource >
376
- </properties >
377
- </profile >
378
- </profiles >
379
-
380
382
</project >
You can’t perform that action at this time.
0 commit comments