pom.xml 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155
  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. <parent>
  6. <groupId>com.lc.ibps.base</groupId>
  7. <artifactId>ibps-base-root</artifactId>
  8. <version>3.3.7-LC.RELEASE</version>
  9. <relativePath>../../pom.xml</relativePath>
  10. </parent>
  11. <modelVersion>4.0.0</modelVersion>
  12. <artifactId>ibps-base-framework-ddd</artifactId>
  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.persist</groupId>
  20. <artifactId>ibps-persist-core</artifactId>
  21. </dependency>
  22. <dependency>
  23. <groupId>com.lc.ibps.base</groupId>
  24. <artifactId>ibps-base-framework</artifactId>
  25. <exclusions>
  26. <exclusion>
  27. <groupId>com.lc.ibps.api</groupId>
  28. <artifactId>ibps-api-base</artifactId>
  29. </exclusion>
  30. </exclusions>
  31. </dependency>
  32. <dependency>
  33. <groupId>com.lc.ibps.base</groupId>
  34. <artifactId>ibps-base-model</artifactId>
  35. </dependency>
  36. <dependency>
  37. <groupId>org.springframework.data</groupId>
  38. <artifactId>spring-data-redis</artifactId>
  39. </dependency>
  40. <dependency>
  41. <groupId>org.redisson</groupId>
  42. <artifactId>redisson</artifactId>
  43. <exclusions>
  44. <exclusion>
  45. <groupId>io.netty</groupId>
  46. <artifactId>*</artifactId>
  47. </exclusion>
  48. </exclusions>
  49. </dependency>
  50. <dependency>
  51. <groupId>io.netty</groupId>
  52. <artifactId>netty-all</artifactId>
  53. </dependency>
  54. <dependency>
  55. <groupId>mysql</groupId>
  56. <artifactId>mysql-connector-java</artifactId>
  57. <scope>provided</scope>
  58. </dependency>
  59. <dependency>
  60. <groupId>fakepath</groupId>
  61. <artifactId>postgresql</artifactId>
  62. <scope>provided</scope>
  63. </dependency>
  64. <dependency>
  65. <groupId>com.microsoft.sqlserver</groupId>
  66. <artifactId>mssql-jdbc</artifactId>
  67. <scope>provided</scope>
  68. </dependency>
  69. <dependency>
  70. <groupId>com.oracle</groupId>
  71. <artifactId>oracledriver</artifactId>
  72. <scope>provided</scope>
  73. </dependency>
  74. <dependency>
  75. <groupId>org.springframework.boot</groupId>
  76. <artifactId>spring-boot-autoconfigure</artifactId>
  77. <optional>true</optional>
  78. </dependency>
  79. </dependencies>
  80. <profiles>
  81. <profile>
  82. <id>ibps-8081</id>
  83. <activation>
  84. <activeByDefault>true</activeByDefault>
  85. </activation>
  86. <build>
  87. <plugins>
  88. <plugin>
  89. <artifactId>maven-compiler-plugin</artifactId>
  90. <version>3.3</version>
  91. <configuration>
  92. <source>1.8</source>
  93. <target>1.8</target>
  94. <encoding>UTF-8</encoding>
  95. </configuration>
  96. </plugin>
  97. </plugins>
  98. </build>
  99. </profile>
  100. <profile>
  101. <id>ibps-8082</id>
  102. <build>
  103. <plugins>
  104. <plugin>
  105. <artifactId>maven-compiler-plugin</artifactId>
  106. <version>3.3</version>
  107. <configuration>
  108. <source>1.8</source>
  109. <target>1.8</target>
  110. <encoding>UTF-8</encoding>
  111. </configuration>
  112. </plugin>
  113. <!-- <plugin>
  114. <groupId>com.pyx4me</groupId>
  115. <artifactId>proguard-maven-plugin</artifactId>
  116. <executions>
  117. <execution>
  118. <phase>package</phase>
  119. <goals>
  120. <goal>proguard</goal>
  121. </goals>
  122. </execution>
  123. </executions>
  124. <configuration>
  125. <obfuscate>true</obfuscate>
  126. <libs>
  127. <lib>${JAVA_HOME}/jre/lib/rt.jar</lib>
  128. </libs>
  129. <options>
  130. <option>-ignorewarnings</option>
  131. <option>-keepattributes
  132. Exceptions,InnerClasses,Signature,Deprecated,SourceFile,LineNumberTable,*Annotation*</option>
  133. <option>-keepdirectories</option>
  134. <option>-keep class **.* {public *;protected *;private
  135. &lt;fields&gt;;}</option>
  136. </options>
  137. </configuration>
  138. <dependencies>
  139. <dependency>
  140. <groupId>net.sf.proguard</groupId>
  141. <artifactId>proguard</artifactId>
  142. <version>5.2</version>
  143. <scope>runtime</scope>
  144. </dependency>
  145. </dependencies>
  146. </plugin> -->
  147. </plugins>
  148. </build>
  149. </profile>
  150. </profiles>
  151. </project>