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>cc.mrbird</groupId>
  7. <artifactId>febs-server</artifactId>
  8. <version>2.2-RELEASE</version>
  9. <relativePath>../pom.xml</relativePath>
  10. </parent>
  11. <groupId>com.gbd</groupId>
  12. <artifactId>gbd-demp-info</artifactId>
  13. <name>GBD-DEMP-INFO</name>
  14. <description>基本信息接口,企业基本信息、设备信息等</description>
  15. <properties>
  16. <java.version>1.8</java.version>
  17. <febs-cloud.version>2.2-RELEASE</febs-cloud.version>
  18. </properties>
  19. <dependencies>
  20. <dependency>
  21. <groupId>cc.mrbird</groupId>
  22. <artifactId>febs-common-core</artifactId>
  23. <version>${febs-cloud.version}</version>
  24. </dependency>
  25. <dependency>
  26. <groupId>cc.mrbird</groupId>
  27. <artifactId>febs-common-datasource-starter</artifactId>
  28. <version>${febs-cloud.version}</version>
  29. </dependency>
  30. <dependency>
  31. <groupId>cc.mrbird</groupId>
  32. <artifactId>febs-common-security-starter</artifactId>
  33. <version>${febs-cloud.version}</version>
  34. </dependency>
  35. </dependencies>
  36. <build>
  37. <plugins>
  38. <plugin>
  39. <groupId>org.springframework.boot</groupId>
  40. <artifactId>spring-boot-maven-plugin</artifactId>
  41. </plugin>
  42. </plugins>
  43. </build>
  44. </project>