maven 插件


maven 添加指定路径为source root

  1. <build>
  2. <plugins>
  3. <plugin>
  4. <groupId>org.codehaus.mojo</groupId>
  5. <artifactId>build-helper-maven-plugin</artifactId>
  6. <executions>
  7. <execution>
  8. <phase>prepare-package</phase>
  9. <goals>
  10. <goal>add-source</goal>
  11. </goals>
  12. <configuration>
  13. <sources>
  14. <source>${project.build.directory}/shaded-sources</source>
  15. </sources>
  16. </configuration>
  17. </execution>
  18. </executions>
  19. </plugin>
  20. </plugins>
  21. </build>

maven 指定路径为resource 路径

  1. <build>
  2. <resources>
  3. <resource>
  4. <directory>src/main/resources</directory>
  5. </resource>
  6. <resource>
  7. <directory>${project.build.directory}/generated-sources/spi</directory>
  8. </resource>
  9. <resources>
  10. </build>

maven 复制插件

  1. <build>
  2. <plugins>
  3. <!-- 添加资源复制插件 generated-sources/yang 添加 classes/META-INF/yang -->
  4. <plugin>
  5. <groupId>org.apache.maven.plugins</groupId>
  6. <artifactId>maven-resources-plugin</artifactId>
  7. <version>3.3.1</version>
  8. <executions>
  9. <execution>
  10. <id>copy-yang-resources</id>
  11. <phase>process-resources</phase>
  12. <!-- <phase>install</phase>-->
  13. <goals>
  14. <goal>copy-resources</goal>
  15. </goals>
  16. <configuration>
  17. <outputDirectory>${project.build.directory}/classes/META-INF/yang</outputDirectory>
  18. <resources>
  19. <resource>
  20. <directory>${project.build.directory}/generated-sources/yang
  21. </directory>
  22. <includes>
  23. <include>**/*.yang</include>
  24. </includes>
  25. </resource>
  26. </resources>
  27. </configuration>
  28. </execution>
  29. </executions>
  30. </plugin>
  31. </plugins>
  32. </build>

寒烟濡雨 2024年11月14日 15:51 收藏文档