pom.xml 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  3. <parent>
  4. <groupId>com.lc.ibps.base</groupId>
  5. <artifactId>ibps-base-root</artifactId>
  6. <version>3.3.7-LC.RELEASE</version>
  7. <relativePath>../../pom.xml</relativePath>
  8. </parent>
  9. <modelVersion>4.0.0</modelVersion>
  10. <artifactId>ibps-base-db</artifactId>
  11. <properties>
  12. </properties>
  13. <dependencies>
  14. <dependency>
  15. <groupId>com.lc.ibps.api</groupId>
  16. <artifactId>ibps-api-base</artifactId>
  17. </dependency>
  18. <dependency>
  19. <groupId>com.lc.ibps.base</groupId>
  20. <artifactId>ibps-base-framework</artifactId>
  21. <exclusions>
  22. <exclusion>
  23. <groupId>com.lc.ibps.api</groupId>
  24. <artifactId>ibps-api-base</artifactId>
  25. </exclusion>
  26. </exclusions>
  27. </dependency>
  28. <dependency>
  29. <groupId>com.lc.ibps.base</groupId>
  30. <artifactId>ibps-base-framework-ddd</artifactId>
  31. <exclusions>
  32. <exclusion>
  33. <groupId>com.lc.ibps.api</groupId>
  34. <artifactId>ibps-api-base</artifactId>
  35. </exclusion>
  36. <exclusion>
  37. <groupId>com.lc.ibps.base</groupId>
  38. <artifactId>ibps-base-framework</artifactId>
  39. </exclusion>
  40. </exclusions>
  41. </dependency>
  42. <dependency>
  43. <groupId>com.lc.ibps.base</groupId>
  44. <artifactId>ibps-base-datasource</artifactId>
  45. </dependency>
  46. <dependency>
  47. <groupId>com.lc.ibps.base</groupId>
  48. <artifactId>ibps-base-saas</artifactId>
  49. </dependency>
  50. <dependency>
  51. <groupId>com.lc.ibps.persist</groupId>
  52. <artifactId>ibps-persist-core</artifactId>
  53. </dependency>
  54. <!-- 外部依赖管理 -->
  55. <dependency>
  56. <groupId>commons-logging</groupId>
  57. <artifactId>commons-logging</artifactId>
  58. </dependency>
  59. <dependency>
  60. <groupId>org.mybatis</groupId>
  61. <artifactId>mybatis</artifactId>
  62. <type>jar</type>
  63. <scope>compile</scope>
  64. </dependency>
  65. <dependency>
  66. <groupId>org.mybatis</groupId>
  67. <artifactId>mybatis-spring</artifactId>
  68. <type>jar</type>
  69. <scope>compile</scope>
  70. </dependency>
  71. <dependency>
  72. <groupId>mysql</groupId>
  73. <artifactId>mysql-connector-java</artifactId>
  74. <scope>compile</scope>
  75. </dependency>
  76. <dependency>
  77. <groupId>org.springframework.boot</groupId>
  78. <artifactId>spring-boot-autoconfigure</artifactId>
  79. <scope>provided</scope>
  80. </dependency>
  81. <dependency>
  82. <groupId>ognl</groupId>
  83. <artifactId>ognl</artifactId>
  84. </dependency>
  85. <!-- 京东多线程开发工具 -->
  86. <!-- 解决任意的多线程并行、串行、阻塞、依赖、回调的并行框架,可以任意组合各线程的执行顺序,带全链路执行结果回调。 -->
  87. <dependency>
  88. <groupId>com.jd.platform</groupId>
  89. <artifactId>asyncTool</artifactId>
  90. </dependency>
  91. </dependencies>
  92. <profiles>
  93. <profile>
  94. <id>ibps-8081</id>
  95. <activation>
  96. <activeByDefault>true</activeByDefault>
  97. </activation>
  98. <build>
  99. <plugins>
  100. <plugin>
  101. <artifactId>maven-compiler-plugin</artifactId>
  102. <version>3.3</version>
  103. <configuration>
  104. <source>1.8</source>
  105. <target>1.8</target>
  106. <encoding>UTF-8</encoding>
  107. </configuration>
  108. </plugin>
  109. </plugins>
  110. </build>
  111. </profile>
  112. <profile>
  113. <id>ibps-8082</id>
  114. <build>
  115. <plugins>
  116. <plugin>
  117. <artifactId>maven-compiler-plugin</artifactId>
  118. <version>3.3</version>
  119. <configuration>
  120. <source>1.8</source>
  121. <target>1.8</target>
  122. <encoding>UTF-8</encoding>
  123. </configuration>
  124. </plugin>
  125. <!-- <plugin>
  126. <groupId>com.pyx4me</groupId>
  127. <artifactId>proguard-maven-plugin</artifactId>
  128. <executions>
  129. <execution>
  130. <phase>package</phase>
  131. <goals>
  132. <goal>proguard</goal>
  133. </goals>
  134. </execution>
  135. </executions>
  136. <configuration>
  137. <obfuscate>true</obfuscate>
  138. <libs>
  139. <lib>${JAVA_HOME}/jre/lib/rt.jar</lib>
  140. </libs>
  141. <options>
  142. <option>-ignorewarnings</option>
  143. <option>-keepattributes Exceptions,InnerClasses,Signature,Deprecated,SourceFile,LineNumberTable,*Annotation*</option>
  144. <option>-keepdirectories</option>
  145. <option>-keep class **.* {public *;protected *;private &lt;fields&gt;;}</option>
  146. <option>-keep class Ognl {*;}</option>
  147. </options>
  148. </configuration>
  149. <dependencies>
  150. <dependency>
  151. <groupId>net.sf.proguard</groupId>
  152. <artifactId>proguard</artifactId>
  153. <version>5.2</version>
  154. <scope>runtime</scope>
  155. </dependency>
  156. </dependencies>
  157. </plugin> -->
  158. </plugins>
  159. </build>
  160. </profile>
  161. </profiles>
  162. </project>