pom.xml 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  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>0.0.1</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.microsoft.sqlserver</groupId>
  28. <artifactId>mssql-jdbc</artifactId>
  29. </dependency>
  30. <dependency>
  31. <groupId>com.baomidou</groupId>
  32. <artifactId>mybatis-plus-spring-boot3-starter</artifactId>
  33. <version>3.5.9</version>
  34. </dependency>
  35. <!-- https://mvnrepository.com/artifact/com.hikvision.ga/artemis-http-client -->
  36. <dependency>
  37. <groupId>com.hikvision.ga</groupId>
  38. <artifactId>artemis-http-client</artifactId>
  39. <version>1.1.3</version>
  40. </dependency>
  41. </dependencies>
  42. <build>
  43. <plugins>
  44. <plugin>
  45. <groupId>org.springframework.boot</groupId>
  46. <artifactId>spring-boot-maven-plugin</artifactId>
  47. </plugin>
  48. </plugins>
  49. </build>
  50. </project>