pom.xml 2.3 KB

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