pom.xml 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  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>junit</groupId>
  23. <artifactId>junit</artifactId>
  24. <version>4.11</version>
  25. <scope>test</scope>
  26. </dependency>
  27. <dependency>
  28. <groupId>com.google.code.gson</groupId>
  29. <artifactId>gson</artifactId>
  30. </dependency>
  31. <dependency>
  32. <groupId>com.aliyun.oss</groupId>
  33. <artifactId>aliyun-sdk-oss</artifactId>
  34. <version>3.5.0</version>
  35. <scope>compile</scope>
  36. </dependency>
  37. <dependency>
  38. <groupId>us.codecraft</groupId>
  39. <artifactId>webmagic-core</artifactId>
  40. <version>0.7.3</version>
  41. <scope>compile</scope>
  42. </dependency>
  43. <!--<dependency>
  44. <groupId>org.apache.commons</groupId>
  45. <artifactId>commons-csv</artifactId>
  46. <version>1.5</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. </dependencies>
  55. <build>
  56. <pluginManagement><!-- lock down plugins versions to avoid using Maven defaults (may be moved to parent pom) -->
  57. <plugins>
  58. <!-- clean lifecycle, see https://maven.apache.org/ref/current/maven-core/lifecycles.html#clean_Lifecycle -->
  59. <plugin>
  60. <artifactId>maven-clean-plugin</artifactId>
  61. <version>3.1.0</version>
  62. </plugin>
  63. <!-- default lifecycle, jar packaging: see https://maven.apache.org/ref/current/maven-core/default-bindings.html#Plugin_bindings_for_jar_packaging -->
  64. <plugin>
  65. <artifactId>maven-resources-plugin</artifactId>
  66. <version>3.0.2</version>
  67. </plugin>
  68. <plugin>
  69. <artifactId>maven-compiler-plugin</artifactId>
  70. <version>3.8.0</version>
  71. </plugin>
  72. <plugin>
  73. <artifactId>maven-surefire-plugin</artifactId>
  74. <version>2.22.1</version>
  75. </plugin>
  76. <plugin>
  77. <artifactId>maven-jar-plugin</artifactId>
  78. <version>3.0.2</version>
  79. </plugin>
  80. <plugin>
  81. <artifactId>maven-install-plugin</artifactId>
  82. <version>2.5.2</version>
  83. </plugin>
  84. <plugin>
  85. <artifactId>maven-deploy-plugin</artifactId>
  86. <version>2.8.2</version>
  87. </plugin>
  88. <!-- site lifecycle, see https://maven.apache.org/ref/current/maven-core/lifecycles.html#site_Lifecycle -->
  89. <plugin>
  90. <artifactId>maven-site-plugin</artifactId>
  91. <version>3.7.1</version>
  92. </plugin>
  93. <plugin>
  94. <artifactId>maven-project-info-reports-plugin</artifactId>
  95. <version>3.0.0</version>
  96. </plugin>
  97. </plugins>
  98. </pluginManagement>
  99. </build>
  100. </project>