pom.xml 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  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.thyy.business</groupId>
  7. <artifactId>thyy-business</artifactId>
  8. <version>0.0.1</version>
  9. </parent>
  10. <artifactId>thyy-haikang</artifactId>
  11. <version>${thyy-haikang}</version>
  12. <name>thyy-haikang</name>
  13. <description>thyy-haikang</description>
  14. <properties>
  15. <java.version>21</java.version>
  16. </properties>
  17. <dependencies>
  18. <dependency>
  19. <groupId>org.springframework.boot</groupId>
  20. <artifactId>spring-boot-starter</artifactId>
  21. </dependency>
  22. <dependency>
  23. <groupId>org.thyy.business</groupId>
  24. <artifactId>thyy-utils</artifactId>
  25. </dependency>
  26. <dependency>
  27. <groupId>com.baomidou</groupId>
  28. <artifactId>mybatis-plus-spring-boot3-starter</artifactId>
  29. <version>3.5.9</version>
  30. </dependency>
  31. <!-- https://mvnrepository.com/artifact/com.hikvision.ga/artemis-http-client -->
  32. <dependency>
  33. <groupId>com.hikvision.ga</groupId>
  34. <artifactId>artemis-http-client</artifactId>
  35. <version>1.1.3</version>
  36. </dependency>
  37. </dependencies>
  38. <build>
  39. <plugins>
  40. <plugin>
  41. <groupId>org.springframework.boot</groupId>
  42. <artifactId>spring-boot-maven-plugin</artifactId>
  43. </plugin>
  44. </plugins>
  45. </build>
  46. </project>