pom.xml 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xmlns="http://maven.apache.org/POM/4.0.0"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <parent>
  6. <groupId>com.c503.ca.cadv</groupId>
  7. <artifactId>service</artifactId>
  8. <version>1.0.0-SNAPSHOT</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>service-sys</artifactId>
  12. <packaging>jar</packaging>
  13. <dependencies>
  14. <!--本地依赖-->
  15. <dependency>
  16. <groupId>com.c503.ca.cadv</groupId>
  17. <artifactId>common-service</artifactId>
  18. <version>${project.release.version}</version>
  19. </dependency>
  20. <dependency>
  21. <groupId>com.c503.ca.cadv</groupId>
  22. <artifactId>enhance-ftp</artifactId>
  23. <version>${project.release.version}</version>
  24. </dependency>
  25. <dependency>
  26. <groupId>com.c503.ca.cadv</groupId>
  27. <artifactId>enhance-websocket</artifactId>
  28. <version>${project.release.version}</version>
  29. </dependency>
  30. <!-- <dependency>-->
  31. <!-- <groupId>com.c503.ca.cadv</groupId>-->
  32. <!-- <artifactId>enhance-quartz</artifactId>-->
  33. <!-- <version>${project.release.version}</version>-->
  34. <!-- </dependency>-->
  35. <!--第三方依赖-->
  36. <dependency>
  37. <groupId>eu.bitwalker</groupId>
  38. <artifactId>UserAgentUtils</artifactId>
  39. <version>1.20</version>
  40. </dependency>
  41. <dependency>
  42. <groupId>de.codecentric</groupId>
  43. <artifactId>spring-boot-admin-starter-server</artifactId>
  44. <version>${springboot-admin.version}</version>
  45. </dependency>
  46. <dependency>
  47. <groupId>org.dom4j</groupId>
  48. <artifactId>dom4j</artifactId>
  49. <version>2.1.3</version>
  50. </dependency>
  51. <dependency>
  52. <groupId>jaxen</groupId>
  53. <artifactId>jaxen</artifactId>
  54. <version>1.1.6</version>
  55. </dependency>
  56. <!-- SpringBoot Web -->
  57. <dependency>
  58. <groupId>org.springframework.boot</groupId>
  59. <artifactId>spring-boot-starter-web</artifactId>
  60. </dependency>
  61. <dependency>
  62. <groupId>org.jboss.marshalling</groupId>
  63. <artifactId>jboss-marshalling-serial</artifactId>
  64. <version>2.0.10.Final</version>
  65. </dependency>
  66. <dependency>
  67. <groupId>cn.hutool</groupId>
  68. <artifactId>hutool-all</artifactId>
  69. <version>5.5.9</version>
  70. </dependency>
  71. </dependencies>
  72. <build>
  73. <plugins>
  74. <plugin>
  75. <groupId>org.springframework.boot</groupId>
  76. <artifactId>spring-boot-maven-plugin</artifactId>
  77. <version>${spring-boot.version}</version>
  78. <configuration>
  79. <includeSystemScope>true</includeSystemScope>
  80. <layers>
  81. <enabled>true</enabled>
  82. </layers>
  83. </configuration>
  84. <executions>
  85. <execution>
  86. <goals>
  87. <goal>repackage</goal>
  88. </goals>
  89. </execution>
  90. </executions>
  91. </plugin>
  92. </plugins>
  93. </build>
  94. </project>