pom.xml 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. <?xml version="1.0"?>
  2. <project
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
  4. xmlns="http://maven.apache.org/POM/4.0.0"
  5. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  6. <modelVersion>4.0.0</modelVersion>
  7. <parent>
  8. <groupId>org.datagear</groupId>
  9. <artifactId>datagear</artifactId>
  10. <version>3.0.0</version>
  11. </parent>
  12. <artifactId>datagear-util</artifactId>
  13. <name>datagear-util</name>
  14. <dependencies>
  15. </dependencies>
  16. <build>
  17. <plugins>
  18. <plugin>
  19. <groupId>org.apache.maven.plugins</groupId>
  20. <artifactId>maven-antrun-plugin</artifactId>
  21. <version>${maven-antrun-plugin.version}</version>
  22. <executions>
  23. <!-- 拷贝LICENSE文件 -->
  24. <execution>
  25. <id>copyLICENSE</id>
  26. <phase>prepare-package</phase>
  27. <goals>
  28. <goal>run</goal>
  29. </goals>
  30. <configuration>
  31. <tasks>
  32. <copy file="../LICENSE" todir="${project.build.outputDirectory}" />
  33. </tasks>
  34. </configuration>
  35. </execution>
  36. </executions>
  37. </plugin>
  38. </plugins>
  39. </build>
  40. </project>