pom.xml 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <groupId>cat-client-plugin</groupId>
  5. <artifactId>cat-client-plugin</artifactId>
  6. <version>0.0.1-SNAPSHOT</version>
  7. <properties>
  8. <aspectj.version>1.8.10</aspectj.version>
  9. </properties>
  10. <dependencies>
  11. <!-- AspectJ -->
  12. <dependency>
  13. <groupId>org.aspectj</groupId>
  14. <artifactId>aspectjrt</artifactId>
  15. <version>${aspectj.version}</version>
  16. </dependency>
  17. <dependency>
  18. <groupId>org.aspectj</groupId>
  19. <artifactId>aspectjweaver</artifactId>
  20. <version>${aspectj.version}</version>
  21. </dependency>
  22. <!-- Cat Client -->
  23. <dependency>
  24. <groupId>com.dianping.cat</groupId>
  25. <artifactId>cat-client</artifactId>
  26. <version>2.0.0</version>
  27. </dependency>
  28. <!-- Redis -->
  29. <dependency>
  30. <groupId>redis.clients</groupId>
  31. <artifactId>jedis</artifactId>
  32. <version>2.7.2</version>
  33. <scope>provided</scope>
  34. </dependency>
  35. <!-- MongoDB -->
  36. <dependency>
  37. <groupId>org.mongodb</groupId>
  38. <artifactId>mongo-java-driver</artifactId>
  39. <version>3.2.2</version>
  40. <scope>provided</scope>
  41. </dependency>
  42. <!-- MySQL -->
  43. <dependency>
  44. <groupId>mysql</groupId>
  45. <artifactId>mysql-connector-java</artifactId>
  46. <version>5.1.38</version>
  47. <scope>provided</scope>
  48. </dependency>
  49. <!-- Dubbo -->
  50. <dependency>
  51. <groupId>com.alibaba</groupId>
  52. <artifactId>dubbo</artifactId>
  53. <version>2.5.3</version>
  54. <scope>provided</scope>
  55. </dependency>
  56. <!-- HttpClient -->
  57. <dependency>
  58. <groupId>org.apache.httpcomponents</groupId>
  59. <artifactId>httpclient</artifactId>
  60. <version>4.0.1</version>
  61. <scope>provided</scope>
  62. </dependency>
  63. <dependency>
  64. <groupId>javax.servlet</groupId>
  65. <artifactId>javax.servlet-api</artifactId>
  66. <version>3.1.0</version>
  67. <scope>provided</scope>
  68. </dependency>
  69. </dependencies>
  70. <build>
  71. <sourceDirectory>src</sourceDirectory>
  72. <plugins>
  73. <plugin>
  74. <artifactId>maven-compiler-plugin</artifactId>
  75. <version>3.3</version>
  76. <configuration>
  77. <source>1.7</source>
  78. <target>1.7</target>
  79. </configuration>
  80. </plugin>
  81. </plugins>
  82. </build>
  83. </project>