pom.xml 3.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  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. <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. <lombok.version>1.18.32</lombok.version>
  24. </properties>
  25. <dependencies>
  26. <dependency>
  27. <groupId>com.alibaba</groupId>
  28. <artifactId>fastjson</artifactId>
  29. <version>1.2.47</version>
  30. </dependency>
  31. </dependencies>
  32. <dependencyManagement>
  33. <dependencies>
  34. <dependency>
  35. <groupId>org.springframework.boot</groupId>
  36. <artifactId>spring-boot-dependencies</artifactId>
  37. <version>${spring-boot.version}</version>
  38. <type>pom</type>
  39. <scope>import</scope>
  40. </dependency>
  41. <dependency>
  42. <groupId>com.nju.edu</groupId>
  43. <artifactId>seecoder-gitlab-client</artifactId>
  44. <!-- 这个包引入的log产生了绑定冲突,所以排除掉 -->
  45. <exclusions>
  46. <exclusion>
  47. <groupId>org.apache.logging.log4j</groupId>
  48. <artifactId>log4j-slf4j-impl</artifactId>
  49. </exclusion>
  50. </exclusions>
  51. <version>0.1.8</version>
  52. </dependency>
  53. </dependencies>
  54. </dependencyManagement>
  55. <distributionManagement>
  56. <repository>
  57. <id>nexus</id>
  58. <url>http://nexus.seecoder.cn/repository/maven-releases</url>
  59. </repository>
  60. </distributionManagement>
  61. <build>
  62. <pluginManagement>
  63. <plugins>
  64. <plugin>
  65. <groupId>org.apache.maven.plugins</groupId>
  66. <artifactId>maven-compiler-plugin</artifactId>
  67. <version>3.8.1</version>
  68. <configuration>
  69. <source>${maven.compiler.source}</source>
  70. <target>${maven.compiler.target}</target>
  71. <annotationProcessorPaths>
  72. <path>
  73. <groupId>org.projectlombok</groupId>
  74. <artifactId>lombok</artifactId>
  75. <version>${lombok.version}</version>
  76. </path>
  77. </annotationProcessorPaths>
  78. </configuration>
  79. </plugin>
  80. </plugins>
  81. </pluginManagement>
  82. </build>
  83. </project>