pom.xml 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151
  1. <project xmlns="http://maven.apache.org/POM/4.0.0"
  2. 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>org.jeecgframework.boot</groupId>
  6. <artifactId>jeecg-boot-parent</artifactId>
  7. <version>2.4.2</version>
  8. </parent>
  9. <modelVersion>4.0.0</modelVersion>
  10. <artifactId>jeecg-boot-module-system</artifactId>
  11. <repositories>
  12. <repository>
  13. <id>aliyun</id>
  14. <name>aliyun Repository</name>
  15. <url>http://maven.aliyun.com/nexus/content/groups/public</url>
  16. <snapshots>
  17. <enabled>false</enabled>
  18. </snapshots>
  19. </repository>
  20. <repository>
  21. <id>jeecg</id>
  22. <name>jeecg Repository</name>
  23. <url>http://maven.jeecg.org/nexus/content/repositories/jeecg</url>
  24. <snapshots>
  25. <enabled>false</enabled>
  26. </snapshots>
  27. </repository>
  28. </repositories>
  29. <dependencies>
  30. <dependency>
  31. <groupId>javax.mail</groupId>
  32. <artifactId>mail</artifactId>
  33. <version>1.4.7</version>
  34. </dependency>
  35. <dependency>
  36. <groupId>org.apache.commons</groupId>
  37. <artifactId>commons-email</artifactId>
  38. <version>1.4</version>
  39. </dependency>
  40. <dependency>
  41. <groupId>com.google.code.gson</groupId>
  42. <artifactId>gson</artifactId>
  43. <version>2.8.2</version>
  44. </dependency>
  45. <dependency>
  46. <groupId>org.apache.httpcomponents</groupId>
  47. <artifactId>httpclient</artifactId>
  48. <version>4.5.2</version>
  49. </dependency>
  50. <dependency>
  51. <groupId>org.apache.httpcomponents</groupId>
  52. <artifactId>httpcore</artifactId>
  53. <version>4.4.5</version>
  54. </dependency>
  55. <dependency>
  56. <groupId>com.belerweb</groupId>
  57. <artifactId>pinyin4j</artifactId>
  58. <version>2.5.0</version>
  59. </dependency>
  60. <dependency>
  61. <groupId>org.codehaus.jackson</groupId>
  62. <artifactId>jackson-mapper-asl</artifactId>
  63. <version>1.9.9</version>
  64. </dependency>
  65. <!--<dependency>
  66. <groupId>com.alipay.sdk</groupId>
  67. <artifactId>alipay-sdk-java</artifactId>
  68. <version>3.7.4.ALL</version>
  69. </dependency>-->
  70. <dependency>
  71. <groupId>org.jeecgframework.boot</groupId>
  72. <artifactId>jeecg-system-local-api</artifactId>
  73. </dependency>
  74. <dependency>
  75. <groupId>org.jeecgframework.boot</groupId>
  76. <artifactId>jeecg-boot-starter-redis</artifactId>
  77. </dependency>
  78. <dependency>
  79. <groupId>org.jeecgframework.boot</groupId>
  80. <artifactId>jeecg-boot-module-demo</artifactId>
  81. <version>${jeecgboot.version}</version>
  82. </dependency>
  83. <!-- 积木报表 -->
  84. <!-- <dependency>
  85. <groupId>com.jimureport</groupId>
  86. <artifactId>spring-boot-starter-jimureport</artifactId>
  87. <version>1.1.09-beta</version>
  88. <exclusions>
  89. <exclusion>
  90. <artifactId>autopoi-web</artifactId>
  91. <groupId>org.jeecgframework</groupId>
  92. </exclusion>
  93. </exclusions>
  94. </dependency>-->
  95. <!-- 支付接口配置 -->
  96. <!--<dependency>
  97. <groupId>com.alipay.sdk</groupId>
  98. <artifactId>alipay-easysdk</artifactId>
  99. <version>2.0.2</version>
  100. </dependency>-->
  101. <dependency>
  102. <groupId>com.alipay.sdk</groupId>
  103. <artifactId>alipay-easysdk</artifactId>
  104. <version>2.1.2</version>
  105. </dependency>
  106. <!-- 支付接口需要依赖commons-logging:jar:1.1.1 -->
  107. <!-- https://mvnrepository.com/artifact/commons-logging/commons-logging -->
  108. <dependency>
  109. <groupId>commons-logging</groupId>
  110. <artifactId>commons-logging</artifactId>
  111. <version>1.1.1</version>
  112. </dependency>
  113. <!-- 生成支付二维码需要jar -->
  114. <!-- https://mvnrepository.com/artifact/com.google.zxing/core -->
  115. <dependency>
  116. <groupId>com.google.zxing</groupId>
  117. <artifactId>core</artifactId>
  118. <version>3.3.3</version>
  119. </dependency>
  120. <dependency>
  121. <groupId>org.jeecgframework.jimureport</groupId>
  122. <artifactId>spring-boot-starter-jimureport</artifactId>
  123. <version>1.3.4-beta</version>
  124. </dependency>
  125. </dependencies>
  126. <build>
  127. <plugins>
  128. <plugin>
  129. <groupId>org.springframework.boot</groupId>
  130. <artifactId>spring-boot-maven-plugin</artifactId>
  131. <configuration>
  132. <!--微服务模式下修改为true,跳过此打包插件,否则微服务模块无法引用-->
  133. <skip>false</skip>
  134. </configuration>
  135. </plugin>
  136. </plugins>
  137. </build>
  138. </project>