pom.xml 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  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>cc.mrbird</groupId>
  7. <artifactId>febs-server</artifactId>
  8. <version>2.2-RELEASE</version>
  9. <relativePath>../pom.xml</relativePath>
  10. </parent>
  11. <artifactId>gbd-demp-data-exchange</artifactId>
  12. <name>GBD-Demp-Data-Exchange</name>
  13. <description>与安监、传感器进行交互</description>
  14. <properties>
  15. <java.version>1.8</java.version>
  16. <febs-cloud.version>2.2-RELEASE</febs-cloud.version>
  17. </properties>
  18. <dependencies>
  19. <dependency>
  20. <groupId>cc.mrbird</groupId>
  21. <artifactId>febs-common-core</artifactId>
  22. <version>${febs-cloud.version}</version>
  23. </dependency>
  24. <dependency>
  25. <groupId>cc.mrbird</groupId>
  26. <artifactId>febs-common-datasource-starter</artifactId>
  27. <version>${febs-cloud.version}</version>
  28. </dependency>
  29. <dependency>
  30. <groupId>cc.mrbird</groupId>
  31. <artifactId>febs-common-security-starter</artifactId>
  32. <version>${febs-cloud.version}</version>
  33. </dependency>
  34. <!-- https://mvnrepository.com/artifact/org.apache.httpcomponents/httpclient -->
  35. <dependency>
  36. <groupId>org.apache.httpcomponents</groupId>
  37. <artifactId>httpclient</artifactId>
  38. <version>4.5.12</version>
  39. </dependency>
  40. </dependencies>
  41. <build>
  42. <plugins>
  43. <plugin>
  44. <groupId>org.springframework.boot</groupId>
  45. <artifactId>spring-boot-maven-plugin</artifactId>
  46. </plugin>
  47. </plugins>
  48. </build>
  49. </project>