pom.xml 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164
  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. <parent>
  7. <groupId>com.jwipc</groupId>
  8. <artifactId>jwipc-dependency</artifactId>
  9. <version>0.0.1-SNAPSHOT</version>
  10. <relativePath>../jwipc-dependency/pom.xml</relativePath>
  11. </parent>
  12. <dependencies>
  13. <dependency>
  14. <groupId>org.quartz-scheduler</groupId>
  15. <artifactId>quartz</artifactId>
  16. </dependency>
  17. <dependency>
  18. <groupId>org.quartz-scheduler</groupId>
  19. <artifactId>quartz-jobs</artifactId>
  20. </dependency>
  21. <dependency>
  22. <groupId>org.springframework</groupId>
  23. <artifactId>spring-tx</artifactId>
  24. </dependency>
  25. <dependency>
  26. <groupId>org.springframework</groupId>
  27. <artifactId>spring-context-support</artifactId>
  28. </dependency>
  29. <dependency>
  30. <groupId>${parent.groupId}</groupId>
  31. <artifactId>jwipc-util</artifactId>
  32. </dependency>
  33. <dependency>
  34. <groupId>org.springframework</groupId>
  35. <artifactId>spring-web</artifactId>
  36. </dependency>
  37. <dependency>
  38. <groupId>org.springframework.boot</groupId>
  39. <artifactId>spring-boot-starter-web</artifactId>
  40. </dependency>
  41. <dependency>
  42. <groupId>org.springframework.boot</groupId>
  43. <artifactId>spring-boot</artifactId>
  44. <exclusions>
  45. <exclusion>
  46. <groupId>org.yaml</groupId>
  47. <artifactId>snakeyaml</artifactId>
  48. </exclusion>
  49. </exclusions>
  50. </dependency>
  51. <dependency>
  52. <groupId>org.springframework.boot</groupId>
  53. <artifactId>spring-boot-autoconfigure</artifactId>
  54. </dependency>
  55. <dependency>
  56. <groupId>${project.groupId}</groupId>
  57. <artifactId>jwipc-log</artifactId>
  58. </dependency>
  59. <dependency>
  60. <groupId>org.yaml</groupId>
  61. <artifactId>snakeyaml</artifactId>
  62. </dependency>
  63. <dependency>
  64. <groupId>ch.qos.logback</groupId>
  65. <artifactId>logback-classic</artifactId>
  66. </dependency>
  67. <dependency>
  68. <groupId>${parent.groupId}</groupId>
  69. <artifactId>sys-infra</artifactId>
  70. </dependency>
  71. <dependency>
  72. <groupId>${parent.groupId}</groupId>
  73. <artifactId>supplier-infra</artifactId>
  74. </dependency>
  75. <dependency>
  76. <groupId>${project.groupId}</groupId>
  77. <artifactId>finance-infra</artifactId>
  78. </dependency>
  79. <dependency>
  80. <groupId>${parent.groupId}</groupId>
  81. <artifactId>inquiry-infra</artifactId>
  82. </dependency>
  83. <dependency>
  84. <groupId>${parent.groupId}</groupId>
  85. <artifactId>jwipc-api</artifactId>
  86. </dependency>
  87. <dependency>
  88. <groupId>${parent.groupId}</groupId>
  89. <artifactId>po-order-infra</artifactId>
  90. </dependency>
  91. <dependency>
  92. <groupId>org.freemarker</groupId>
  93. <artifactId>freemarker</artifactId>
  94. </dependency>
  95. <dependency>
  96. <groupId>org.springframework.boot</groupId>
  97. <artifactId>spring-boot-starter-mail</artifactId>
  98. </dependency>
  99. <dependency>
  100. <groupId>org.mapstruct</groupId>
  101. <artifactId>mapstruct</artifactId>
  102. <scope>provided</scope>
  103. </dependency>
  104. <dependency>
  105. <groupId>${parent.groupId}</groupId>
  106. <artifactId>spe-infra</artifactId>
  107. </dependency>
  108. <dependency>
  109. <groupId>${parent.groupId}</groupId>
  110. <artifactId>shoppingMall-infra</artifactId>
  111. </dependency>
  112. <dependency>
  113. <groupId>org.jsoup</groupId>
  114. <artifactId>jsoup</artifactId>
  115. </dependency>
  116. <dependency>
  117. <groupId>com.jwipc</groupId>
  118. <artifactId>sys-client</artifactId>
  119. </dependency>
  120. <dependency>
  121. <groupId>org.springframework</groupId>
  122. <artifactId>spring-test</artifactId>
  123. </dependency>
  124. <dependency>
  125. <groupId>commons-net</groupId>
  126. <artifactId>commons-net</artifactId>
  127. <version>3.11.1</version>
  128. <scope>compile</scope>
  129. </dependency>
  130. </dependencies>
  131. <artifactId>job</artifactId>
  132. <build>
  133. <finalName>${project.artifactId}</finalName>
  134. <resources>
  135. <resource>
  136. <directory>src/main/resources</directory>
  137. </resource>
  138. </resources>
  139. <plugins>
  140. <plugin>
  141. <groupId>org.springframework.boot</groupId>
  142. <artifactId>spring-boot-maven-plugin</artifactId>
  143. <version>${spring-boot.version}</version>
  144. <configuration>
  145. <excludes>
  146. <exclude>
  147. <groupId>org.projectlombok</groupId>
  148. <artifactId>lombok</artifactId>
  149. </exclude>
  150. </excludes>
  151. </configuration>
  152. <executions>
  153. <execution>
  154. <goals>
  155. <goal>repackage</goal>
  156. </goals>
  157. </execution>
  158. </executions>
  159. </plugin>
  160. </plugins>
  161. </build>
  162. </project>