pom.xml 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178
  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. <artifactId>portal</artifactId>
  13. <name>${project.artifactId}</name>
  14. <packaging>jar</packaging>
  15. <dependencies>
  16. <dependency>
  17. <groupId>${parent.groupId}</groupId>
  18. <artifactId>jwipc-web</artifactId>
  19. </dependency>
  20. <dependency>
  21. <groupId>${project.groupId}</groupId>
  22. <artifactId>jwipc-log</artifactId>
  23. </dependency>
  24. <dependency>
  25. <groupId>${parent.groupId}</groupId>
  26. <artifactId>sys-api</artifactId>
  27. </dependency>
  28. <dependency>
  29. <groupId>${parent.groupId}</groupId>
  30. <artifactId>supplier-api</artifactId>
  31. </dependency>
  32. <dependency>
  33. <groupId>${parent.groupId}</groupId>
  34. <artifactId>sys-logic</artifactId>
  35. </dependency>
  36. <dependency>
  37. <groupId>${parent.groupId}</groupId>
  38. <artifactId>sys-client-impl</artifactId>
  39. </dependency>
  40. <dependency>
  41. <groupId>${parent.groupId}</groupId>
  42. <artifactId>supplier-logic</artifactId>
  43. </dependency>
  44. <dependency>
  45. <groupId>${parent.groupId}</groupId>
  46. <artifactId>supplier-client-impl</artifactId>
  47. </dependency>
  48. <dependency>
  49. <groupId>${parent.groupId}</groupId>
  50. <artifactId>inquiry-api</artifactId>
  51. </dependency>
  52. <dependency>
  53. <groupId>${parent.groupId}</groupId>
  54. <artifactId>inquiry-client-impl</artifactId>
  55. </dependency>
  56. <dependency>
  57. <groupId>${parent.groupId}</groupId>
  58. <artifactId>inquiry-logic</artifactId>
  59. </dependency>
  60. <dependency>
  61. <groupId>${parent.groupId}</groupId>
  62. <artifactId>message-client-impl</artifactId>
  63. </dependency>
  64. <dependency>
  65. <groupId>${parent.groupId}</groupId>
  66. <artifactId>message-logic</artifactId>
  67. </dependency>
  68. <dependency>
  69. <groupId>${parent.groupId}</groupId>
  70. <artifactId>finance-api</artifactId>
  71. </dependency>
  72. <dependency>
  73. <groupId>${parent.groupId}</groupId>
  74. <artifactId>finance-logic</artifactId>
  75. <exclusions>
  76. <exclusion>
  77. <groupId>io.woo</groupId>
  78. <artifactId>htmltopdf</artifactId>
  79. </exclusion>
  80. </exclusions>
  81. </dependency>
  82. <dependency>
  83. <groupId>${parent.groupId}</groupId>
  84. <artifactId>tender-logic</artifactId>
  85. </dependency>
  86. <dependency>
  87. <groupId>${parent.groupId}</groupId>
  88. <artifactId>tender-client-impl</artifactId>
  89. </dependency>
  90. <dependency>
  91. <groupId>${parent.groupId}</groupId>
  92. <artifactId>spe-logic</artifactId>
  93. </dependency>
  94. <dependency>
  95. <groupId>${parent.groupId}</groupId>
  96. <artifactId>spe-client-impl</artifactId>
  97. </dependency>
  98. <dependency>
  99. <groupId>${parent.groupId}</groupId>
  100. <artifactId>po-order-logic</artifactId>
  101. </dependency>
  102. <dependency>
  103. <groupId>${project.groupId}</groupId>
  104. <artifactId>po-order-client-impl</artifactId>
  105. </dependency>
  106. <dependency>
  107. <groupId>${parent.groupId}</groupId>
  108. <artifactId>contract-logic</artifactId>
  109. </dependency>
  110. <dependency>
  111. <groupId>${project.groupId}</groupId>
  112. <artifactId>contract-client-impl</artifactId>
  113. </dependency>
  114. <dependency>
  115. <groupId>${parent.groupId}</groupId>
  116. <artifactId>shoppingMall-logic</artifactId>
  117. </dependency>
  118. <dependency>
  119. <groupId>${project.groupId}</groupId>
  120. <artifactId>shoppingMall-client-impl</artifactId>
  121. </dependency>
  122. <dependency>
  123. <groupId>com.sap.cloud.db.jdbc</groupId>
  124. <artifactId>ngdbc</artifactId>
  125. <version>2.4.51</version>
  126. </dependency>
  127. <!-- 连接池实现 -->
  128. <!-- <dependency>-->
  129. <!-- <groupId>com.zaxxer</groupId>-->
  130. <!-- <artifactId>HikariCP</artifactId>-->
  131. <!-- <version>5.0.1</version>-->
  132. <!-- </dependency>-->
  133. <dependency>
  134. <groupId>${parent.groupId}</groupId>
  135. <artifactId>po-order-api</artifactId>
  136. </dependency>
  137. <dependency>
  138. <groupId>${parent.groupId}</groupId>
  139. <artifactId>jwipc-test</artifactId>
  140. <scope>test</scope>
  141. </dependency>
  142. <dependency>
  143. <groupId>io.woo</groupId>
  144. <artifactId>htmltopdf</artifactId>
  145. </dependency>
  146. </dependencies>
  147. <build>
  148. <finalName>${project.artifactId}</finalName>
  149. <resources>
  150. <resource>
  151. <directory>src/main/resources</directory>
  152. </resource>
  153. </resources>
  154. <plugins>
  155. <plugin>
  156. <groupId>org.springframework.boot</groupId>
  157. <artifactId>spring-boot-maven-plugin</artifactId>
  158. <version>${spring-boot.version}</version>
  159. <configuration>
  160. <excludes>
  161. <exclude>
  162. <groupId>org.projectlombok</groupId>
  163. <artifactId>lombok</artifactId>
  164. </exclude>
  165. </excludes>
  166. </configuration>
  167. <executions>
  168. <execution>
  169. <goals>
  170. <goal>repackage</goal>
  171. </goals>
  172. </execution>
  173. </executions>
  174. </plugin>
  175. </plugins>
  176. </build>
  177. </project>