pom.xml 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <modelVersion>4.0.0</modelVersion>
  6. <dependencies>
  7. </dependencies>
  8. <parent>
  9. <groupId>com.daju</groupId>
  10. <artifactId>daju</artifactId>
  11. <version>1.0-SNAPSHOT</version>
  12. </parent>
  13. <artifactId>erp</artifactId>
  14. <name>erp</name>
  15. <version>1.0-SNAPSHOT</version>
  16. <build>
  17. <plugins>
  18. <plugin>
  19. <groupId>org.apache.maven.plugins</groupId>
  20. <artifactId>maven-compiler-plugin</artifactId>
  21. <version>3.8.0</version>
  22. <configuration>
  23. <source>1.8</source>
  24. <target>1.8</target>
  25. </configuration>
  26. </plugin>
  27. <plugin>
  28. <groupId>org.apache.maven.plugins</groupId>
  29. <artifactId>maven-dependency-plugin</artifactId>
  30. <executions>
  31. <execution>
  32. <id>copy-dependencies</id>
  33. <phase>prepare-package</phase>
  34. <goals>
  35. <goal>copy-dependencies</goal>
  36. </goals>
  37. <configuration>
  38. <outputDirectory>${project.build.directory}/lib</outputDirectory>
  39. <overWriteReleases>false</overWriteReleases>
  40. <overWriteSnapshots>false</overWriteSnapshots>
  41. <overWriteIfNewer>true</overWriteIfNewer>
  42. </configuration>
  43. </execution>
  44. </executions>
  45. </plugin>
  46. </plugins>
  47. <resources>
  48. <resource>
  49. <directory>src/main/java</directory>
  50. <includes>
  51. <include>**/*.*</include>
  52. </includes>
  53. </resource>
  54. </resources>
  55. </build>
  56. </project>