pom.xml 3.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  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. <module>api</module>
  14. </modules>
  15. <properties>
  16. <java.version>1.8</java.version>
  17. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  18. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  19. <spring-boot.version>2.3.4.RELEASE</spring-boot.version>
  20. <maven.compiler.source>1.8</maven.compiler.source>
  21. <maven.compiler.target>1.8</maven.compiler.target>
  22. <lombok.version>1.18.32</lombok.version>
  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. <build>
  61. <pluginManagement>
  62. <plugins>
  63. <plugin>
  64. <groupId>org.apache.maven.plugins</groupId>
  65. <artifactId>maven-compiler-plugin</artifactId>
  66. <version>3.8.1</version>
  67. <configuration>
  68. <source>${maven.compiler.source}</source>
  69. <target>${maven.compiler.target}</target>
  70. <annotationProcessorPaths>
  71. <path>
  72. <groupId>org.projectlombok</groupId>
  73. <artifactId>lombok</artifactId>
  74. <version>${lombok.version}</version>
  75. </path>
  76. </annotationProcessorPaths>
  77. </configuration>
  78. </plugin>
  79. </plugins>
  80. </pluginManagement>
  81. </build>
  82. </project>