pom.xml 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <groupId>cn.seecoder</groupId>
  6. <artifactId>seecoder-devcloud-parent</artifactId>
  7. <version>0.1.0</version>
  8. <packaging>pom</packaging>
  9. <description>Demo project for Spring Boot</description>
  10. <modules>
  11. <module>common</module>
  12. <module>web</module>
  13. <module>api</module>
  14. <module>query</module>
  15. </modules>
  16. <properties>
  17. <java.version>1.8</java.version>
  18. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  19. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  20. <spring-boot.version>2.3.4.RELEASE</spring-boot.version>
  21. <maven.compiler.source>1.8</maven.compiler.source>
  22. <maven.compiler.target>1.8</maven.compiler.target>
  23. </properties>
  24. <dependencies>
  25. <dependency>
  26. <groupId>com.alibaba</groupId>
  27. <artifactId>fastjson</artifactId>
  28. <version>1.2.47</version>
  29. </dependency>
  30. <dependency>
  31. <groupId>cn.seecoder</groupId>
  32. <artifactId>SeecoderLog</artifactId>
  33. <version>0.2.0-jdk8-SNAPSHOT</version>
  34. </dependency>
  35. </dependencies>
  36. <dependencyManagement>
  37. <dependencies>
  38. <dependency>
  39. <groupId>org.springframework.boot</groupId>
  40. <artifactId>spring-boot-dependencies</artifactId>
  41. <version>${spring-boot.version}</version>
  42. <type>pom</type>
  43. <scope>import</scope>
  44. </dependency>
  45. <dependency>
  46. <groupId>com.nju.edu</groupId>
  47. <artifactId>seecoder-gitlab-client</artifactId>
  48. <!-- 这个包引入的log产生了绑定冲突,所以排除掉 -->
  49. <exclusions>
  50. <exclusion>
  51. <groupId>org.apache.logging.log4j</groupId>
  52. <artifactId>log4j-slf4j-impl</artifactId>
  53. </exclusion>
  54. </exclusions>
  55. <version>0.1.8</version>
  56. </dependency>
  57. </dependencies>
  58. </dependencyManagement>
  59. <distributionManagement>
  60. <repository>
  61. <id>nexus</id>
  62. <url>http://nexus.seecoder.cn/repository/maven-releases</url>
  63. </repository>
  64. </distributionManagement>
  65. </project>