Skip to content

Commit c76fcba

Browse files
committed
maven support
1 parent 432cf26 commit c76fcba

File tree

1 file changed

+107
-0
lines changed

1 file changed

+107
-0
lines changed

pom.xml

Lines changed: 107 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,107 @@
1+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
2+
<modelVersion>4.0.0</modelVersion>
3+
<groupId>com.loopj</groupId>
4+
<artifactId>android-async-http</artifactId>
5+
<version>1.4.0-SNAPSHOT</version>
6+
<packaging>jar</packaging>
7+
<name>android-async-http</name>
8+
9+
<properties>
10+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
11+
</properties>
12+
13+
<build>
14+
<sourceDirectory>src</sourceDirectory>
15+
<plugins>
16+
<plugin>
17+
<groupId>org.apache.maven.plugins</groupId>
18+
<artifactId>maven-compiler-plugin</artifactId>
19+
<version>2.3.2</version>
20+
<configuration>
21+
<source>1.5</source>
22+
<target>1.5</target>
23+
</configuration>
24+
</plugin>
25+
<plugin>
26+
<artifactId>maven-assembly-plugin</artifactId>
27+
<configuration>
28+
<descriptorRefs>
29+
<descriptorRef>jar-with-dependencies</descriptorRef>
30+
</descriptorRefs>
31+
</configuration>
32+
</plugin>
33+
<plugin>
34+
<groupId>org.apache.maven.plugins</groupId>
35+
<artifactId>maven-site-plugin</artifactId>
36+
<version>3.0-beta-3</version>
37+
</plugin>
38+
<plugin>
39+
<groupId>org.apache.maven.plugins</groupId>
40+
<artifactId>maven-release-plugin</artifactId>
41+
<version>2.1</version>
42+
</plugin>
43+
<plugin>
44+
<groupId>org.apache.maven.plugins</groupId>
45+
<artifactId>maven-jar-plugin</artifactId>
46+
<version>2.3.1</version>
47+
<executions>
48+
<execution>
49+
<goals>
50+
<goal>test-jar</goal>
51+
</goals>
52+
</execution>
53+
</executions>
54+
</plugin>
55+
<plugin>
56+
<artifactId>maven-javadoc-plugin</artifactId>
57+
<version>2.7</version>
58+
<executions>
59+
<execution>
60+
<goals>
61+
<goal>jar</goal>
62+
<goal>javadoc</goal>
63+
</goals>
64+
</execution>
65+
</executions>
66+
</plugin>
67+
68+
<plugin>
69+
<artifactId>maven-source-plugin</artifactId>
70+
<version>2.1.2</version>
71+
<executions>
72+
<execution>
73+
<id>bind-sources</id>
74+
<goals>
75+
<goal>jar</goal>
76+
</goals>
77+
</execution>
78+
</executions>
79+
</plugin>
80+
<plugin>
81+
<artifactId>maven-eclipse-plugin</artifactId>
82+
<version>2.8</version>
83+
<configuration>
84+
<downloadSources>true</downloadSources>
85+
<downloadJavadocs>true</downloadJavadocs>
86+
</configuration>
87+
</plugin>
88+
</plugins>
89+
</build>
90+
91+
<dependencies>
92+
<dependency>
93+
<groupId>org.codehaus.jackson</groupId>
94+
<artifactId>jackson-mapper-asl</artifactId>
95+
<version>1.4.0</version>
96+
<type>jar</type>
97+
<scope>compile</scope>
98+
</dependency>
99+
<dependency>
100+
<groupId>org.json</groupId>
101+
<artifactId>json</artifactId>
102+
<version>20090211</version>
103+
</dependency>
104+
105+
</dependencies>
106+
107+
</project>

0 commit comments

Comments
 (0)