gnodet commented on code in PR #26792:
URL: https://github.com/apache/camel/pull/26792#discussion_r4092456236
##########
tooling/maven/bom-generator-maven-plugin/pom.xml:
##########
@@ -87,6 +87,15 @@
</dependency>
<!-- logging -->
+ <dependency>
+ <groupId>javax.inject</groupId>
+ <artifactId>javax.inject</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.maven</groupId>
+ <artifactId>maven-model</artifactId>
+ <scope>provided</scope>
+ </dependency>
Review Comment:
Fixed in e64607a0203fb: moved `javax.inject` and `maven-model` above the
`<!-- logging -->` comment.
##########
tooling/maven/camel-package-maven-plugin/pom.xml:
##########
@@ -160,6 +164,23 @@
</dependency>
<!-- logging -->
+ <dependency>
+ <groupId>org.apache.maven.resolver</groupId>
+ <artifactId>maven-resolver-api</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>org.ow2.asm</groupId>
+ <artifactId>asm</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>javax.inject</groupId>
+ <artifactId>javax.inject</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.maven</groupId>
+ <artifactId>maven-model</artifactId>
+ <scope>provided</scope>
+ </dependency>
Review Comment:
Fixed in e64607a0203fb: moved `maven-resolver-api`, `asm`, `javax.inject`,
and `maven-model` above the `<!-- logging -->` comment.
--
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: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]