pom.xml 3.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  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>ce-datamonitorsystem</artifactId>
  7. <groupId>com.creditease.moniter</groupId>
  8. <version>1.0</version>
  9. <relativePath>../com.creditease.uav.superpom</relativePath>
  10. </parent>
  11. <modelVersion>4.0.0</modelVersion>
  12. <artifactId>com.creditease.uav.hook.httpclients</artifactId>
  13. <dependencies>
  14. <dependency>
  15. <groupId>com.creditease.moniter</groupId>
  16. <artifactId>com.creditease.uav.monitorframework.apm</artifactId>
  17. </dependency>
  18. <dependency>
  19. <groupId>com.creditease.moniter</groupId>
  20. <artifactId>com.creditease.uav.monitorframework.dproxy</artifactId>
  21. </dependency>
  22. <dependency>
  23. <groupId>org.javassist</groupId>
  24. <artifactId>javassist</artifactId>
  25. <version>3.16.1-GA</version>
  26. <scope>provided</scope>
  27. </dependency>
  28. <dependency>
  29. <groupId>org.apache.httpcomponents</groupId>
  30. <artifactId>httpasyncclient</artifactId>
  31. <version>4.1</version>
  32. <scope>provided</scope>
  33. </dependency>
  34. <dependency>
  35. <groupId>commons-httpclient</groupId>
  36. <artifactId>commons-httpclient</artifactId>
  37. <version>3.0.1</version>
  38. <scope>provided</scope>
  39. </dependency>
  40. </dependencies>
  41. <build>
  42. <plugins>
  43. <plugin>
  44. <artifactId>maven-jar-plugin</artifactId>
  45. <executions>
  46. <execution>
  47. <id>async</id>
  48. <goals><goal>jar</goal></goals>
  49. <phase>package</phase>
  50. <configuration>
  51. <classifier>async</classifier>
  52. <includes>
  53. <include>**/com/creditease/uav/hook/httpclients/async/**</include>
  54. <include>**/com/creditease/uav/hook/httpclients/AbstractHttpClientAdapter*</include>
  55. </includes>
  56. </configuration>
  57. </execution>
  58. <execution>
  59. <id>sync</id>
  60. <goals><goal>jar</goal></goals>
  61. <phase>package</phase>
  62. <configuration>
  63. <classifier>sync</classifier>
  64. <includes>
  65. <include>**/com/creditease/uav/hook/httpclients/sync/**</include>
  66. <include>**/com/creditease/uav/hook/httpclients/AbstractHttpClientAdapter*</include>
  67. </includes>
  68. </configuration>
  69. </execution>
  70. <execution>
  71. <id>sync3</id>
  72. <goals><goal>jar</goal></goals>
  73. <phase>package</phase>
  74. <configuration>
  75. <classifier>sync3</classifier>
  76. <includes>
  77. <include>**/com/creditease/uav/hook/httpclients3/sync/**</include>
  78. </includes>
  79. </configuration>
  80. </execution>
  81. </executions>
  82. </plugin>
  83. </plugins>
  84. </build>
  85. </project>