pom.xml 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. <?xml version="1.0"?>
  2. <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  4. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <groupId>com.sapit</groupId>
  7. <artifactId>eduepos-group</artifactId>
  8. <version>1.0.0</version>
  9. </parent>
  10. <artifactId>client-plat</artifactId>
  11. <name>client-plat</name>
  12. <packaging>jar</packaging>
  13. <dependencies>
  14. <dependency>
  15. <groupId>com.sapit</groupId>
  16. <artifactId>common</artifactId>
  17. <version>1.0.0</version>
  18. </dependency>
  19. </dependencies>
  20. <build>
  21. <plugins>
  22. <plugin>
  23. <groupId>org.springframework.boot</groupId>
  24. <artifactId>spring-boot-maven-plugin</artifactId>
  25. <configuration>
  26. <layout>ZIP</layout>
  27. <includes>
  28. <include>
  29. <groupId>com.sapit</groupId>
  30. <artifactId>common</artifactId>
  31. </include>
  32. </includes>
  33. </configuration>
  34. </plugin>
  35. <plugin>
  36. <groupId>org.apache.maven.plugins</groupId>
  37. <artifactId>maven-dependency-plugin</artifactId>
  38. <executions>
  39. <execution>
  40. <id>copy-dependencies</id>
  41. <phase>package</phase>
  42. <goals>
  43. <goal>copy-dependencies</goal>
  44. </goals>
  45. <configuration>
  46. <type>jar</type>
  47. <includeTypes>jar</includeTypes>
  48. <includeScope>runtime</includeScope>
  49. <outputDirectory>
  50. ${project.build.directory}/lib
  51. </outputDirectory>
  52. </configuration>
  53. </execution>
  54. </executions>
  55. </plugin>
  56. </plugins>
  57. </build>
  58. </project>