pom.xml 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  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. <parent>
  6. <groupId>org.springframework.boot</groupId>
  7. <artifactId>spring-boot-starter-parent</artifactId>
  8. <version>2.3.4.RELEASE</version>
  9. <relativePath/> <!-- lookup parent from repository -->
  10. </parent>
  11. <groupId>com.chinatower.base</groupId>
  12. <artifactId>base-demo</artifactId>
  13. <version>0.0.1-SNAPSHOT</version>
  14. <name>base-demo</name>
  15. <description>base-demo</description>
  16. <properties>
  17. <java.version>1.8</java.version>
  18. </properties>
  19. <dependencies>
  20. <dependency>
  21. <groupId>org.springframework.boot</groupId>
  22. <artifactId>spring-boot-starter-web</artifactId>
  23. </dependency>
  24. <dependency>
  25. <groupId>org.springframework.boot</groupId>
  26. <artifactId>spring-boot-starter-test</artifactId>
  27. <scope>test</scope>
  28. </dependency>
  29. <dependency>
  30. <groupId>mysql</groupId>
  31. <artifactId>mysql-connector-java</artifactId>
  32. </dependency>
  33. <!-- https://mvnrepository.com/artifact/org.mybatis.spring.boot/mybatis-spring-boot-starter -->
  34. <dependency>
  35. <groupId>org.mybatis.spring.boot</groupId>
  36. <artifactId>mybatis-spring-boot-starter</artifactId>
  37. <version>2.3.1</version>
  38. </dependency>
  39. <!-- <dependency>-->
  40. <!-- <groupId>com.alibaba.boot</groupId>-->
  41. <!-- <artifactId>nacos-config-spring-boot-starter</artifactId>-->
  42. <!-- <version>0.2.12</version>-->
  43. <!-- </dependency>-->
  44. <!-- <dependency>-->
  45. <!-- <groupId>com.alibaba.boot</groupId>-->
  46. <!-- <artifactId>nacos-discovery-spring-boot-starter</artifactId>-->
  47. <!-- <version>0.2.12</version>-->
  48. <!-- </dependency>-->
  49. <!-- <dependency>-->
  50. <!-- <groupId>com.alibaba.nacos</groupId>-->
  51. <!-- <artifactId>nacos-client</artifactId>-->
  52. <!-- <version></version>-->
  53. <!-- </dependency>-->
  54. <dependency>
  55. <groupId>com.alibaba.cloud</groupId>
  56. <artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>
  57. <version>2.2.1.RELEASE</version>
  58. </dependency>
  59. <dependency>
  60. <groupId>com.alibaba.cloud</groupId>
  61. <artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
  62. <version>2.2.1.RELEASE</version>
  63. </dependency>
  64. <!-- https://mvnrepository.com/artifact/org.springframework.cloud/spring-cloud-starter-openfeign -->
  65. <dependency>
  66. <groupId>org.springframework.cloud</groupId>
  67. <artifactId>spring-cloud-starter-openfeign</artifactId>
  68. <version>2.2.4.RELEASE</version>
  69. </dependency>
  70. <dependency>
  71. <groupId>com.chinatower.platform</groupId>
  72. <artifactId>video-api-analysis</artifactId>
  73. <version>2.6.0</version>
  74. </dependency>
  75. <dependency>
  76. <groupId>com.chinatower.platform</groupId>
  77. <artifactId>video-api-video</artifactId>
  78. <version>2.6.0</version>
  79. </dependency>
  80. <dependency>
  81. <groupId>com.chinatower.platform</groupId>
  82. <artifactId>video-api-device</artifactId>
  83. <version>2.6.0</version>
  84. </dependency>
  85. <!-- <dependency>-->
  86. <!-- <groupId>org.springframework.cloud</groupId>-->
  87. <!-- <artifactId>spring-cloud-starter-openfeign</artifactId>-->
  88. <!-- <version></version>-->
  89. <!-- </dependency>-->
  90. </dependencies>
  91. <build>
  92. <plugins>
  93. <plugin>
  94. <groupId>org.springframework.boot</groupId>
  95. <artifactId>spring-boot-maven-plugin</artifactId>
  96. </plugin>
  97. </plugins>
  98. </build>
  99. </project>