pom.xml 3.1 KB

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