File tree Expand file tree Collapse file tree 2 files changed +35
-4
lines changed Expand file tree Collapse file tree 2 files changed +35
-4
lines changed Original file line number Diff line number Diff line change 148
148
<goal >jar-no-fork</goal >
149
149
</goals >
150
150
</execution >
151
- </executions >
152
- <configuration >
153
- <failOnError >false</failOnError >
154
- </configuration >
151
+ </executions >
155
152
</plugin >
156
153
157
154
<plugin >
Original file line number Diff line number Diff line change 96
96
97
97
</dependencies >
98
98
99
+ <build >
100
+ <plugins >
101
+ <plugin >
102
+ <groupId >org.apache.maven.plugins</groupId >
103
+ <artifactId >maven-compiler-plugin</artifactId >
104
+ <version >3.14.0</version >
105
+ <configuration >
106
+ <source >17</source >
107
+ <target >17</target >
108
+ <testSource >17</testSource >
109
+ <testTarget >17</testTarget >
110
+ <encoding >UTF-8</encoding >
111
+ <parameters >true</parameters >
112
+ </configuration >
113
+ </plugin >
114
+ <plugin >
115
+ <groupId >org.apache.maven.plugins</groupId >
116
+ <artifactId >maven-javadoc-plugin</artifactId >
117
+ <version >3.11.1</version >
118
+ <executions >
119
+ <execution >
120
+ <id >attach-javadocs</id >
121
+ <goals >
122
+ <goal >jar</goal >
123
+ </goals >
124
+ <configuration >
125
+ <sourcepath >${project.build.sourceDirectory}${path.separator} ../wamp2spring-core/src/main/java</sourcepath >
126
+ <failOnError >false</failOnError >
127
+ </configuration >
128
+ </execution >
129
+ </executions >
130
+ </plugin >
131
+ </plugins >
132
+ </build >
99
133
</project >
You can’t perform that action at this time.
0 commit comments