pom.xml 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  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. <!-- FIXME change it to the project's website -->
  15. <url>http://www.example.com</url>
  16. <properties>
  17. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  18. <maven.compiler.source>1.7</maven.compiler.source>
  19. <maven.compiler.target>1.7</maven.compiler.target>
  20. </properties>
  21. <dependencies>
  22. <dependency>
  23. <groupId>thirtpart</groupId>
  24. <artifactId>jave</artifactId>
  25. <version>1.0</version>
  26. </dependency>
  27. <dependency>
  28. <groupId>junit</groupId>
  29. <artifactId>junit</artifactId>
  30. <version>4.11</version>
  31. <scope>test</scope>
  32. </dependency>
  33. <dependency>
  34. <groupId>com.google.code.gson</groupId>
  35. <artifactId>gson</artifactId>
  36. </dependency>
  37. <dependency>
  38. <groupId>com.aliyun.oss</groupId>
  39. <artifactId>aliyun-sdk-oss</artifactId>
  40. <version>3.5.0</version>
  41. <scope>compile</scope>
  42. </dependency>
  43. <dependency>
  44. <groupId>us.codecraft</groupId>
  45. <artifactId>webmagic-core</artifactId>
  46. <version>0.7.3</version>
  47. <scope>compile</scope>
  48. </dependency>
  49. <dependency>
  50. <groupId>net.sourceforge.javacsv</groupId>
  51. <artifactId>javacsv</artifactId>
  52. <version>2.0</version>
  53. </dependency>
  54. <dependency>
  55. <groupId>com.twelvemonkeys.imageio</groupId>
  56. <artifactId>imageio-jpeg</artifactId>
  57. <version>3.3.2</version>
  58. </dependency>
  59. <!-- xxl-rpc-core -->
  60. <dependency>
  61. <groupId>com.xuxueli</groupId>
  62. <artifactId>xxl-rpc-core</artifactId>
  63. <version>1.5.0</version>
  64. </dependency>
  65. <!-- groovy-all -->
  66. <dependency>
  67. <groupId>org.codehaus.groovy</groupId>
  68. <artifactId>groovy</artifactId>
  69. <version>${groovy.version}</version>
  70. </dependency>
  71. </dependencies>
  72. <build>
  73. <resources>
  74. <resource>
  75. <directory>lib</directory>
  76. <targetPath>BOOT-INF/lib/</targetPath>
  77. <includes>
  78. <include>**/*.jar</include>
  79. </includes>
  80. </resource>
  81. <resource>
  82. <directory>src/main/resources</directory>
  83. <targetPath>BOOT-INF/classes/</targetPath>
  84. </resource>
  85. <!-- 解决MyBatis配置文件引入问题 -->
  86. <resource>
  87. <directory>src/main/java</directory>
  88. <includes>
  89. <include>**/*.properties</include>
  90. <include>**/*.xml</include>
  91. </includes>
  92. <!-- 是否替换资源中的属性-->
  93. <filtering>false</filtering>
  94. </resource>
  95. <resource>
  96. <directory>src/main/resources</directory>
  97. </resource>
  98. </resources>
  99. </build>
  100. </project>