pom.xml 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137
  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. </dependency>
  30. <dependency>
  31. <groupId>junit</groupId>
  32. <artifactId>junit</artifactId>
  33. <version>4.11</version>
  34. <scope>test</scope>
  35. </dependency>
  36. <dependency>
  37. <groupId>com.google.code.gson</groupId>
  38. <artifactId>gson</artifactId>
  39. </dependency>
  40. <dependency>
  41. <groupId>com.aliyun.oss</groupId>
  42. <artifactId>aliyun-sdk-oss</artifactId>
  43. <version>3.5.0</version>
  44. <scope>compile</scope>
  45. </dependency>
  46. <dependency>
  47. <groupId>us.codecraft</groupId>
  48. <artifactId>webmagic-core</artifactId>
  49. <version>0.7.3</version>
  50. <scope>compile</scope>
  51. </dependency>
  52. <dependency>
  53. <groupId>net.sourceforge.javacsv</groupId>
  54. <artifactId>javacsv</artifactId>
  55. <version>2.0</version>
  56. </dependency>
  57. <dependency>
  58. <groupId>com.twelvemonkeys.imageio</groupId>
  59. <artifactId>imageio-jpeg</artifactId>
  60. <version>3.3.2</version>
  61. </dependency>
  62. <!-- xxl-rpc-core -->
  63. <dependency>
  64. <groupId>com.xuxueli</groupId>
  65. <artifactId>xxl-rpc-core</artifactId>
  66. <version>1.5.0</version>
  67. </dependency>
  68. <!-- groovy-all -->
  69. <dependency>
  70. <groupId>org.codehaus.groovy</groupId>
  71. <artifactId>groovy</artifactId>
  72. <version>${groovy.version}</version>
  73. </dependency>
  74. <dependency>
  75. <groupId>com.qcloud</groupId>
  76. <artifactId>cos_api</artifactId>
  77. <version>5.6.25</version>
  78. </dependency>
  79. <dependency>
  80. <groupId>com.rabbitmq</groupId>
  81. <artifactId>amqp-client</artifactId>
  82. </dependency>
  83. <dependency>
  84. <groupId>com.github.tony19</groupId>
  85. <artifactId>apktool-lib</artifactId>
  86. <version>1.4.4-3</version>
  87. <scope>compile</scope>
  88. </dependency>
  89. <dependency>
  90. <groupId>com.googlecode.plist</groupId>
  91. <artifactId>dd-plist</artifactId>
  92. <version>1.16</version>
  93. <scope>compile</scope>
  94. </dependency>
  95. </dependencies>
  96. <build>
  97. <resources>
  98. <resource>
  99. <directory>lib</directory>
  100. <targetPath>BOOT-INF/lib/</targetPath>
  101. <includes>
  102. <include>**/*.jar</include>
  103. </includes>
  104. </resource>
  105. <resource>
  106. <directory>src/main/resources</directory>
  107. <targetPath>BOOT-INF/classes/</targetPath>
  108. </resource>
  109. <!-- 解决MyBatis配置文件引入问题 -->
  110. <resource>
  111. <directory>src/main/java</directory>
  112. <includes>
  113. <include>**/*.properties</include>
  114. <include>**/*.xml</include>
  115. </includes>
  116. <!-- 是否替换资源中的属性-->
  117. <filtering>false</filtering>
  118. </resource>
  119. <resource>
  120. <directory>src/main/resources</directory>
  121. </resource>
  122. </resources>
  123. </build>
  124. </project>