pom.xml 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
  4. <parent>
  5. <groupId>com.yihu.jkzl</groupId>
  6. <artifactId>apollo</artifactId>
  7. <version>1.1.0-RELEASE</version>
  8. <relativePath>../pom.xml</relativePath>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>apollo-buildtools</artifactId>
  12. <name>Apollo BuildTools</name>
  13. <build>
  14. <plugins>
  15. <plugin>
  16. <artifactId>maven-resources-plugin</artifactId>
  17. <version>2.6</version>
  18. <executions>
  19. <execution>
  20. <id>copy-resources</id>
  21. <phase>validate</phase>
  22. <goals>
  23. <goal>copy-resources</goal>
  24. </goals>
  25. <configuration>
  26. <outputDirectory>${basedir}/target</outputDirectory>
  27. <resources>
  28. <resource>
  29. <directory>src/main/scripts</directory>
  30. </resource>
  31. </resources>
  32. </configuration>
  33. </execution>
  34. </executions>
  35. </plugin>
  36. </plugins>
  37. </build>
  38. </project>