|
5 | 5 | xsi:schemaLocation=" |
6 | 6 | http://maven.apache.org/POM/4.0.0 |
7 | 7 | http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
8 | | - <groupId>us.codecraft</groupId> |
9 | | - <version>0.10.3</version> |
10 | 8 | <modelVersion>4.0.0</modelVersion> |
| 9 | + <parent> |
| 10 | + <groupId>org.oxerr</groupId> |
| 11 | + <artifactId>oxerr-parent</artifactId> |
| 12 | + <version>2.1.0</version> |
| 13 | + </parent> |
| 14 | + <groupId>us.codecraft</groupId> |
| 15 | + <version>1.0.0-SNAPSHOT</version> |
11 | 16 | <packaging>pom</packaging> |
12 | 17 | <properties> |
13 | 18 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
|
272 | 277 |
|
273 | 278 | <build> |
274 | 279 | <plugins> |
275 | | - <plugin> |
276 | | - <groupId>org.apache.maven.plugins</groupId> |
277 | | - <artifactId>maven-enforcer-plugin</artifactId> |
278 | | - <executions> |
279 | | - <execution> |
280 | | - <id>enforce-maven</id> |
281 | | - <goals> |
282 | | - <goal>enforce</goal> |
283 | | - </goals> |
284 | | - <configuration> |
285 | | - <rules> |
286 | | - <requireMavenVersion> |
287 | | - <version>3.6.3</version> |
288 | | - </requireMavenVersion> |
289 | | - </rules> |
290 | | - </configuration> |
291 | | - </execution> |
292 | | - </executions> |
293 | | - </plugin> |
294 | | - <plugin> |
295 | | - <groupId>org.apache.maven.plugins</groupId> |
296 | | - <artifactId>maven-surefire-plugin</artifactId> |
297 | | - </plugin> |
298 | | - <plugin> |
299 | | - <groupId>org.apache.maven.plugins</groupId> |
300 | | - <artifactId>maven-compiler-plugin</artifactId> |
301 | | - </plugin> |
302 | | - <!--<plugin>--> |
303 | | - <!--<groupId>org.apache.maven.plugins</groupId>--> |
304 | | - <!--<artifactId>maven-dependency-plugin</artifactId>--> |
305 | | - <!--<version>2.8</version>--> |
306 | | - <!--<executions>--> |
307 | | - <!--<execution>--> |
308 | | - <!--<id>copy-dependencies</id>--> |
309 | | - <!--<phase>package</phase>--> |
310 | | - <!--<goals>--> |
311 | | - <!--<goal>copy-dependencies</goal>--> |
312 | | - <!--</goals>--> |
313 | | - <!--<configuration>--> |
314 | | - <!--<outputDirectory>${project.build.directory}/lib</outputDirectory>--> |
315 | | - <!--<overWriteReleases>false</overWriteReleases>--> |
316 | | - <!--<overWriteSnapshots>false</overWriteSnapshots>--> |
317 | | - <!--<overWriteIfNewer>true</overWriteIfNewer>--> |
318 | | - <!--</configuration>--> |
319 | | - <!--</execution>--> |
320 | | - <!--</executions>--> |
321 | | - <!--</plugin>--> |
322 | | - <plugin> |
323 | | - <groupId>org.apache.maven.plugins</groupId> |
324 | | - <artifactId>maven-resources-plugin</artifactId> |
325 | | - </plugin> |
326 | | - <plugin> |
327 | | - <groupId>org.apache.maven.plugins</groupId> |
328 | | - <artifactId>maven-jar-plugin</artifactId> |
329 | | - </plugin> |
330 | | - <plugin> |
331 | | - <groupId>org.apache.maven.plugins</groupId> |
332 | | - <artifactId>maven-source-plugin</artifactId> |
333 | | - <executions> |
334 | | - <execution> |
335 | | - <id>attach-sources</id> |
336 | | - <goals> |
337 | | - <goal>jar</goal> |
338 | | - </goals> |
339 | | - </execution> |
340 | | - </executions> |
341 | | - </plugin> |
342 | 280 | <plugin> |
343 | 281 | <groupId>org.apache.maven.plugins</groupId> |
344 | 282 | <artifactId>maven-javadoc-plugin</artifactId> |
|
366 | 304 | </execution> |
367 | 305 | </executions> |
368 | 306 | </plugin> |
369 | | - <plugin> |
370 | | - <groupId>org.apache.maven.plugins</groupId> |
371 | | - <artifactId>maven-release-plugin</artifactId> |
372 | | - </plugin> |
373 | 307 | <plugin> |
374 | 308 | <groupId>org.jacoco</groupId> |
375 | 309 | <artifactId>jacoco-maven-plugin</artifactId> |
|
398 | 332 | </configuration> |
399 | 333 | </plugin> |
400 | 334 | </plugins> |
401 | | - <pluginManagement> |
402 | | - <plugins> |
403 | | - <plugin> |
404 | | - <groupId>org.apache.maven.plugins</groupId> |
405 | | - <artifactId>maven-clean-plugin</artifactId> |
406 | | - <version>3.3.2</version> |
407 | | - </plugin> |
408 | | - <plugin> |
409 | | - <groupId>org.apache.maven.plugins</groupId> |
410 | | - <artifactId>maven-compiler-plugin</artifactId> |
411 | | - <version>3.13.0</version> |
412 | | - </plugin> |
413 | | - <plugin> |
414 | | - <groupId>org.apache.maven.plugins</groupId> |
415 | | - <artifactId>maven-deploy-plugin</artifactId> |
416 | | - <version>3.1.1</version> |
417 | | - </plugin> |
418 | | - <plugin> |
419 | | - <groupId>org.apache.maven.plugins</groupId> |
420 | | - <artifactId>maven-enforcer-plugin</artifactId> |
421 | | - <version>3.4.1</version> |
422 | | - </plugin> |
423 | | - <plugin> |
424 | | - <groupId>org.apache.maven.plugins</groupId> |
425 | | - <artifactId>maven-install-plugin</artifactId> |
426 | | - <version>3.1.1</version> |
427 | | - </plugin> |
428 | | - <plugin> |
429 | | - <groupId>org.apache.maven.plugins</groupId> |
430 | | - <artifactId>maven-jar-plugin</artifactId> |
431 | | - <version>3.4.1</version> |
432 | | - </plugin> |
433 | | - <plugin> |
434 | | - <groupId>org.apache.maven.plugins</groupId> |
435 | | - <artifactId>maven-javadoc-plugin</artifactId> |
436 | | - <version>3.6.3</version> |
437 | | - </plugin> |
438 | | - <plugin> |
439 | | - <groupId>org.apache.maven.plugins</groupId> |
440 | | - <artifactId>maven-jxr-plugin</artifactId> |
441 | | - <version>3.3.2</version> |
442 | | - </plugin> |
443 | | - <plugin> |
444 | | - <groupId>org.apache.maven.plugins</groupId> |
445 | | - <artifactId>maven-pmd-plugin</artifactId> |
446 | | - <version>3.21.2</version> |
447 | | - </plugin> |
448 | | - <plugin> |
449 | | - <groupId>org.apache.maven.plugins</groupId> |
450 | | - <artifactId>maven-release-plugin</artifactId> |
451 | | - <version>3.0.1</version> |
452 | | - </plugin> |
453 | | - <plugin> |
454 | | - <groupId>org.apache.maven.plugins</groupId> |
455 | | - <artifactId>maven-resources-plugin</artifactId> |
456 | | - <version>3.3.1</version> |
457 | | - </plugin> |
458 | | - <plugin> |
459 | | - <groupId>org.apache.maven.plugins</groupId> |
460 | | - <artifactId>maven-site-plugin</artifactId> |
461 | | - <version>4.0.0-M13</version> |
462 | | - </plugin> |
463 | | - <plugin> |
464 | | - <groupId>org.apache.maven.plugins</groupId> |
465 | | - <artifactId>maven-source-plugin</artifactId> |
466 | | - <version>3.3.0</version> |
467 | | - </plugin> |
468 | | - <plugin> |
469 | | - <groupId>org.apache.maven.plugins</groupId> |
470 | | - <artifactId>maven-surefire-plugin</artifactId> |
471 | | - <version>3.2.5</version> |
472 | | - </plugin> |
473 | | - <plugin> |
474 | | - <groupId>org.apache.maven.plugins</groupId> |
475 | | - <artifactId>maven-surefire-report-plugin</artifactId> |
476 | | - <version>3.2.5</version> |
477 | | - </plugin> |
478 | | - <plugin> |
479 | | - <groupId>org.codehaus.mojo</groupId> |
480 | | - <artifactId>taglist-maven-plugin</artifactId> |
481 | | - <version>3.0.0</version> |
482 | | - </plugin> |
483 | | - <plugin> |
484 | | - <groupId>org.jacoco</groupId> |
485 | | - <artifactId>jacoco-maven-plugin</artifactId> |
486 | | - <version>0.8.12</version> |
487 | | - </plugin> |
488 | | - <plugin> |
489 | | - <groupId>com.amashchenko.maven.plugin</groupId> |
490 | | - <artifactId>gitflow-maven-plugin</artifactId> |
491 | | - <version>1.21.0</version> |
492 | | - </plugin> |
493 | | - <plugin> |
494 | | - <groupId>com.github.spotbugs</groupId> |
495 | | - <artifactId>spotbugs-maven-plugin</artifactId> |
496 | | - <version>4.8.4.0</version> |
497 | | - </plugin> |
498 | | - </plugins> |
499 | | - </pluginManagement> |
500 | 335 | </build> |
501 | 336 |
|
502 | | - <reporting> |
503 | | - <plugins> |
504 | | - <plugin> |
505 | | - <groupId>org.apache.maven.plugins</groupId> |
506 | | - <artifactId>maven-javadoc-plugin</artifactId> |
507 | | - <configuration> |
508 | | - <doclint>none</doclint> |
509 | | - </configuration> |
510 | | - </plugin> |
511 | | - <plugin> |
512 | | - <groupId>org.apache.maven.plugins</groupId> |
513 | | - <artifactId>maven-jxr-plugin</artifactId> |
514 | | - </plugin> |
515 | | - <plugin> |
516 | | - <groupId>org.apache.maven.plugins</groupId> |
517 | | - <artifactId>maven-pmd-plugin</artifactId> |
518 | | - </plugin> |
519 | | - <plugin> |
520 | | - <groupId>org.apache.maven.plugins</groupId> |
521 | | - <artifactId>maven-surefire-report-plugin</artifactId> |
522 | | - </plugin> |
523 | | - <plugin> |
524 | | - <groupId>org.codehaus.mojo</groupId> |
525 | | - <artifactId>taglist-maven-plugin</artifactId> |
526 | | - </plugin> |
527 | | - <plugin> |
528 | | - <groupId>com.github.spotbugs</groupId> |
529 | | - <artifactId>spotbugs-maven-plugin</artifactId> |
530 | | - </plugin> |
531 | | - </plugins> |
532 | | - </reporting> |
533 | | - |
534 | | - <profiles> |
535 | | - <profile> |
536 | | - <id>release</id> |
537 | | - <build> |
538 | | - <plugins> |
539 | | - <!-- Source --> |
540 | | - <plugin> |
541 | | - <groupId>org.apache.maven.plugins</groupId> |
542 | | - <artifactId>maven-source-plugin</artifactId> |
543 | | - <version>3.3.0</version> |
544 | | - <executions> |
545 | | - <execution> |
546 | | - <phase>package</phase> |
547 | | - <goals> |
548 | | - <goal>jar-no-fork</goal> |
549 | | - </goals> |
550 | | - </execution> |
551 | | - </executions> |
552 | | - </plugin> |
553 | | - <!-- Javadoc --> |
554 | | - <plugin> |
555 | | - <groupId>org.apache.maven.plugins</groupId> |
556 | | - <artifactId>maven-javadoc-plugin</artifactId> |
557 | | - <version>3.4.1</version> |
558 | | - <executions> |
559 | | - <execution> |
560 | | - <phase>package</phase> |
561 | | - <goals> |
562 | | - <goal>jar</goal> |
563 | | - </goals> |
564 | | - </execution> |
565 | | - </executions> |
566 | | - </plugin> |
567 | | - <!-- GPG --> |
568 | | - <plugin> |
569 | | - <groupId>org.apache.maven.plugins</groupId> |
570 | | - <artifactId>maven-gpg-plugin</artifactId> |
571 | | - <version>3.2.4</version> |
572 | | - <executions> |
573 | | - <execution> |
574 | | - <phase>verify</phase> |
575 | | - <goals> |
576 | | - <goal>sign</goal> |
577 | | - </goals> |
578 | | - </execution> |
579 | | - </executions> |
580 | | - </plugin> |
581 | | - <plugin> |
582 | | - <groupId>org.sonatype.plugins</groupId> |
583 | | - <artifactId>nexus-staging-maven-plugin</artifactId> |
584 | | - <version>1.6.13</version> |
585 | | - <extensions>true</extensions> |
586 | | - <configuration> |
587 | | - <serverId>sonatype-nexus-staging</serverId> |
588 | | - <nexusUrl>https://oss.sonatype.org/</nexusUrl> |
589 | | - <autoReleaseAfterClose>true</autoReleaseAfterClose> |
590 | | - </configuration> |
591 | | - </plugin> |
592 | | - </plugins> |
593 | | - </build> |
594 | | - <distributionManagement> |
595 | | - <snapshotRepository> |
596 | | - <id>sonatype-nexus-snapshots</id> |
597 | | - <url>https://oss.sonatype.org/content/repositories/snapshots/</url> |
598 | | - </snapshotRepository> |
599 | | - <repository> |
600 | | - <id>sonatype-nexus-staging</id> |
601 | | - <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> |
602 | | - </repository> |
603 | | - </distributionManagement> |
604 | | - </profile> |
605 | | - </profiles> |
606 | 337 | </project> |
0 commit comments