Skip to content

Commit 8fb011a

Browse files
author
xiaoshi2013
committed
2013年9月21日
1 parent 777b754 commit 8fb011a

File tree

1 file changed

+116
-111
lines changed

1 file changed

+116
-111
lines changed

pom.xml

+116-111
Original file line numberDiff line numberDiff line change
@@ -1,111 +1,116 @@
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-
5-
<groupId>com.cc</groupId>
6-
<artifactId>ce-zkcli</artifactId>
7-
<version>1.0-SNAPSHOT</version>
8-
<packaging>jar</packaging>
9-
10-
<name>ce-zkcli</name>
11-
<url>http://maven.apache.org</url>
12-
<build>
13-
<resources>
14-
<resource>
15-
<directory>${project.basedir}/src/main/resources</directory>
16-
<filtering>true</filtering>
17-
</resource>
18-
</resources>
19-
<plugins>
20-
<plugin>
21-
<groupId>org.apache.maven.plugins</groupId>
22-
<artifactId>maven-compiler-plugin</artifactId>
23-
<version>3.1</version>
24-
<configuration>
25-
<source>1.7</source>
26-
<target>1.7</target>
27-
<encoding>UTF-8</encoding>
28-
</configuration>
29-
</plugin>
30-
<plugin>
31-
<groupId>org.apache.maven.plugins</groupId>
32-
<artifactId>maven-jar-plugin</artifactId>
33-
<version>2.4</version>
34-
<configuration>
35-
<archive>
36-
<manifest>
37-
<addClasspath>true</addClasspath>
38-
<mainClass>com.cc.CEClient</mainClass>
39-
<!-- <mainClass>com.cc.TestLog4j</mainClass> -->
40-
</manifest>
41-
</archive>
42-
</configuration>
43-
</plugin>
44-
45-
<plugin>
46-
<groupId>org.apache.maven.plugins</groupId>
47-
<artifactId>maven-eclipse-plugin</artifactId>
48-
<version>2.9</version>
49-
<configuration>
50-
<downloadSources>true</downloadSources>
51-
<downloadJavadocs>true</downloadJavadocs>
52-
</configuration>
53-
</plugin>
54-
</plugins>
55-
</build>
56-
57-
<properties>
58-
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
59-
</properties>
60-
61-
<dependencies>
62-
63-
<dependency>
64-
<groupId>org.apache.zookeeper</groupId>
65-
<artifactId>zookeeper</artifactId>
66-
<version>3.4.5</version>
67-
<exclusions>
68-
<exclusion>
69-
<groupId>com.sun.jmx</groupId>
70-
<artifactId>jmxri</artifactId>
71-
</exclusion>
72-
<exclusion>
73-
<groupId>com.sun.jdmk</groupId>
74-
<artifactId>jmxtools</artifactId>
75-
</exclusion>
76-
<exclusion>
77-
<groupId>javax.jms</groupId>
78-
<artifactId>jms</artifactId>
79-
</exclusion>
80-
</exclusions>
81-
</dependency>
82-
83-
<dependency>
84-
<groupId>commons-io</groupId>
85-
<artifactId>commons-io</artifactId>
86-
<version>2.4</version>
87-
</dependency>
88-
89-
<dependency>
90-
<groupId>org.codehaus.jackson</groupId>
91-
<artifactId>jackson-mapper-asl</artifactId>
92-
<version>1.9.12</version>
93-
</dependency>
94-
95-
<dependency>
96-
<groupId>redis.clients</groupId>
97-
<artifactId>jedis</artifactId>
98-
<version>2.1.0</version>
99-
<type>jar</type>
100-
<scope>compile</scope>
101-
</dependency>
102-
103-
104-
<dependency>
105-
<groupId>junit</groupId>
106-
<artifactId>junit</artifactId>
107-
<version>3.8.1</version>
108-
<scope>test</scope>
109-
</dependency>
110-
</dependencies>
111-
</project>
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+
5+
<groupId>com.cc</groupId>
6+
<artifactId>ce-zkcli</artifactId>
7+
<version>1.0-SNAPSHOT</version>
8+
<packaging>jar</packaging>
9+
10+
<name>ce-zkcli</name>
11+
<url>http://maven.apache.org</url>
12+
<build>
13+
<resources>
14+
<resource>
15+
<directory>${project.basedir}/src/main/resources</directory>
16+
<filtering>true</filtering>
17+
</resource>
18+
</resources>
19+
<plugins>
20+
<plugin>
21+
<groupId>org.apache.maven.plugins</groupId>
22+
<artifactId>maven-compiler-plugin</artifactId>
23+
<version>3.1</version>
24+
<configuration>
25+
<source>1.7</source>
26+
<target>1.7</target>
27+
<encoding>UTF-8</encoding>
28+
</configuration>
29+
</plugin>
30+
<plugin>
31+
<groupId>org.apache.maven.plugins</groupId>
32+
<artifactId>maven-jar-plugin</artifactId>
33+
<version>2.4</version>
34+
<configuration>
35+
<archive>
36+
<manifest>
37+
<addClasspath>true</addClasspath>
38+
<mainClass>com.cc.CEClient</mainClass>
39+
<!-- <mainClass>com.cc.TestLog4j</mainClass> -->
40+
</manifest>
41+
</archive>
42+
</configuration>
43+
</plugin>
44+
45+
<plugin>
46+
<groupId>org.apache.maven.plugins</groupId>
47+
<artifactId>maven-eclipse-plugin</artifactId>
48+
<version>2.9</version>
49+
<configuration>
50+
<downloadSources>true</downloadSources>
51+
<downloadJavadocs>true</downloadJavadocs>
52+
</configuration>
53+
</plugin>
54+
</plugins>
55+
</build>
56+
57+
<properties>
58+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
59+
</properties>
60+
61+
<dependencies>
62+
63+
<dependency>
64+
<groupId>org.apache.zookeeper</groupId>
65+
<artifactId>zookeeper</artifactId>
66+
<version>3.4.5</version>
67+
<exclusions>
68+
<exclusion>
69+
<groupId>com.sun.jmx</groupId>
70+
<artifactId>jmxri</artifactId>
71+
</exclusion>
72+
<exclusion>
73+
<groupId>com.sun.jdmk</groupId>
74+
<artifactId>jmxtools</artifactId>
75+
</exclusion>
76+
<exclusion>
77+
<groupId>javax.jms</groupId>
78+
<artifactId>jms</artifactId>
79+
</exclusion>
80+
</exclusions>
81+
</dependency>
82+
83+
<dependency>
84+
<groupId>commons-io</groupId>
85+
<artifactId>commons-io</artifactId>
86+
<version>2.4</version>
87+
</dependency>
88+
89+
<dependency>
90+
<groupId>org.codehaus.jackson</groupId>
91+
<artifactId>jackson-mapper-asl</artifactId>
92+
<version>1.9.12</version>
93+
</dependency>
94+
95+
<dependency>
96+
<groupId>org.fusesource</groupId>
97+
<artifactId>sigar</artifactId>
98+
<version>1.6.4</version>
99+
</dependency>
100+
101+
<dependency>
102+
<groupId>com.google.guava</groupId>
103+
<artifactId>guava</artifactId>
104+
<version>14.0.1</version>
105+
<scope>compile</scope>
106+
<exclusions>
107+
<exclusion>
108+
<groupId>com.google.code.findbugs</groupId>
109+
<artifactId>jsr305</artifactId>
110+
</exclusion>
111+
</exclusions>
112+
</dependency>
113+
114+
115+
</dependencies>
116+
</project>

0 commit comments

Comments
 (0)