pom.xml 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  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. </dependencies>
  60. <build>
  61. <resources>
  62. <resource>
  63. <directory>lib</directory>
  64. <targetPath>BOOT-INF/lib/</targetPath>
  65. <includes>
  66. <include>**/*.jar</include>
  67. </includes>
  68. </resource>
  69. <resource>
  70. <directory>src/main/resources</directory>
  71. <targetPath>BOOT-INF/classes/</targetPath>
  72. </resource>
  73. <!-- 解决MyBatis配置文件引入问题 -->
  74. <resource>
  75. <directory>src/main/java</directory>
  76. <includes>
  77. <include>**/*.properties</include>
  78. <include>**/*.xml</include>
  79. </includes>
  80. <!-- 是否替换资源中的属性-->
  81. <filtering>false</filtering>
  82. </resource>
  83. <resource>
  84. <directory>src/main/resources</directory>
  85. </resource>
  86. </resources>
  87. </build>
  88. </project>