|
121 | 121 | <artifactId>spring-boot-properties-migrator</artifactId>
|
122 | 122 | <scope>runtime</scope>
|
123 | 123 | </dependency>
|
124 |
| - <!-- |
125 |
| - <dependency> |
126 |
| - <groupId>org.springframework.boot</groupId> |
127 |
| - <artifactId>spring-boot-starter-data-jdbc</artifactId> |
128 |
| - </dependency> |
129 |
| - --> |
130 |
| - <dependency> |
131 |
| - <groupId>org.springframework.boot</groupId> |
132 |
| - <artifactId>spring-boot-starter-data-jpa</artifactId> |
133 |
| - </dependency> |
134 |
| - <!-- |
135 |
| - <dependency> |
136 |
| - <groupId>org.springframework.boot</groupId> |
137 |
| - <artifactId>spring-boot-starter-data-solr</artifactId> |
138 |
| - </dependency> |
139 |
| - --> |
| 124 | + <dependency> |
| 125 | + <groupId>org.springframework.boot</groupId> |
| 126 | + <artifactId>spring-boot-starter-data-jpa</artifactId> |
| 127 | + </dependency> |
140 | 128 | <dependency>
|
141 | 129 | <groupId>org.springframework.boot</groupId>
|
142 | 130 | <artifactId>spring-boot-starter-web</artifactId>
|
|
326 | 314 | <detachedMode>true</detachedMode>
|
327 | 315 | </configuration>
|
328 | 316 | </plugin>
|
| 317 | + <plugin> |
| 318 | + <groupId>org.apache.maven.plugins</groupId> |
| 319 | + <artifactId>maven-dependency-plugin</artifactId> |
| 320 | + <executions> |
| 321 | + <execution> |
| 322 | + <id>unpack-dependencies</id> |
| 323 | + <phase>pre-site</phase> |
| 324 | + <goals> |
| 325 | + <goal>analyze-only</goal> |
| 326 | + <goal>analyze-dep-mgt</goal> |
| 327 | + <goal>analyze-report</goal> |
| 328 | + <goal>sources</goal> |
| 329 | + <goal>resolve</goal> |
| 330 | + <goal>resolve-plugins</goal> |
| 331 | + <goal>collect</goal> |
| 332 | + <goal>copy-dependencies</goal> |
| 333 | + <goal>unpack-dependencies</goal> |
| 334 | + <goal>build-classpath</goal> |
| 335 | + </goals> |
| 336 | + <configuration> |
| 337 | + <overWriteReleases>true</overWriteReleases> |
| 338 | + <overWriteSnapshots>true</overWriteSnapshots> |
| 339 | + <outputFile>${project.build.outputDirectory}/classpath.txt</outputFile> |
| 340 | + <failOnWarning>false</failOnWarning> |
| 341 | + <ignoredDependencies> |
| 342 | + <ignoredDependency>org.apache.maven.plugins:maven-surefire-plugin</ignoredDependency> |
| 343 | + <!-- |
| 344 | + <ignoredDependency>org.apache.maven.scm:maven-scm</ignoredDependency> |
| 345 | + <ignoredDependency>org.apache.maven.scm:maven-scm-providers-git</ignoredDependency> |
| 346 | + <ignoredDependency>org.apache.maven.scm:maven-scm-providers-standard</ignoredDependency> |
| 347 | + <ignoredDependency>org.apache.maven.scm:maven-scm-providers</ignoredDependency> |
| 348 | + <ignoredDependency>org.apache.maven.scm:maven-scm-managers</ignoredDependency> |
| 349 | + --> |
| 350 | + </ignoredDependencies> |
| 351 | + <ignoredUsedUndeclaredDependencies> |
| 352 | + <ignoredUsedUndeclaredDependency>org.apache.maven.plugins:maven-surefire-plugin</ignoredUsedUndeclaredDependency> |
| 353 | + </ignoredUsedUndeclaredDependencies> |
| 354 | + <ignoredUnusedDeclaredDependencies> |
| 355 | + <ignoredUnusedDeclaredDependency>org.apache.maven.plugins:maven-surefire-plugin</ignoredUnusedDeclaredDependency> |
| 356 | + </ignoredUnusedDeclaredDependencies> |
| 357 | + </configuration> |
| 358 | + </execution> |
| 359 | + <execution> |
| 360 | + <id>check-dependencies1</id> |
| 361 | + <phase>pre-site</phase> |
| 362 | + <goals> |
| 363 | + <goal>list</goal> |
| 364 | + <goal>list-repositories</goal> |
| 365 | + <goal>properties</goal> |
| 366 | + </goals> |
| 367 | + </execution> |
| 368 | + <execution> |
| 369 | + <id>check-dependencies2</id> |
| 370 | + <phase>pre-site</phase> |
| 371 | + <goals> |
| 372 | + <goal>analyze</goal> |
| 373 | + <goal>analyze-dep-mgt</goal> |
| 374 | + <goal>analyze-duplicate</goal> |
| 375 | + <goal>analyze-report</goal> |
| 376 | + </goals> |
| 377 | + </execution> |
| 378 | + <execution> |
| 379 | + <id>check-dependencies3</id> |
| 380 | + <phase>verify</phase> |
| 381 | + <goals> |
| 382 | + <goal>tree</goal> |
| 383 | + </goals> |
| 384 | + </execution> |
| 385 | + <execution> |
| 386 | + <id>report</id> |
| 387 | + <phase>site</phase> |
| 388 | + <configuration> |
| 389 | + <excludeGroupIds>org.webjars,org.jclouds,org.jboss.as,xml-resolver,commons-configuration,org.codehaus.plexus,commons-digester,junit,log4j,io.openliberty.features</excludeGroupIds> |
| 390 | + <excludeArtifactIds>weld-probe-core,commons-configuration,jdk.tools,maven-antrun-plugin</excludeArtifactIds> |
| 391 | + <failOnMissingClassifierArtifact>false</failOnMissingClassifierArtifact> |
| 392 | + <reportSets> |
| 393 | + <reportSet> |
| 394 | + <reports> |
| 395 | + <report>analyze-report</report> |
| 396 | + </reports> |
| 397 | + </reportSet> |
| 398 | + </reportSets> |
| 399 | + </configuration> |
| 400 | + </execution> |
| 401 | + <execution> |
| 402 | + <id>get-dependency-sources</id> |
| 403 | + <phase>pre-site</phase> |
| 404 | + <goals> |
| 405 | + <goal>sources</goal> |
| 406 | + <goal>resolve</goal> |
| 407 | + <goal>resolve-plugins</goal> |
| 408 | + <goal>collect</goal> |
| 409 | + <goal>copy-dependencies</goal> |
| 410 | + <goal>unpack-dependencies</goal> |
| 411 | + </goals> |
| 412 | + <configuration> |
| 413 | + <classifier>sources</classifier> |
| 414 | + <excludeGroupIds>org.webjars</excludeGroupIds> |
| 415 | + <excludeArtifactIds>weld-probe-core</excludeArtifactIds> |
| 416 | + <failOnMissingClassifierArtifact>false</failOnMissingClassifierArtifact> |
| 417 | + <outputDirectory>${project.build.directory}/dependencies/</outputDirectory> |
| 418 | + </configuration> |
| 419 | + </execution> |
| 420 | + </executions> |
| 421 | + </plugin> |
329 | 422 | </plugins>
|
330 | 423 | </build>
|
331 | 424 |
|
|
341 | 434 | </activation>
|
342 | 435 | <build>
|
343 | 436 | <finalName>simpleworklist</finalName>
|
344 |
| - <defaultGoal>clean install dependency:sources dependency:resolve dependency:resolve-plugins dependency:tree spring-boot:run</defaultGoal> |
| 437 | + <defaultGoal>clean spring-boot:run</defaultGoal> |
| 438 | + <!-- |
| 439 | + <defaultGoal>clean install dependency:sources dependency:resolve dependency:resolve-plugins dependency:tree/defaultGoal> |
| 440 | + --> |
345 | 441 | <plugins>
|
346 | 442 | <plugin>
|
347 | 443 | <groupId>org.springframework.boot</groupId>
|
|
368 | 464 | </execution>
|
369 | 465 | </executions>
|
370 | 466 | </plugin>
|
371 |
| - <plugin> |
372 |
| - <groupId>org.apache.maven.plugins</groupId> |
373 |
| - <artifactId>maven-dependency-plugin</artifactId> |
374 |
| - <executions> |
375 |
| - <execution> |
376 |
| - <id>unpack-dependencies</id> |
377 |
| - <phase>prepare-package</phase> |
378 |
| - <goals> |
379 |
| - <goal>analyze-only</goal> |
380 |
| - <goal>analyze-dep-mgt</goal> |
381 |
| - <goal>analyze-report</goal> |
382 |
| - <goal>sources</goal> |
383 |
| - <goal>resolve</goal> |
384 |
| - <goal>resolve-plugins</goal> |
385 |
| - <goal>collect</goal> |
386 |
| - <goal>copy-dependencies</goal> |
387 |
| - <goal>unpack-dependencies</goal> |
388 |
| - <goal>build-classpath</goal> |
389 |
| - </goals> |
390 |
| - <configuration> |
391 |
| - <overWriteReleases>true</overWriteReleases> |
392 |
| - <overWriteSnapshots>true</overWriteSnapshots> |
393 |
| - <outputFile>${project.build.outputDirectory}/classpath.txt</outputFile> |
394 |
| - <failOnWarning>false</failOnWarning> |
395 |
| - <ignoredDependencies> |
396 |
| - <ignoredDependency>org.apache.maven.plugins:maven-surefire-plugin</ignoredDependency> |
397 |
| - <!-- |
398 |
| - <ignoredDependency>org.apache.maven.scm:maven-scm</ignoredDependency> |
399 |
| - <ignoredDependency>org.apache.maven.scm:maven-scm-providers-git</ignoredDependency> |
400 |
| - <ignoredDependency>org.apache.maven.scm:maven-scm-providers-standard</ignoredDependency> |
401 |
| - <ignoredDependency>org.apache.maven.scm:maven-scm-providers</ignoredDependency> |
402 |
| - <ignoredDependency>org.apache.maven.scm:maven-scm-managers</ignoredDependency> |
403 |
| - --> |
404 |
| - </ignoredDependencies> |
405 |
| - <ignoredUsedUndeclaredDependencies> |
406 |
| - <ignoredUsedUndeclaredDependency>org.apache.maven.plugins:maven-surefire-plugin</ignoredUsedUndeclaredDependency> |
407 |
| - </ignoredUsedUndeclaredDependencies> |
408 |
| - <ignoredUnusedDeclaredDependencies> |
409 |
| - <ignoredUnusedDeclaredDependency>org.apache.maven.plugins:maven-surefire-plugin</ignoredUnusedDeclaredDependency> |
410 |
| - </ignoredUnusedDeclaredDependencies> |
411 |
| - </configuration> |
412 |
| - </execution> |
413 |
| - <execution> |
414 |
| - <id>check-dependencies1</id> |
415 |
| - <phase>verify</phase> |
416 |
| - <goals> |
417 |
| - <goal>list</goal> |
418 |
| - <goal>list-repositories</goal> |
419 |
| - <goal>properties</goal> |
420 |
| - </goals> |
421 |
| - </execution> |
422 |
| - <execution> |
423 |
| - <id>check-dependencies2</id> |
424 |
| - <phase>verify</phase> |
425 |
| - <goals> |
426 |
| - <goal>analyze</goal> |
427 |
| - <goal>analyze-dep-mgt</goal> |
428 |
| - <goal>analyze-duplicate</goal> |
429 |
| - <goal>analyze-report</goal> |
430 |
| - </goals> |
431 |
| - </execution> |
432 |
| - <execution> |
433 |
| - <id>check-dependencies3</id> |
434 |
| - <phase>verify</phase> |
435 |
| - <goals> |
436 |
| - <goal>tree</goal> |
437 |
| - </goals> |
438 |
| - </execution> |
439 |
| - <execution> |
440 |
| - <id>report</id> |
441 |
| - <phase>site</phase> |
442 |
| - <configuration> |
443 |
| - <excludeGroupIds>org.webjars,org.jclouds,org.jboss.as,xml-resolver,commons-configuration,org.codehaus.plexus,commons-digester,junit,log4j,io.openliberty.features</excludeGroupIds> |
444 |
| - <excludeArtifactIds>weld-probe-core,commons-configuration,jdk.tools,maven-antrun-plugin</excludeArtifactIds> |
445 |
| - <failOnMissingClassifierArtifact>false</failOnMissingClassifierArtifact> |
446 |
| - <reportSets> |
447 |
| - <reportSet> |
448 |
| - <reports> |
449 |
| - <report>analyze-report</report> |
450 |
| - </reports> |
451 |
| - </reportSet> |
452 |
| - </reportSets> |
453 |
| - </configuration> |
454 |
| - </execution> |
455 |
| - <execution> |
456 |
| - <id>get-dependency-sources</id> |
457 |
| - <phase>prepare-package</phase> |
458 |
| - <goals> |
459 |
| - <goal>sources</goal> |
460 |
| - <goal>resolve</goal> |
461 |
| - <goal>resolve-plugins</goal> |
462 |
| - <goal>collect</goal> |
463 |
| - <goal>copy-dependencies</goal> |
464 |
| - <goal>unpack-dependencies</goal> |
465 |
| - </goals> |
466 |
| - <configuration> |
467 |
| - <classifier>sources</classifier> |
468 |
| - <excludeGroupIds>org.webjars</excludeGroupIds> |
469 |
| - <excludeArtifactIds>weld-probe-core</excludeArtifactIds> |
470 |
| - <failOnMissingClassifierArtifact>false</failOnMissingClassifierArtifact> |
471 |
| - <outputDirectory>${project.build.directory}/dependencies/</outputDirectory> |
472 |
| - </configuration> |
473 |
| - </execution> |
474 |
| - </executions> |
475 |
| - </plugin> |
476 | 467 | <plugin>
|
477 | 468 | <groupId>org.apache.maven.plugins</groupId>
|
478 | 469 | <artifactId>maven-surefire-plugin</artifactId>
|
|
0 commit comments