pom.xml 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://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.1-RELEASE</version>
  9. <relativePath>../pom.xml</relativePath>
  10. </parent>
  11. <artifactId>febs-server-system</artifactId>
  12. <name>FEBS-Server-System</name>
  13. <description>FEBS-Server-System微服务系统模块</description>
  14. <properties>
  15. <febs-cloud.version>2.1-RELEASE</febs-cloud.version>
  16. </properties>
  17. <dependencies>
  18. <dependency>
  19. <groupId>cc.mrbird</groupId>
  20. <artifactId>febs-common-datasource-starter</artifactId>
  21. <version>${febs-cloud.version}</version>
  22. </dependency>
  23. <dependency>
  24. <groupId>cc.mrbird</groupId>
  25. <artifactId>febs-common-security-starter</artifactId>
  26. <version>${febs-cloud.version}</version>
  27. </dependency>
  28. <dependency>
  29. <groupId>cc.mrbird</groupId>
  30. <artifactId>febs-common-doc-starter</artifactId>
  31. <version>${febs-cloud.version}</version>
  32. </dependency>
  33. <dependency>
  34. <groupId>cc.mrbird</groupId>
  35. <artifactId>febs-common-logging-starter</artifactId>
  36. <version>${febs-cloud.version}</version>
  37. </dependency>
  38. <dependency>
  39. <groupId>com.google.guava</groupId>
  40. <artifactId>guava</artifactId>
  41. <version>${guava.version}</version>
  42. </dependency>
  43. <dependency>
  44. <groupId>com.codingapi.txlcn</groupId>
  45. <artifactId>txlcn-tc</artifactId>
  46. </dependency>
  47. <dependency>
  48. <groupId>com.codingapi.txlcn</groupId>
  49. <artifactId>txlcn-txmsg-netty</artifactId>
  50. </dependency>
  51. </dependencies>
  52. <build>
  53. <plugins>
  54. <plugin>
  55. <groupId>org.springframework.boot</groupId>
  56. <artifactId>spring-boot-maven-plugin</artifactId>
  57. </plugin>
  58. </plugins>
  59. </build>
  60. </project>