pom.xml 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <modelVersion>4.0.0</modelVersion>
  6. <groupId>com.seecoder</groupId>
  7. <artifactId>seec-unified</artifactId>
  8. <version>0.0.1</version>
  9. <parent>
  10. <groupId>org.springframework.boot</groupId>
  11. <artifactId>spring-boot-starter-parent</artifactId>
  12. <version>2.7.3</version>
  13. <relativePath/>
  14. </parent>
  15. <properties>
  16. <maven.compiler.source>8</maven.compiler.source>
  17. <maven.compiler.target>8</maven.compiler.target>
  18. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  19. <finalName>${project.artifactId}-${project.version}</finalName>
  20. </properties>
  21. <dependencies>
  22. <dependency>
  23. <groupId>org.springframework.boot</groupId>
  24. <artifactId>spring-boot-starter-web</artifactId>
  25. </dependency>
  26. <dependency>
  27. <groupId>org.springframework.boot</groupId>
  28. <artifactId>spring-boot-starter-test</artifactId>
  29. <scope>test</scope>
  30. </dependency>
  31. <dependency>
  32. <groupId>org.springframework.boot</groupId>
  33. <artifactId>spring-boot-configuration-processor</artifactId>
  34. <optional>true</optional>
  35. </dependency>
  36. <dependency>
  37. <groupId>org.springframework.boot</groupId>
  38. <artifactId>spring-boot-starter-mail</artifactId>
  39. </dependency>
  40. <dependency>
  41. <groupId>org.projectlombok</groupId>
  42. <artifactId>lombok</artifactId>
  43. </dependency>
  44. <!--持久化-->
  45. <dependency>
  46. <groupId>org.springframework.boot</groupId>
  47. <artifactId>spring-boot-starter-data-jpa</artifactId>
  48. </dependency>
  49. <dependency>
  50. <groupId>mysql</groupId>
  51. <artifactId>mysql-connector-java</artifactId>
  52. <version>8.0.28</version>
  53. </dependency>
  54. <!--阿里云依赖-->
  55. <dependency>
  56. <groupId>com.aliyun</groupId>
  57. <artifactId>aliyun-java-sdk-core</artifactId>
  58. <version>4.5.20</version>
  59. </dependency>
  60. <!--内部依赖-->
  61. <dependency>
  62. <groupId>com.seecoder</groupId>
  63. <artifactId>common-core</artifactId>
  64. <version>1.0.0</version>
  65. </dependency>
  66. <!--统一-->
  67. <dependency>
  68. <groupId>com.aliyun.oss</groupId>
  69. <artifactId>aliyun-sdk-oss</artifactId>
  70. <version>3.1.0</version>
  71. </dependency>
  72. <dependency>
  73. <groupId>commons-io</groupId>
  74. <artifactId>commons-io</artifactId>
  75. <version>2.4</version>
  76. </dependency>
  77. <!-- https://mvnrepository.com/artifact/io.kubernetes/client-java -->
  78. <dependency>
  79. <groupId>io.kubernetes</groupId>
  80. <artifactId>client-java</artifactId>
  81. <version>10.0.0</version>
  82. </dependency>
  83. <!-- https://mvnrepository.com/artifact/io.fabric8/kubernetes-client -->
  84. <dependency>
  85. <groupId>io.fabric8</groupId>
  86. <artifactId>kubernetes-client</artifactId>
  87. <version>5.0.0</version>
  88. </dependency>
  89. </dependencies>
  90. <build>
  91. <finalName>${finalName}</finalName>
  92. <plugins>
  93. <plugin>
  94. <groupId>org.springframework.boot</groupId>
  95. <artifactId>spring-boot-maven-plugin</artifactId>
  96. </plugin>
  97. </plugins>
  98. </build>
  99. <distributionManagement>
  100. <repository>
  101. <id>nexus</id>
  102. <url>http://nexus.seecoder.cn/repository/maven-releases</url>
  103. </repository>
  104. </distributionManagement>
  105. </project>