pom.xml 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  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.jmcloud</groupId>
  7. <artifactId>scis-visual</artifactId>
  8. <version>3.10.0</version>
  9. </parent>
  10. <artifactId>scis-tx-manager</artifactId>
  11. <packaging>jar</packaging>
  12. <description>scis lcn tx manager</description>
  13. <dependencies>
  14. <!--web 模块-->
  15. <dependency>
  16. <groupId>org.springframework.boot</groupId>
  17. <artifactId>spring-boot-starter-web</artifactId>
  18. </dependency>
  19. <!--undertow容器-->
  20. <dependency>
  21. <groupId>org.springframework.boot</groupId>
  22. <artifactId>spring-boot-starter-undertow</artifactId>
  23. </dependency>
  24. <!--注册中心客户端-->
  25. <dependency>
  26. <groupId>com.alibaba.cloud</groupId>
  27. <artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
  28. </dependency>
  29. <!--配置中心客户端-->
  30. <dependency>
  31. <groupId>com.alibaba.cloud</groupId>
  32. <artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>
  33. </dependency>
  34. <!--LCN-->
  35. <dependency>
  36. <groupId>com.github.1991wangliang</groupId>
  37. <artifactId>lorne_core</artifactId>
  38. <version>1.0.0</version>
  39. <exclusions>
  40. <exclusion>
  41. <groupId>org.slf4j</groupId>
  42. <artifactId>*</artifactId>
  43. </exclusion>
  44. </exclusions>
  45. </dependency>
  46. <!--netty-->
  47. <dependency>
  48. <groupId>io.netty</groupId>
  49. <artifactId>netty-all</artifactId>
  50. <version>4.1.12.Final</version>
  51. </dependency>
  52. <!--工具类核心包-->
  53. <dependency>
  54. <groupId>com.jmcloud</groupId>
  55. <artifactId>scis-common-core</artifactId>
  56. </dependency>
  57. <!--缓存依赖-->
  58. <dependency>
  59. <groupId>org.springframework.boot</groupId>
  60. <artifactId>spring-boot-starter-data-redis</artifactId>
  61. </dependency>
  62. <!--sentinel 依赖-->
  63. <dependency>
  64. <groupId>com.jmcloud</groupId>
  65. <artifactId>scis-common-sentinel</artifactId>
  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. <plugin>
  75. <groupId>io.fabric8</groupId>
  76. <artifactId>docker-maven-plugin</artifactId>
  77. <configuration>
  78. <skip>false</skip>
  79. </configuration>
  80. </plugin>
  81. </plugins>
  82. </build>
  83. </project>