pom.xml 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139
  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>cn.com.ctop</groupId>
  23. <artifactId>module-toutiao</artifactId>
  24. <version>2.0.2</version>
  25. </dependency>
  26. <dependency>
  27. <groupId>cn.com.ctop</groupId>
  28. <artifactId>module-kuaishou</artifactId>
  29. <version>2.0.2</version>
  30. </dependency>-->
  31. <dependency>
  32. <groupId>com.lgg.jave</groupId>
  33. <artifactId>jave</artifactId>
  34. <version>1.0.2</version>
  35. </dependency>
  36. <dependency>
  37. <groupId>junit</groupId>
  38. <artifactId>junit</artifactId>
  39. <version>4.11</version>
  40. <scope>test</scope>
  41. </dependency>
  42. <dependency>
  43. <groupId>com.google.code.gson</groupId>
  44. <artifactId>gson</artifactId>
  45. </dependency>
  46. <dependency>
  47. <groupId>com.aliyun.oss</groupId>
  48. <artifactId>aliyun-sdk-oss</artifactId>
  49. <version>3.5.0</version>
  50. <scope>compile</scope>
  51. </dependency>
  52. <dependency>
  53. <groupId>us.codecraft</groupId>
  54. <artifactId>webmagic-core</artifactId>
  55. <version>0.7.3</version>
  56. <scope>compile</scope>
  57. </dependency>
  58. <dependency>
  59. <groupId>net.sourceforge.javacsv</groupId>
  60. <artifactId>javacsv</artifactId>
  61. <version>2.0</version>
  62. </dependency>
  63. </dependencies>
  64. <build>
  65. <!--
  66. <plugins>
  67. <plugin>
  68. <groupId>org.springframework.boot</groupId>
  69. <artifactId>spring-boot-maven-plugin</artifactId>
  70. <configuration>
  71. <includeSystemScope>true</includeSystemScope>
  72. </configuration>
  73. </plugin>
  74. </plugins>-->
  75. <resources>
  76. <resource>
  77. <directory>lib</directory>
  78. <targetPath>BOOT-INF/lib/</targetPath>
  79. <includes>
  80. <include>**/*.jar</include>
  81. </includes>
  82. </resource>
  83. <resource>
  84. <directory>src/main/resources</directory>
  85. <targetPath>BOOT-INF/classes/</targetPath>
  86. </resource>
  87. <!-- 解决MyBatis配置文件引入问题 -->
  88. <resource>
  89. <directory>src/main/java</directory>
  90. <includes>
  91. <include>**/*.properties</include>
  92. <include>**/*.xml</include>
  93. </includes>
  94. <!-- 是否替换资源中的属性-->
  95. <filtering>false</filtering>
  96. </resource>
  97. <resource>
  98. <directory>src/main/resources</directory>
  99. </resource>
  100. </resources>
  101. </build>
  102. <repositories>
  103. <!-- 配置nexus远程仓库 -->
  104. <repository>
  105. <id>nexus</id>
  106. <name>Nexus Snapshot Repository</name>
  107. <url>http://39.106.184.70:8081/nexus/content/groups/public/</url>
  108. <releases>
  109. <enabled>true</enabled>
  110. </releases>
  111. <snapshots>
  112. <enabled>false</enabled>
  113. </snapshots>
  114. </repository>
  115. </repositories>
  116. <!-- 配置从哪个仓库中下载构件,即jar包 -->
  117. </project>