|
121 | 121 | </executions> |
122 | 122 | </plugin> |
123 | 123 |
|
| 124 | + <plugin> |
| 125 | + <groupId>org.apache.maven.plugins</groupId> |
| 126 | + <artifactId>maven-compiler-plugin</artifactId> |
| 127 | + <version>3.10.1</version> |
| 128 | + <configuration> |
| 129 | + <source>${maven.compiler.source}</source> |
| 130 | + <target>${maven.compiler.target}</target> |
| 131 | + <compilerArgs> |
| 132 | + <arg>-proc:none</arg> |
| 133 | + </compilerArgs> |
| 134 | + </configuration> |
| 135 | + <dependencies> |
| 136 | + <dependency> |
| 137 | + <groupId>org.codehaus.plexus</groupId> |
| 138 | + <artifactId>plexus-compiler-eclipse</artifactId> |
| 139 | + <version>2.8.5</version> |
| 140 | + </dependency> |
| 141 | + </dependencies> |
| 142 | + </plugin> |
| 143 | + <plugin> |
| 144 | + <groupId>org.apache.maven.plugins</groupId> |
| 145 | + <artifactId>maven-javadoc-plugin</artifactId> |
| 146 | + <version>3.4.1</version> |
| 147 | + <executions> |
| 148 | + <execution> |
| 149 | + <id>attach-javadocs</id> |
| 150 | + <phase>verify</phase> |
| 151 | + <goals> |
| 152 | + <goal>jar</goal> |
| 153 | + </goals> |
| 154 | + </execution> |
| 155 | + </executions> |
| 156 | + <configuration> |
| 157 | + <quiet>true</quiet> |
| 158 | + <doclint>none</doclint> |
| 159 | + </configuration> |
| 160 | + </plugin> |
| 161 | + <plugin> |
| 162 | + <groupId>org.apache.maven.plugins</groupId> |
| 163 | + <artifactId>maven-source-plugin</artifactId> |
| 164 | + <version>3.2.1</version> |
| 165 | + <executions> |
| 166 | + <execution> |
| 167 | + <id>attach-sources</id> |
| 168 | + <phase>verify</phase> |
| 169 | + <goals> |
| 170 | + <goal>jar-no-fork</goal> |
| 171 | + </goals> |
| 172 | + </execution> |
| 173 | + </executions> |
| 174 | + </plugin> |
| 175 | + |
124 | 176 | <plugin> |
125 | 177 | <groupId>org.apache.maven.plugins</groupId> |
126 | 178 | <artifactId>maven-enforcer-plugin</artifactId> |
|
180 | 232 | </execution> |
181 | 233 | </executions> |
182 | 234 | </plugin> |
183 | | - |
184 | | - <plugin> |
185 | | - <groupId>org.apache.maven.plugins</groupId> |
186 | | - <artifactId>maven-compiler-plugin</artifactId> |
187 | | - <version>3.10.1</version> |
188 | | - <configuration> |
189 | | - <source>${maven.compiler.source}</source> |
190 | | - <target>${maven.compiler.target}</target> |
191 | | - <compilerArgs> |
192 | | - <arg>-proc:none</arg> |
193 | | - </compilerArgs> |
194 | | - </configuration> |
195 | | - <dependencies> |
196 | | - <dependency> |
197 | | - <groupId>org.codehaus.plexus</groupId> |
198 | | - <artifactId>plexus-compiler-eclipse</artifactId> |
199 | | - <version>2.8.5</version> |
200 | | - </dependency> |
201 | | - </dependencies> |
202 | | - </plugin> |
203 | | - <plugin> |
204 | | - <groupId>org.apache.maven.plugins</groupId> |
205 | | - <artifactId>maven-javadoc-plugin</artifactId> |
206 | | - <version>3.4.1</version> |
207 | | - <executions> |
208 | | - <execution> |
209 | | - <id>attach-javadocs</id> |
210 | | - <phase>verify</phase> |
211 | | - <goals> |
212 | | - <goal>jar</goal> |
213 | | - </goals> |
214 | | - </execution> |
215 | | - </executions> |
216 | | - <configuration> |
217 | | - <quiet>true</quiet> |
218 | | - <doclint>none</doclint> |
219 | | - </configuration> |
220 | | - </plugin> |
221 | | - <plugin> |
222 | | - <groupId>org.apache.maven.plugins</groupId> |
223 | | - <artifactId>maven-source-plugin</artifactId> |
224 | | - <version>3.2.1</version> |
225 | | - <executions> |
226 | | - <execution> |
227 | | - <id>attach-sources</id> |
228 | | - <phase>verify</phase> |
229 | | - <goals> |
230 | | - <goal>jar-no-fork</goal> |
231 | | - </goals> |
232 | | - </execution> |
233 | | - </executions> |
234 | | - </plugin> |
235 | 235 | </plugins> |
236 | 236 | </build> |
237 | 237 | <profiles> |
|
290 | 290 | </dependencies> |
291 | 291 | </profile> |
292 | 292 |
|
293 | | - <profile> |
294 | | - <id>xdev-ide</id> |
295 | | - <build> |
296 | | - <plugins> |
297 | | - <plugin> |
298 | | - |
299 | | - <artifactId>maven-assembly-plugin</artifactId> |
300 | | - <configuration> |
301 | | - <descriptorRefs> |
302 | | - <descriptorRef>jar-with-dependencies</descriptorRef> |
303 | | - </descriptorRefs> |
304 | | - </configuration> |
305 | | - <executions> |
306 | | - <execution> |
307 | | - <id>make-assembly</id> |
308 | | - <phase>package</phase> |
309 | | - <goals> |
310 | | - <goal>single</goal> |
311 | | - </goals> |
312 | | - </execution> |
313 | | - </executions> |
314 | | - </plugin> |
315 | | - |
316 | | - </plugins> |
317 | | - </build> |
318 | | - |
319 | | - </profile> |
320 | | - |
321 | | - |
322 | 293 | <profile> |
323 | 294 | <id>ossrh</id> |
324 | 295 | <build> |
|
0 commit comments