You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

122 lines
4.1 KiB

8 months ago
8 months ago
8 months ago
8 months ago
8 months ago
8 months ago
8 months ago
8 months ago
8 months ago
8 months ago
8 months ago
8 months ago
8 months ago
8 months ago
8 months ago
8 months ago
8 months ago
8 months ago
8 months ago
8 months ago
8 months ago
8 months ago
8 months ago
8 months ago
8 months ago
8 months ago
8 months ago
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <parent>
  6. <artifactId>ALog</artifactId>
  7. <groupId>com.inscloudtech</groupId>
  8. <version>0.1.1</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <version>0.1.1</version>
  12. <artifactId>alog-client</artifactId>
  13. <dependencies>
  14. <dependency>
  15. <groupId>com.inscloudtech</groupId>
  16. <artifactId>alog-common</artifactId>
  17. <version>0.1.1</version>
  18. </dependency>
  19. <!-- SpringBoot 拦截器 -->
  20. <dependency>
  21. <groupId>org.springframework.boot</groupId>
  22. <artifactId>spring-boot-starter-aop</artifactId>
  23. </dependency>
  24. <!-- <dependency>
  25. <groupId>com.inscloudtech</groupId>
  26. <artifactId>config-zk</artifactId>
  27. <version>0.1.1</version>
  28. </dependency>-->
  29. <!-- <dependency>
  30. <groupId>com.inscloudtech</groupId>
  31. <artifactId>config-nacos</artifactId>
  32. <version>0.1.1</version>
  33. </dependency>-->
  34. <!-- <dependency>
  35. <groupId>com.inscloudtech</groupId>
  36. <artifactId>config-etcd</artifactId>
  37. <version>0.1.1</version>
  38. </dependency>-->
  39. <!-- <dependency>
  40. <groupId>com.inscloudtech</groupId>
  41. <artifactId>config-apollo</artifactId>
  42. <version>0.1.1</version>
  43. </dependency>-->
  44. <dependency>
  45. <groupId>com.inscloudtech</groupId>
  46. <artifactId>config-core</artifactId>
  47. <version>0.1.1</version>
  48. </dependency>
  49. <dependency>
  50. <groupId>javax.servlet</groupId>
  51. <artifactId>servlet-api</artifactId>
  52. <version>2.4</version>
  53. <scope>provided</scope>
  54. </dependency>
  55. <dependency>
  56. <groupId>org.slf4j</groupId>
  57. <artifactId>slf4j-log4j12</artifactId>
  58. <version>1.7.32</version>
  59. </dependency>
  60. <!--线程池传参-->
  61. <dependency>
  62. <groupId>com.alibaba</groupId>
  63. <artifactId>transmittable-thread-local</artifactId>
  64. <version>2.12.1</version>
  65. </dependency>
  66. <dependency>
  67. <groupId>org.reflections</groupId>
  68. <artifactId>reflections</artifactId>
  69. <version>0.10.2</version>
  70. <exclusions>
  71. <exclusion>
  72. <artifactId>slf4j-api</artifactId>
  73. <groupId>org.slf4j</groupId>
  74. </exclusion>
  75. <exclusion>
  76. <groupId>com.google.code.findbugs</groupId>
  77. <artifactId>jsr305</artifactId>
  78. </exclusion>
  79. </exclusions>
  80. </dependency>
  81. <dependency>
  82. <groupId>com.squareup.okhttp3</groupId>
  83. <artifactId>okhttp</artifactId>
  84. <version>3.11.0</version>
  85. <!-- 去掉Android的包 -->
  86. <exclusions>
  87. <exclusion>
  88. <groupId>com.google.android</groupId>
  89. <artifactId>android</artifactId>
  90. </exclusion>
  91. </exclusions>
  92. </dependency>
  93. </dependencies>
  94. <build>
  95. <plugins>
  96. <plugin>
  97. <artifactId>maven-assembly-plugin</artifactId>
  98. <version>3.0.0</version>
  99. <configuration>
  100. <descriptorRefs>
  101. <descriptorRef>jar-with-dependencies</descriptorRef>
  102. </descriptorRefs>
  103. </configuration>
  104. <executions>
  105. <execution>
  106. <id>make-assembly</id>
  107. <phase>package</phase>
  108. <goals>
  109. <goal>single</goal>
  110. </goals>
  111. </execution>
  112. </executions>
  113. </plugin>
  114. </plugins>
  115. </build>
  116. </project>