jira-importer commented on issue #109: URL: https://github.com/apache/maven-war-plugin/issues/109#issuecomment-2967843067
**[Dmitry Katsubo](https://issues.apache.org/jira/secure/ViewProfile.jspa?name=dma_k)** commented I have the warning messages of the same nature: ``` [INFO] Dependency[Dependency {groupId=commons-logging, artifactId=commons-logging, version=1.1.1, type=jar}] has changed (was Dependency {groupId=commons-logging, artifactId=commons-logging, version=1.1.1, type=jar}). [INFO] Dependency[Dependency {groupId=commons-lang, artifactId=commons-lang, version=2.4, type=jar}] has changed (was Dependency {groupId=commons-lang, artifactId=commons-lang, version=2.4, type=jar}). ``` maven-war-plugin 2.1-alpha-2 maven-jar-plugin 2.2 The warning message appears for the dependences, which have versions substantiated by a variable, for example in parent pom: ``` <properties> <commons.logging.version>1.1.1</commons.logging.version> <commons.lang.version>2.4</commons.lang.version> </properties> ``` in module pom: ``` <dependency> <groupId>commons-logging</groupId> <artifactId>commons-logging</artifactId> <version>${commons.logging.version}</version> </dependency> <dependency> <groupId>commons-lang</groupId> <artifactId>commons-lang</artifactId> <version>${commons.lang.version}</version> </dependency> ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: issues-unsubscr...@maven.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org