pom.xml 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  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>com.pig4cloud</groupId>
  7. <artifactId>pigx-visual</artifactId>
  8. <version>${pigx.version}</version>
  9. </parent>
  10. <artifactId>pigx-tx-manager</artifactId>
  11. <packaging>jar</packaging>
  12. <name>pigx-tx-manager</name>
  13. <description>pigx lcn tx manager</description>
  14. <dependencies>
  15. <!--web 模块-->
  16. <dependency>
  17. <groupId>org.springframework.boot</groupId>
  18. <artifactId>spring-boot-starter-web</artifactId>
  19. <exclusions>
  20. <!--排除tomcat依赖-->
  21. <exclusion>
  22. <artifactId>spring-boot-starter-tomcat</artifactId>
  23. <groupId>org.springframework.boot</groupId>
  24. </exclusion>
  25. </exclusions>
  26. </dependency>
  27. <!--undertow容器-->
  28. <dependency>
  29. <groupId>org.springframework.boot</groupId>
  30. <artifactId>spring-boot-starter-undertow</artifactId>
  31. </dependency>
  32. <!--eureka-->
  33. <dependency>
  34. <groupId>org.springframework.cloud</groupId>
  35. <artifactId>spring-cloud-starter-netflix-eureka-client</artifactId>
  36. </dependency>
  37. <!--配置中心客户端-->
  38. <dependency>
  39. <groupId>org.springframework.cloud</groupId>
  40. <artifactId>spring-cloud-starter-config</artifactId>
  41. </dependency>
  42. <!--LCN-->
  43. <dependency>
  44. <groupId>com.github.1991wangliang</groupId>
  45. <artifactId>lorne_core</artifactId>
  46. <version>1.0.0</version>
  47. <exclusions>
  48. <exclusion>
  49. <groupId>org.slf4j</groupId>
  50. <artifactId>*</artifactId>
  51. </exclusion>
  52. </exclusions>
  53. </dependency>
  54. <!--netty-->
  55. <dependency>
  56. <groupId>io.netty</groupId>
  57. <artifactId>netty-all</artifactId>
  58. <version>4.1.12.Final</version>
  59. </dependency>
  60. <!--工具类核心包-->
  61. <dependency>
  62. <groupId>com.pig4cloud</groupId>
  63. <artifactId>pigx-common-core</artifactId>
  64. <version>${pigx.version}</version>
  65. </dependency>
  66. </dependencies>
  67. <build>
  68. <plugins>
  69. <plugin>
  70. <groupId>org.springframework.boot</groupId>
  71. <artifactId>spring-boot-maven-plugin</artifactId>
  72. </plugin>
  73. </plugins>
  74. </build>
  75. </project>