pom.xml 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  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. <artifactId>seecoder-devcloud-core</artifactId>
  6. <version>0.1.0</version>
  7. <description>Demo project for Spring Boot</description>
  8. <parent>
  9. <artifactId>seecoder-devcloud-parent</artifactId>
  10. <groupId>cn.seecoder</groupId>
  11. <version>0.1.0</version>
  12. </parent>
  13. <properties>
  14. <java.version>1.8</java.version>
  15. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  16. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  17. <spring-boot.version>2.3.7.RELEASE</spring-boot.version>
  18. </properties>
  19. <dependencies>
  20. <dependency>
  21. <groupId>cn.seecoder</groupId>
  22. <artifactId>seecoder-devcloud-api</artifactId>
  23. <version>0.1.0</version>
  24. </dependency>
  25. <dependency>
  26. <groupId>cn.seecoder</groupId>
  27. <artifactId>seecoder-devcloud-web</artifactId>
  28. <version>0.1.0</version>
  29. </dependency>
  30. <dependency>
  31. <groupId>org.springframework.boot</groupId>
  32. <artifactId>spring-boot-configuration-processor</artifactId>
  33. <optional>true</optional>
  34. </dependency>
  35. <dependency>
  36. <groupId>junit</groupId>
  37. <artifactId>junit</artifactId>
  38. <scope>test</scope>
  39. </dependency>
  40. <dependency>
  41. <groupId>org.projectlombok</groupId>
  42. <artifactId>lombok</artifactId>
  43. <optional>true</optional>
  44. </dependency>
  45. <dependency>
  46. <groupId>org.springframework.boot</groupId>
  47. <artifactId>spring-boot-starter-test</artifactId>
  48. <scope>test</scope>
  49. <exclusions>
  50. <exclusion>
  51. <groupId>org.junit.vintage</groupId>
  52. <artifactId>junit-vintage-engine</artifactId>
  53. </exclusion>
  54. </exclusions>
  55. </dependency>
  56. </dependencies>
  57. <dependencyManagement>
  58. <dependencies>
  59. <dependency>
  60. <groupId>org.springframework.boot</groupId>
  61. <artifactId>spring-boot-dependencies</artifactId>
  62. <version>${spring-boot.version}</version>
  63. <type>pom</type>
  64. <scope>import</scope>
  65. </dependency>
  66. </dependencies>
  67. </dependencyManagement>
  68. </project>