Skip to content

Commit a59d112

Browse files
committed
Add pom merged from master.
1 parent 5f3e781 commit a59d112

File tree

4 files changed

+134
-0
lines changed

4 files changed

+134
-0
lines changed

.classpath

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,6 @@
88
<classpathentry kind="lib" path="auth-lib/signpost-commonshttp4-1.2.1.1.jar"/>
99
<classpathentry kind="lib" path="auth-lib/signpost-core-1.2.1.1.jar"/>
1010
<classpathentry exported="true" kind="con" path="com.android.ide.eclipse.adt.LIBRARIES"/>
11+
<classpathentry exported="true" kind="con" path="com.android.ide.eclipse.adt.DEPENDENCIES"/>
1112
<classpathentry kind="output" path="bin/classes"/>
1213
</classpath>

demo/.classpath

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,6 @@
1212
<classpathentry kind="lib" path="libs/gson-2.0.jar"/>
1313
<classpathentry kind="lib" path="libs/signpost-commonshttp4-1.2.1.1.jar"/>
1414
<classpathentry kind="lib" path="libs/signpost-core-1.2.1.1.jar"/>
15+
<classpathentry exported="true" kind="con" path="com.android.ide.eclipse.adt.DEPENDENCIES"/>
1516
<classpathentry kind="output" path="bin/classes"/>
1617
</classpath>

pom.xml

Lines changed: 131 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,131 @@
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+
4+
<parent>
5+
<groupId>org.sonatype.oss</groupId>
6+
<artifactId>oss-parent</artifactId>
7+
<version>7</version>
8+
</parent>
9+
10+
<groupId>com.googlecode.android-query</groupId>
11+
<artifactId>android-query</artifactId>
12+
<version>0.25.10-SNAPSHOT</version>
13+
<packaging>jar</packaging>
14+
15+
<name>android-query</name>
16+
<description>Android-Query (AQuery) is a light-weight library for doing asynchronous tasks and manipulating UI elements in Android</description>
17+
<url>https://code.google.com/p/android-query/</url>
18+
19+
<licenses>
20+
<license>
21+
<name>The Apache Software License, Version 2.0</name>
22+
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
23+
<distribution>repo</distribution>
24+
</license>
25+
</licenses>
26+
27+
<scm>
28+
<connection>scm:git:[email protected]:brk3/androidquery.git</connection>
29+
<developerConnection>scm:git:[email protected]:brk3/androidquery.git</developerConnection>
30+
<url>[email protected]:brk3/androidquery.git</url>
31+
<tag>HEAD</tag>
32+
</scm>
33+
34+
<developers>
35+
<developer>
36+
<id>peter</id>
37+
<name>Peter Liu</name>
38+
<email>[email protected]</email>
39+
</developer>
40+
</developers>
41+
42+
<properties>
43+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
44+
</properties>
45+
46+
<dependencies>
47+
<dependency>
48+
<groupId>com.google.android</groupId>
49+
<artifactId>android</artifactId>
50+
<version>4.1.1.4</version>
51+
<scope>provided</scope>
52+
</dependency>
53+
</dependencies>
54+
55+
<build>
56+
<sourceDirectory>src</sourceDirectory>
57+
<plugins>
58+
<plugin>
59+
<artifactId>maven-compiler-plugin</artifactId>
60+
<version>2.5.1</version>
61+
<configuration>
62+
<source>1.6</source>
63+
<target>1.6</target>
64+
</configuration>
65+
</plugin>
66+
<plugin>
67+
<groupId>org.apache.maven.plugins</groupId>
68+
<artifactId>maven-release-plugin</artifactId>
69+
<version>2.4</version>
70+
</plugin>
71+
<plugin>
72+
<groupId>org.apache.maven.plugins</groupId>
73+
<artifactId>maven-javadoc-plugin</artifactId>
74+
<version>2.9</version>
75+
<executions>
76+
<execution>
77+
<id>attach-javadocs</id>
78+
<goals>
79+
<goal>jar</goal>
80+
</goals>
81+
</execution>
82+
</executions>
83+
</plugin>
84+
<plugin>
85+
<groupId>org.apache.maven.plugins</groupId>
86+
<artifactId>maven-source-plugin</artifactId>
87+
<version>2.2.1</version>
88+
<executions>
89+
<execution>
90+
<id>attach-sources</id>
91+
<goals>
92+
<goal>jar</goal>
93+
</goals>
94+
</execution>
95+
</executions>
96+
</plugin>
97+
</plugins>
98+
</build>
99+
100+
<profiles>
101+
<profile>
102+
<id>release-sign-artifacts</id>
103+
<activation>
104+
<property>
105+
<name>performRelease</name>
106+
<value>true</value>
107+
</property>
108+
</activation>
109+
<build>
110+
<plugins>
111+
<plugin>
112+
<groupId>org.apache.maven.plugins</groupId>
113+
<artifactId>maven-gpg-plugin</artifactId>
114+
<version>2.2.1</version>
115+
<executions>
116+
<execution>
117+
<id>sign-artifacts</id>
118+
<phase>verify</phase>
119+
<goals>
120+
<goal>sign</goal>
121+
</goals>
122+
</execution>
123+
</executions>
124+
</plugin>
125+
</plugins>
126+
</build>
127+
</profile>
128+
</profiles>
129+
130+
</project>
131+

tests/.classpath

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,6 @@
88
<classpathentry kind="src" path="aquery"/>
99
<classpathentry kind="src" path="gen"/>
1010
<classpathentry kind="lib" path="libs/gson-2.0.jar"/>
11+
<classpathentry exported="true" kind="con" path="com.android.ide.eclipse.adt.DEPENDENCIES"/>
1112
<classpathentry kind="output" path="bin/classes"/>
1213
</classpath>

0 commit comments

Comments
 (0)