Jackie-Jiang commented on code in PR #13930: URL: https://github.com/apache/pinot/pull/13930#discussion_r1765662959
########## pinot-spi/pom.xml: ########## @@ -36,6 +36,82 @@ <build> <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-dependency-plugin</artifactId> + <version>3.7.1</version> + <executions> + <execution> + <id>copy-pinot-plugins</id> + <!-- The org.apache.pinot.spi.plugin.PluginManagerTest has tests that requires plugin jars. + These jars could have been added to src/test/resources/plugins, but that would increase the size of + source repository a lot. Instead, let Maven download these jars and put them at the expected location. + --> + <phase>generate-test-resources</phase> + <goals> + <goal>copy</goal> + </goals> + <configuration> + <artifactItems> + <artifactItem> + <groupId>org.apache.pinot</groupId> + <artifactId>pinot-dropwizard</artifactId> + <version>0.10.0</version> Review Comment: I see. I missed the fact that this part is used to generate resources for the test -- 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: commits-unsubscr...@pinot.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@pinot.apache.org For additional commands, e-mail: commits-h...@pinot.apache.org