海康汽车服务

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  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.6.7</version>
  9. <relativePath/> <!-- lookup parent from repository -->
  10. </parent>
  11. <groupId>com.njyunzhi</groupId>
  12. <artifactId>nanyang</artifactId>
  13. <version>0.0.2-hatc</version>
  14. <name>hatc-api</name>
  15. <description>海康接口</description>
  16. <properties>
  17. <java.version>1.8</java.version>
  18. <log4j.version>2.17.0</log4j.version>
  19. </properties>
  20. <dependencies>
  21. <dependency>
  22. <groupId>org.springframework.boot</groupId>
  23. <artifactId>spring-boot-starter-web</artifactId>
  24. </dependency>
  25. <dependency>
  26. <groupId>org.springframework.boot</groupId>
  27. <artifactId>spring-boot-starter-test</artifactId>
  28. <scope>test</scope>
  29. </dependency>
  30. <!--mysql start-->
  31. <dependency>
  32. <groupId>mysql</groupId>
  33. <artifactId>mysql-connector-java</artifactId>
  34. <scope>runtime</scope>
  35. </dependency>
  36. <!--mysql end-->
  37. <!--mybatis-plus start-->
  38. <dependency>
  39. <groupId>com.baomidou</groupId>
  40. <artifactId>mybatis-plus-boot-starter</artifactId>
  41. <version>3.1.1</version>
  42. </dependency>
  43. <!--mybatis-plus end-->
  44. <!--lombok start-->
  45. <dependency>
  46. <groupId>org.projectlombok</groupId>
  47. <artifactId>lombok</artifactId>
  48. <optional>true</optional>
  49. </dependency>
  50. <!--lombok end-->
  51. <dependency>
  52. <groupId>hatc</groupId>
  53. <artifactId>sdk</artifactId>
  54. <scope>system</scope>
  55. <version>2.0.4</version>
  56. <systemPath>${project.basedir}/src/main/resources/libs/hatc-sdk-2.0.4.jar</systemPath>
  57. </dependency>
  58. </dependencies>
  59. <build>
  60. <plugins>
  61. <plugin>
  62. <groupId>org.springframework.boot</groupId>
  63. <artifactId>spring-boot-maven-plugin</artifactId>
  64. <configuration>
  65. <includeSystemScope>true</includeSystemScope>
  66. </configuration>
  67. </plugin>
  68. </plugins>
  69. </build>
  70. </project>