Skip to content

Commit c20b258

Browse files
committed
Added maven pom.
1 parent 4b6490d commit c20b258

File tree

1 file changed

+60
-0
lines changed

1 file changed

+60
-0
lines changed

pom.xml

+60
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
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
3+
http://maven.apache.org/xsd/maven-4.0.0.xsd">
4+
<modelVersion>4.0.0</modelVersion>
5+
6+
<groupId>box4j</groupId>
7+
<artifactId>box4j</artifactId>
8+
<version>1.2.0</version>
9+
10+
<dependencies>
11+
<dependency>
12+
<groupId>commons-httpclient</groupId>
13+
<artifactId>commons-httpclient</artifactId>
14+
<version>3.1</version>
15+
</dependency>
16+
<dependency>
17+
<groupId>junit</groupId>
18+
<artifactId>junit</artifactId>
19+
<version>4.10</version>
20+
</dependency>
21+
<dependency>
22+
<groupId>dom4j</groupId>
23+
<artifactId>dom4j</artifactId>
24+
<version>1.6.1</version>
25+
</dependency>
26+
<dependency>
27+
<groupId>commons-logging</groupId>
28+
<artifactId>commons-logging</artifactId>
29+
<version>1.1.1</version>
30+
</dependency>
31+
<dependency>
32+
<groupId>log4j</groupId>
33+
<artifactId>log4j</artifactId>
34+
<version>1.2.16</version>
35+
</dependency>
36+
</dependencies>
37+
38+
<build>
39+
<sourceDirectory>box4j-1.2.0-src</sourceDirectory>
40+
<resources>
41+
<resource>
42+
<directory>box4j-1.2.0-src</directory>
43+
<includes>
44+
<include>**/*.properties</include>
45+
</includes>
46+
</resource>
47+
</resources>
48+
<plugins>
49+
<plugin>
50+
<groupId>org.apache.maven.plugins</groupId>
51+
<artifactId>maven-compiler-plugin</artifactId>
52+
<version>2.3.2</version>
53+
<configuration>
54+
<source>1.6</source>
55+
<target>1.6</target>
56+
</configuration>
57+
</plugin>
58+
</plugins>
59+
</build>
60+
</project>

0 commit comments

Comments
 (0)