[
https://issues.apache.org/jira/browse/MDEP-532?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17891563#comment-17891563
]
Elliotte Rusty Harold commented on MDEP-532:
--------------------------------------------
OK, this looks like a clue. mvn verify reports the (arguably correct)
commons-logging issue but does not report an issue with org,springframework:
[INFO] --- maven-dependency-plugin:3.6.0:analyze-only (analyze) @ MDEP-532 ---
[ERROR] Used undeclared dependencies found:
[ERROR] commons-logging:commons-logging:jar:1.1.3:test
[INFO] ------------------------------------------------------------------------
[INFO] BUILD FAILURE
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 0.784 s
[INFO] Finished at: 2024-10-21T10:48:00-04:00
However, mvn dependency:analyze and dependency:analyze-only do report a problem
with org.springframework:
[INFO] --- maven-dependency-plugin:3.6.0:analyze-only (default-cli) @ MDEP-532
---
[WARNING] Used undeclared dependencies found:
[WARNING] commons-logging:commons-logging:jar:1.1.3:test
[WARNING] Unused declared dependencies found:
[WARNING] org.springframework:spring-core:jar:3.2.18.RELEASE:test
[INFO] ------------------------------------------------------------------------
Possibly someone can look at this and guess immediately what's going on. (Given
enough eyes all bugs are shallow.) I can't put my finger on it just yet, but it
looks like mvn verify does get a value for ignoredUnusedDeclaredDependencies>
but mvn analyze doesn't see that property.
> Undeclared test resources fail build despite 'ignoreNonCompile'
> ---------------------------------------------------------------
>
> Key: MDEP-532
> URL: https://issues.apache.org/jira/browse/MDEP-532
> Project: Maven Dependency Plugin
> Issue Type: Bug
> Components: analyze
> Affects Versions: 2.10
> Environment: Windows 7 Pro 64-bit, Java OpenSDK 8, Maven 3.3.9
> Reporter: Alexander Kriegisch
> Assignee: Elliotte Rusty Harold
> Priority: Minor
> Labels: S2
>
> I have this plugin in my project's root POM:
> {code}
> <plugin>
> <groupId>org.apache.maven.plugins</groupId>
> <artifactId>maven-dependency-plugin</artifactId>
> <version>2.10</version>
> <executions>
> <execution>
> <id>analyze</id>
> <goals>
> <goal>analyze-only</goal>
> </goals>
> <configuration>
> <failOnWarning>true</failOnWarning>
> <ignoreNonCompile>true</ignoreNonCompile>
>
> <ignoredUnusedDeclaredDependencies>*</ignoredUnusedDeclaredDependencies>
> </configuration>
> </execution>
> </executions>
> </plugin>
> {code}
> Even though I want to ignore used undeclared test dependencies via
> {{<ignoreNonCompile>true</ignoreNonCompile>}}, my build fails like this in
> several modules:
> {code}
> [INFO] --- maven-dependency-plugin:2.10:analyze-only (analyze) @ xxx.yyy ---
> [WARNING] Used undeclared dependencies found:
> [WARNING]
> org.jboss.shrinkwrap.resolver:shrinkwrap-resolver-api-maven:jar:2.2.0:test
> [WARNING] org.jboss.shrinkwrap:shrinkwrap-api:jar:1.2.3:test
> [WARNING]
> org.jboss.arquillian.container:arquillian-container-test-api:jar:1.1.11.Final:test
> [WARNING]
> org.jboss.arquillian.spock:arquillian-spock-core:jar:1.0.0.RC4_XXX:test
> [WARNING]
> org.jboss.shrinkwrap.resolver:shrinkwrap-resolver-api-maven-archive:jar:2.2.0:test
> (...)
> [ERROR] Failed to execute goal
> org.apache.maven.plugins:maven-dependency-plugin:2.10:analyze-only (analyze)
> on project xxx.yyy: Dependency problems found -> [Help 1]
> [ERROR] Failed to execute goal
> org.apache.maven.plugins:maven-dependency-plugin:2.10:analyze-only (analyze)
> on project yyy.zzz: Dependency problems found -> [Help 1]
> [ERROR] Failed to execute goal
> org.apache.maven.plugins:maven-dependency-plugin:2.10:analyze-only (analyze)
> on project zzz.aaa: Dependency problems found -> [Help 1]
> [ERROR] Failed to execute goal
> org.apache.maven.plugins:maven-dependency-plugin:2.10:analyze-only (analyze)
> on project aaa.bbb: Dependency problems found -> [Help 1]
> {code}
--
This message was sent by Atlassian Jira
(v8.20.10#820010)