pom.xml 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  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.ctrip.framework.apollo</groupId>
  6. <artifactId>apollo</artifactId>
  7. <version>0.0.1</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. <properties>
  14. <java.version>1.7</java.version>
  15. <github.path>${project.artifactId}</github.path>
  16. </properties>
  17. <dependencies>
  18. <dependency>
  19. <groupId>com.dianping.cat</groupId>
  20. <artifactId>cat-client</artifactId>
  21. </dependency>
  22. </dependencies>
  23. <build>
  24. <plugins>
  25. <plugin>
  26. <artifactId>maven-resources-plugin</artifactId>
  27. <executions>
  28. <execution>
  29. <id>copy-resources</id>
  30. <phase>validate</phase>
  31. <goals>
  32. <goal>copy-resources</goal>
  33. </goals>
  34. <configuration>
  35. <outputDirectory>${basedir}/target</outputDirectory>
  36. <resources>
  37. <resource>
  38. <directory>src/main/scripts</directory>
  39. </resource>
  40. </resources>
  41. </configuration>
  42. </execution>
  43. </executions>
  44. </plugin>
  45. </plugins>
  46. </build>
  47. </project>