pom.xml 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  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. <!--eureka-->
  34. <dependency>
  35. <groupId>org.springframework.cloud</groupId>
  36. <artifactId>spring-cloud-starter-netflix-eureka-client</artifactId>
  37. </dependency>
  38. <!--配置中心客户端-->
  39. <dependency>
  40. <groupId>org.springframework.cloud</groupId>
  41. <artifactId>spring-cloud-starter-config</artifactId>
  42. </dependency>
  43. <!--LCN-->
  44. <dependency>
  45. <groupId>com.github.1991wangliang</groupId>
  46. <artifactId>lorne_core</artifactId>
  47. <version>1.0.0</version>
  48. <exclusions>
  49. <exclusion>
  50. <groupId>org.slf4j</groupId>
  51. <artifactId>*</artifactId>
  52. </exclusion>
  53. </exclusions>
  54. </dependency>
  55. <!--netty-->
  56. <dependency>
  57. <groupId>io.netty</groupId>
  58. <artifactId>netty-all</artifactId>
  59. <version>4.1.12.Final</version>
  60. </dependency>
  61. <!--工具类核心包-->
  62. <dependency>
  63. <groupId>com.pig4cloud</groupId>
  64. <artifactId>pigx-common-core</artifactId>
  65. <version>${pigx.version}</version>
  66. </dependency>
  67. </dependencies>
  68. <build>
  69. <plugins>
  70. <plugin>
  71. <groupId>org.springframework.boot</groupId>
  72. <artifactId>spring-boot-maven-plugin</artifactId>
  73. </plugin>
  74. </plugins>
  75. </build>
  76. </project>