File tree Expand file tree Collapse file tree 2 files changed +29
-2
lines changed
apm-sdk-plugin/spring-plugins/spring-webflux-6.x-webclient-plugin
bootstrap-plugins/jdk-http-plugin Expand file tree Collapse file tree 2 files changed +29
-2
lines changed Original file line number Diff line number Diff line change 28
28
<artifactId >spring-webflux-6.x-webclient-plugin</artifactId >
29
29
30
30
<url >http://maven.apache.org</url >
31
+ <properties >
32
+ <maven .compiler.source>17</maven .compiler.source>
33
+ <maven .compiler.target>17</maven .compiler.target>
34
+ </properties >
35
+
36
+ <build >
37
+ <plugins >
38
+ <plugin >
39
+ <groupId >org.apache.maven.plugins</groupId >
40
+ <artifactId >maven-compiler-plugin</artifactId >
41
+ <configuration >
42
+ <release >${maven.compiler.release} </release >
43
+ <source >${maven.compiler.source} </source >
44
+ <target >${maven.compiler.target} </target >
45
+ </configuration >
46
+ </plugin >
47
+
48
+ <plugin >
49
+ <groupId >org.apache.maven.plugins</groupId >
50
+ <artifactId >maven-javadoc-plugin</artifactId >
51
+ <configuration >
52
+ <source >${maven.compiler.source} </source >
53
+ <encoding >${project.build.sourceEncoding} </encoding >
54
+ </configuration >
55
+ </plugin >
56
+ </plugins >
57
+ </build >
31
58
32
59
<dependencies >
33
60
<dependency >
Original file line number Diff line number Diff line change 44
44
<plugin >
45
45
<groupId >org.apache.maven.plugins</groupId >
46
46
<artifactId >maven-compiler-plugin</artifactId >
47
- <version >3.11.0</version >
48
47
<configuration >
49
- <release >17</release >
48
+ <source >${maven.compiler.source} </source >
49
+ <target >${maven.compiler.target} </target >
50
50
<compilerArgs >
51
51
<arg >--add-exports</arg >
52
52
<arg >java.base/sun.net.www=ALL-UNNAMED</arg >
You can’t perform that action at this time.
0 commit comments