pom.xml 2.1 KB

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