Showing
1 changed file
with
65 additions
and
0 deletions
monitor-service-middleware/pom.xml
0 → 100644
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>monitor-service-parent</artifactId> | ||
7 | + <groupId>monitor-service</groupId> | ||
8 | + <version>1.0-SNAPSHOT</version> | ||
9 | + </parent> | ||
10 | + <modelVersion>4.0.0</modelVersion> | ||
11 | + | ||
12 | + <artifactId>monitor-service-middleware</artifactId> | ||
13 | + <version>1.0-SNAPSHOT</version> | ||
14 | + | ||
15 | + <dependencies> | ||
16 | + <!-- internal --> | ||
17 | + <dependency> | ||
18 | + <groupId>monitor-service</groupId> | ||
19 | + <artifactId>monitor-service-common</artifactId> | ||
20 | + </dependency> | ||
21 | + | ||
22 | + <dependency> | ||
23 | + <groupId>monitor-service</groupId> | ||
24 | + <artifactId>monitor-service-cmdb</artifactId> | ||
25 | + </dependency> | ||
26 | + <dependency> | ||
27 | + <groupId>monitor-service</groupId> | ||
28 | + <artifactId>monitor-service-zabbix</artifactId> | ||
29 | + </dependency> | ||
30 | + <!-- 3rd --> | ||
31 | + <dependency> | ||
32 | + <groupId>org.projectlombok</groupId> | ||
33 | + <artifactId>lombok</artifactId> | ||
34 | + </dependency> | ||
35 | + | ||
36 | + <dependency> | ||
37 | + <groupId>org.influxdb</groupId> | ||
38 | + <artifactId>influxdb-java</artifactId> | ||
39 | + </dependency> | ||
40 | + | ||
41 | + <dependency> | ||
42 | + <groupId>org.apache.zookeeper</groupId> | ||
43 | + <artifactId>zookeeper</artifactId> | ||
44 | + </dependency> | ||
45 | + | ||
46 | + <dependency> | ||
47 | + <groupId>org.apache.curator</groupId> | ||
48 | + <artifactId>curator-recipes</artifactId> | ||
49 | + </dependency> | ||
50 | + | ||
51 | + <dependency> | ||
52 | + <groupId>com.googlecode.xmemcached</groupId> | ||
53 | + <artifactId>xmemcached</artifactId> | ||
54 | + <version>2.0.0</version> | ||
55 | + </dependency> | ||
56 | + | ||
57 | + <dependency> | ||
58 | + <groupId>com.google.code.simple-spring-memcached</groupId> | ||
59 | + <artifactId>spymemcached</artifactId> | ||
60 | + <version>2.8.4</version> | ||
61 | + </dependency> | ||
62 | + | ||
63 | + </dependencies> | ||
64 | + | ||
65 | +</project> |
-
Please register or login to post a comment