pom.xml 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
  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. </modules>
  14. <properties>
  15. <java.version>1.8</java.version>
  16. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  17. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  18. <spring-boot.version>2.3.4.RELEASE</spring-boot.version>
  19. <maven.compiler.source>1.8</maven.compiler.source>
  20. <maven.compiler.target>1.8</maven.compiler.target>
  21. <lombok.version>1.18.32</lombok.version>
  22. </properties>
  23. <dependencies>
  24. <dependency>
  25. <groupId>com.alibaba</groupId>
  26. <artifactId>fastjson</artifactId>
  27. <version>1.2.47</version>
  28. </dependency>
  29. </dependencies>
  30. <dependencyManagement>
  31. <dependencies>
  32. <dependency>
  33. <groupId>org.springframework.boot</groupId>
  34. <artifactId>spring-boot-dependencies</artifactId>
  35. <version>${spring-boot.version}</version>
  36. <type>pom</type>
  37. <scope>import</scope>
  38. </dependency>
  39. <dependency>
  40. <groupId>com.nju.edu</groupId>
  41. <artifactId>seecoder-gitlab-client</artifactId>
  42. <!-- 这个包引入的log产生了绑定冲突,所以排除掉 -->
  43. <exclusions>
  44. <exclusion>
  45. <groupId>org.apache.logging.log4j</groupId>
  46. <artifactId>log4j-slf4j-impl</artifactId>
  47. </exclusion>
  48. </exclusions>
  49. <version>0.1.8</version>
  50. </dependency>
  51. </dependencies>
  52. </dependencyManagement>
  53. <distributionManagement>
  54. <repository>
  55. <id>nexus</id>
  56. <url>http://nexus.seecoder.cn/repository/maven-releases</url>
  57. </repository>
  58. </distributionManagement>
  59. <build>
  60. <pluginManagement>
  61. <plugins>
  62. <plugin>
  63. <groupId>org.apache.maven.plugins</groupId>
  64. <artifactId>maven-compiler-plugin</artifactId>
  65. <version>3.8.1</version>
  66. <configuration>
  67. <source>${maven.compiler.source}</source>
  68. <target>${maven.compiler.target}</target>
  69. <annotationProcessorPaths>
  70. <path>
  71. <groupId>org.projectlombok</groupId>
  72. <artifactId>lombok</artifactId>
  73. <version>${lombok.version}</version>
  74. </path>
  75. </annotationProcessorPaths>
  76. </configuration>
  77. </plugin>
  78. </plugins>
  79. </pluginManagement>
  80. </build>
  81. </project>