pom.xml 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  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. </dependencies>
  31. <dependencyManagement>
  32. <dependencies>
  33. <dependency>
  34. <groupId>org.springframework.boot</groupId>
  35. <artifactId>spring-boot-dependencies</artifactId>
  36. <version>${spring-boot.version}</version>
  37. <type>pom</type>
  38. <scope>import</scope>
  39. </dependency>
  40. <dependency>
  41. <groupId>com.nju.edu</groupId>
  42. <artifactId>seecoder-gitlab-client</artifactId>
  43. <!-- 这个包引入的log产生了绑定冲突,所以排除掉 -->
  44. <exclusions>
  45. <exclusion>
  46. <groupId>org.apache.logging.log4j</groupId>
  47. <artifactId>log4j-slf4j-impl</artifactId>
  48. </exclusion>
  49. </exclusions>
  50. <version>0.1.8</version>
  51. </dependency>
  52. </dependencies>
  53. </dependencyManagement>
  54. <distributionManagement>
  55. <repository>
  56. <id>nexus</id>
  57. <url>http://nexus.seecoder.cn/repository/maven-releases</url>
  58. </repository>
  59. </distributionManagement>
  60. </project>