|
32 | 32 | <groupId>io.micronaut</groupId> |
33 | 33 | <artifactId>micronaut-http-server-netty</artifactId> |
34 | 34 | <version>${micronaut.version}</version> |
| 35 | + <scope>runtime</scope> |
35 | 36 | </dependency> |
36 | 37 |
|
37 | 38 | <!-- Micronaut Inject --> |
|
46 | 47 | <groupId>io.micronaut</groupId> |
47 | 48 | <artifactId>micronaut-runtime</artifactId> |
48 | 49 | <version>${micronaut.version}</version> |
| 50 | + <scope>runtime</scope> |
49 | 51 | </dependency> |
50 | 52 |
|
51 | 53 | <!-- Micronaut Serde API - Required for @Serdeable annotation --> |
|
68 | 70 | <groupId>io.micronaut.reactor</groupId> |
69 | 71 | <artifactId>micronaut-reactor</artifactId> |
70 | 72 | <version>3.9.1</version> |
| 73 | + <scope>runtime</scope> |
71 | 74 | </dependency> |
72 | 75 |
|
73 | 76 | <!-- Micronaut view render --> |
|
82 | 85 | <groupId>io.micronaut.views</groupId> |
83 | 86 | <artifactId>micronaut-views-velocity</artifactId> |
84 | 87 | <version>5.9.0</version> |
| 88 | + <scope>runtime</scope> |
85 | 89 | </dependency> |
86 | 90 |
|
87 | 91 | <dependency> |
|
157 | 161 | <artifactId>jackson-core</artifactId> |
158 | 162 | <version>${jackson.version}</version> |
159 | 163 | </dependency> |
160 | | - |
161 | 164 | <dependency> |
162 | 165 | <groupId>com.fasterxml.jackson.core</groupId> |
163 | 166 | <artifactId>jackson-databind</artifactId> |
|
244 | 247 | <groupId>org.junit.platform</groupId> |
245 | 248 | <artifactId>junit-platform-commons</artifactId> |
246 | 249 | <version>${junit.version}</version> |
| 250 | + <scope>test</scope> |
247 | 251 | </dependency> |
248 | 252 |
|
249 | 253 | <dependency> |
|
450 | 454 | </goals> |
451 | 455 | <configuration> |
452 | 456 | <failOnWarning>true</failOnWarning> |
| 457 | + <ignoreUnusedRuntime>true</ignoreUnusedRuntime> |
| 458 | + |
453 | 459 | <ignoredUnusedDeclaredDependencies> |
454 | | - <ignoredUnusedDeclaredDependency>org.apache.maven:maven-compat:jar</ignoredUnusedDeclaredDependency> |
| 460 | + <ignoredUnusedDeclaredDependency>io.micronaut:micronaut-http-client</ignoredUnusedDeclaredDependency> |
| 461 | + <ignoredUnusedDeclaredDependency>org.junit.jupiter:junit-jupiter-engine</ignoredUnusedDeclaredDependency> |
455 | 462 | </ignoredUnusedDeclaredDependencies> |
456 | | - <ignoredUsedUndeclaredDependencies> |
457 | | - <!-- NOTE: the maven-dependency-plugin insists that we need this, seems to be |
458 | | - some sort of missing transient dependency for maven-invoker-plugin ITs --> |
459 | | - <ignoredUsedUndeclaredDependency>org.eclipse.sisu:org.eclipse.sisu.plexus:jar</ignoredUsedUndeclaredDependency> |
460 | | - </ignoredUsedUndeclaredDependencies> |
| 463 | + |
461 | 464 | <ignoredNonTestScopedDependencies> |
462 | | - <ignoredNonTestScopedDependency>org.eclipse.sisu:org.eclipse.sisu.plexus:jar</ignoredNonTestScopedDependency> |
| 465 | + <ignoredNonTestScopedDependency>com.fasterxml.jackson.core:jackson-core</ignoredNonTestScopedDependency> |
463 | 466 | </ignoredNonTestScopedDependencies> |
| 467 | + |
464 | 468 | </configuration> |
465 | 469 | </execution> |
466 | 470 | </executions> |
|
0 commit comments