pom.xml 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122
  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"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <parent>
  5. <groupId>com.lc.ibps.base</groupId>
  6. <artifactId>ibps-base-root</artifactId>
  7. <version>3.3.7-LC.RELEASE</version>
  8. <relativePath>../../pom.xml</relativePath>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>ibps-base-framework</artifactId>
  12. <properties>
  13. </properties>
  14. <dependencies>
  15. <dependency>
  16. <groupId>com.lc.ibps.api</groupId>
  17. <artifactId>ibps-api-base</artifactId>
  18. </dependency>
  19. <dependency>
  20. <groupId>com.lc.ibps.persist</groupId>
  21. <artifactId>ibps-persist-core</artifactId>
  22. </dependency>
  23. <dependency>
  24. <groupId>org.springframework</groupId>
  25. <artifactId>spring-jdbc</artifactId>
  26. </dependency>
  27. <dependency>
  28. <groupId>com.alibaba</groupId>
  29. <artifactId>transmittable-thread-local</artifactId>
  30. </dependency>
  31. <dependency>
  32. <groupId>com.fasterxml.jackson.core</groupId>
  33. <artifactId>jackson-annotations</artifactId>
  34. </dependency>
  35. <dependency>
  36. <groupId>org.springframework.boot</groupId>
  37. <artifactId>spring-boot-autoconfigure</artifactId>
  38. <scope>provided</scope>
  39. </dependency>
  40. <dependency>
  41. <groupId>junit</groupId>
  42. <artifactId>junit</artifactId>
  43. <scope>provided</scope>
  44. </dependency>
  45. </dependencies>
  46. <profiles>
  47. <profile>
  48. <id>ibps-8081</id>
  49. <activation>
  50. <activeByDefault>true</activeByDefault>
  51. </activation>
  52. <build>
  53. <plugins>
  54. <plugin>
  55. <artifactId>maven-compiler-plugin</artifactId>
  56. <version>3.3</version>
  57. <configuration>
  58. <source>1.8</source>
  59. <target>1.8</target>
  60. <encoding>UTF-8</encoding>
  61. </configuration>
  62. </plugin>
  63. </plugins>
  64. </build>
  65. </profile>
  66. <profile>
  67. <id>ibps-8082</id>
  68. <build>
  69. <plugins>
  70. <plugin>
  71. <artifactId>maven-compiler-plugin</artifactId>
  72. <version>3.3</version>
  73. <configuration>
  74. <source>1.8</source>
  75. <target>1.8</target>
  76. <encoding>UTF-8</encoding>
  77. </configuration>
  78. </plugin>
  79. <!-- <plugin>
  80. <groupId>com.pyx4me</groupId>
  81. <artifactId>proguard-maven-plugin</artifactId>
  82. <executions>
  83. <execution>
  84. <phase>package</phase>
  85. <goals>
  86. <goal>proguard</goal>
  87. </goals>
  88. </execution>
  89. </executions>
  90. <configuration>
  91. <obfuscate>true</obfuscate>
  92. <libs>
  93. <lib>${JAVA_HOME}/jre/lib/rt.jar</lib>
  94. </libs>
  95. <options>
  96. <option>-ignorewarnings</option>
  97. <option>-keepattributes
  98. Exceptions,InnerClasses,Signature,Deprecated,SourceFile,LineNumberTable,*Annotation*</option>
  99. <option>-keepdirectories</option>
  100. <option>-keep class **.* {public *;protected *;private
  101. &lt;fields&gt;;}</option>
  102. </options>
  103. </configuration>
  104. <dependencies>
  105. <dependency>
  106. <groupId>net.sf.proguard</groupId>
  107. <artifactId>proguard</artifactId>
  108. <version>5.2</version>
  109. <scope>runtime</scope>
  110. </dependency>
  111. </dependencies>
  112. </plugin> -->
  113. </plugins>
  114. </build>
  115. </profile>
  116. </profiles>
  117. </project>