pom.xml 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  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>com.unitssoft</groupId>
  7. <artifactId>smart-grp-nof-pom</artifactId>
  8. <version>0.0.1-SNAPSHOT</version>
  9. <relativePath>../smart-grp-nof-pom/pom.xml</relativePath>
  10. </parent>
  11. <groupId>com.unissoft</groupId>
  12. <artifactId>smart-grp-device-interface</artifactId>
  13. <version>0.0.1-SNAPSHOT</version>
  14. <name>smart-grp-device-interface</name>
  15. <description>智能仓储设备非消息队列接口服务</description>
  16. <properties>
  17. <java.version>1.8</java.version>
  18. </properties>
  19. <dependencies>
  20. <dependency>
  21. <groupId>com.unissoft</groupId>
  22. <artifactId>smart-grp-utils</artifactId>
  23. <version>0.0.1-SNAPSHOT</version>
  24. </dependency>
  25. <!-- cloud -->
  26. <dependency>
  27. <groupId>org.springframework.cloud</groupId>
  28. <artifactId>spring-cloud-starter</artifactId>
  29. </dependency>
  30. <dependency>
  31. <groupId>com.alibaba</groupId>
  32. <artifactId>fastjson</artifactId>
  33. <version>${fastjson.version}</version>
  34. </dependency>
  35. <dependency>
  36. <groupId>org.projectlombok</groupId>
  37. <artifactId>lombok</artifactId>
  38. </dependency>
  39. <!-- dataSource -->
  40. <dependency>
  41. <groupId>org.springframework.boot</groupId>
  42. <artifactId>spring-boot-starter-jdbc</artifactId>
  43. </dependency>
  44. <dependency>
  45. <groupId>mysql</groupId>
  46. <artifactId>mysql-connector-java</artifactId>
  47. <scope>runtime</scope>
  48. </dependency>
  49. <dependency>
  50. <groupId>org.mybatis.spring.boot</groupId>
  51. <artifactId>mybatis-spring-boot-starter</artifactId>
  52. <version>${mybatis.version}</version>
  53. </dependency>
  54. <!-- mybatisplus与springboot整合 -->
  55. <dependency>
  56. <groupId>com.baomidou</groupId>
  57. <artifactId>mybatis-plus-boot-starter</artifactId>
  58. <version>3.4.1</version>
  59. </dependency>
  60. </dependencies>
  61. <build>
  62. <finalName>${project.artifactId}</finalName>
  63. <plugins>
  64. <plugin>
  65. <groupId>org.springframework.boot</groupId>
  66. <artifactId>spring-boot-maven-plugin</artifactId>
  67. </plugin>
  68. </plugins>
  69. </build>
  70. </project>