pom.xml 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  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>lts-parent</artifactId>
  7. <groupId>com.lts</groupId>
  8. <version>1.6.5</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>lts-monitor</artifactId>
  12. <dependencies>
  13. <dependency>
  14. <groupId>com.lts</groupId>
  15. <artifactId>lts-core</artifactId>
  16. <version>${project.parent.version}</version>
  17. </dependency>
  18. <dependency>
  19. <groupId>com.alibaba</groupId>
  20. <artifactId>fastjson</artifactId>
  21. </dependency>
  22. <dependency>
  23. <groupId>mysql</groupId>
  24. <artifactId>mysql-connector-java</artifactId>
  25. </dependency>
  26. <dependency>
  27. <groupId>com.alibaba</groupId>
  28. <artifactId>druid</artifactId>
  29. </dependency>
  30. <dependency>
  31. <groupId>io.netty</groupId>
  32. <artifactId>netty-all</artifactId>
  33. </dependency>
  34. <dependency>
  35. <groupId>log4j</groupId>
  36. <artifactId>log4j</artifactId>
  37. </dependency>
  38. <dependency>
  39. <groupId>junit</groupId>
  40. <artifactId>junit</artifactId>
  41. <scope>test</scope>
  42. </dependency>
  43. <dependency>
  44. <groupId>com.github.sgroschupf</groupId>
  45. <artifactId>zkclient</artifactId>
  46. </dependency>
  47. <dependency>
  48. <groupId>redis.clients</groupId>
  49. <artifactId>jedis</artifactId>
  50. </dependency>
  51. <dependency>
  52. <groupId>com.esotericsoftware</groupId>
  53. <artifactId>reflectasm</artifactId>
  54. </dependency>
  55. </dependencies>
  56. <build>
  57. <plugins>
  58. <plugin>
  59. <artifactId>maven-assembly-plugin</artifactId>
  60. <version>2.5.3</version>
  61. <configuration>
  62. <finalName>lts</finalName>
  63. <descriptors>
  64. <descriptor>release.xml</descriptor>
  65. </descriptors>
  66. </configuration>
  67. </plugin>
  68. </plugins>
  69. </build>
  70. </project>