pom.xml 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150
  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. <artifactId>jeecg-boot-parent</artifactId>
  6. <groupId>org.jeecgframework.boot</groupId>
  7. <version>2.0.2</version>
  8. </parent>
  9. <modelVersion>4.0.0</modelVersion>
  10. <groupId>cn.com.ctop</groupId>
  11. <artifactId>module-common</artifactId>
  12. <version>2.0.2</version>
  13. <name>module-common</name>
  14. <properties>
  15. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  16. <maven.compiler.source>1.7</maven.compiler.source>
  17. <maven.compiler.target>1.7</maven.compiler.target>
  18. </properties>
  19. <dependencies>
  20. <dependency>
  21. <groupId>org.jeecgframework.boot</groupId>
  22. <artifactId>jeecg-boot-base-common</artifactId>
  23. <version>2.0.2</version>
  24. </dependency>
  25. <dependency>
  26. <groupId>thirtpart</groupId>
  27. <artifactId>jave</artifactId>
  28. <version>1.0</version>
  29. <scope>system</scope>
  30. <systemPath>${project.basedir}/src/main/resources/lib/jave-1.0.jar</systemPath>
  31. </dependency>
  32. <dependency>
  33. <groupId>junit</groupId>
  34. <artifactId>junit</artifactId>
  35. <version>4.11</version>
  36. <scope>test</scope>
  37. </dependency>
  38. <dependency>
  39. <groupId>com.google.code.gson</groupId>
  40. <artifactId>gson</artifactId>
  41. </dependency>
  42. <dependency>
  43. <groupId>com.aliyun.oss</groupId>
  44. <artifactId>aliyun-sdk-oss</artifactId>
  45. <version>3.5.0</version>
  46. <scope>compile</scope>
  47. </dependency>
  48. <dependency>
  49. <groupId>us.codecraft</groupId>
  50. <artifactId>webmagic-core</artifactId>
  51. <version>0.7.3</version>
  52. <scope>compile</scope>
  53. </dependency>
  54. <dependency>
  55. <groupId>net.sourceforge.javacsv</groupId>
  56. <artifactId>javacsv</artifactId>
  57. <version>2.0</version>
  58. </dependency>
  59. <dependency>
  60. <groupId>com.twelvemonkeys.imageio</groupId>
  61. <artifactId>imageio-jpeg</artifactId>
  62. <version>3.3.2</version>
  63. </dependency>
  64. <!-- xxl-rpc-core -->
  65. <dependency>
  66. <groupId>com.xuxueli</groupId>
  67. <artifactId>xxl-rpc-core</artifactId>
  68. <version>1.5.0</version>
  69. </dependency>
  70. <!-- groovy-all -->
  71. <dependency>
  72. <groupId>org.codehaus.groovy</groupId>
  73. <artifactId>groovy</artifactId>
  74. <version>${groovy.version}</version>
  75. </dependency>
  76. <dependency>
  77. <groupId>com.qcloud</groupId>
  78. <artifactId>cos_api</artifactId>
  79. <version>5.6.25</version>
  80. </dependency>
  81. <dependency>
  82. <groupId>com.rabbitmq</groupId>
  83. <artifactId>amqp-client</artifactId>
  84. </dependency>
  85. <dependency>
  86. <groupId>com.github.tony19</groupId>
  87. <artifactId>apktool-lib</artifactId>
  88. <version>1.4.4-3</version>
  89. <scope>compile</scope>
  90. </dependency>
  91. <dependency>
  92. <groupId>com.googlecode.plist</groupId>
  93. <artifactId>dd-plist</artifactId>
  94. <version>1.16</version>
  95. <scope>compile</scope>
  96. </dependency>
  97. <dependency>
  98. <groupId>org.elasticsearch.client</groupId>
  99. <artifactId>elasticsearch-rest-high-level-client</artifactId>
  100. <version>7.6.1</version>
  101. </dependency>
  102. <dependency>
  103. <groupId>org.elasticsearch.client</groupId>
  104. <artifactId>elasticsearch-rest-client</artifactId>
  105. <version>7.6.1</version>
  106. </dependency>
  107. <dependency>
  108. <groupId>org.elasticsearch</groupId>
  109. <artifactId>elasticsearch</artifactId>
  110. <version>7.6.1</version>
  111. </dependency>
  112. <!--mongodb-->
  113. <dependency>
  114. <groupId>org.springframework.boot</groupId>
  115. <artifactId>spring-boot-starter-data-mongodb</artifactId>
  116. </dependency>
  117. <dependency>
  118. <groupId>org.mongodb</groupId>
  119. <artifactId>mongodb-driver-sync</artifactId>
  120. <version>4.10.2</version>
  121. </dependency>
  122. </dependencies>
  123. <build>
  124. <resources>
  125. <!-- 解决MyBatis配置文件引入问题 -->
  126. <resource>
  127. <directory>src/main/java</directory>
  128. <includes>
  129. <include>**/*.properties</include>
  130. <include>**/*.xml</include>
  131. </includes>
  132. <!-- 是否替换资源中的属性-->
  133. <filtering>false</filtering>
  134. </resource>
  135. <resource>
  136. <directory>src/main/resources</directory>
  137. </resource>
  138. </resources>
  139. </build>
  140. </project>