Skip to content

Commit

Permalink
Updated pom: upgraded http components, junit and gson, introduced var…
Browse files Browse the repository at this point in the history
…iables
  • Loading branch information
ags313 committed Mar 26, 2012
1 parent 1ab99ad commit 565487b
Showing 1 changed file with 19 additions and 7 deletions.
26 changes: 19 additions & 7 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<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">

<modelVersion>4.0.0</modelVersion>
<name>Maven Default Project</name>
<name>AirCasting Android Client</name>

<groupId>pl.llp</groupId>
<artifactId>aircasting</artifactId>
Expand All @@ -11,6 +11,8 @@
<properties>
<android.version>2.1.2</android.version>
<com.google.maps.api.key>0aW177QG5gTuz6SCETXfq_BAlXRaNVk5aykrN9g</com.google.maps.api.key>
<apache.httpclient.version>4.1.3</apache.httpclient.version>
<junit.version>4.10</junit.version>
</properties>

<dependencies>
Expand Down Expand Up @@ -38,7 +40,7 @@

<dependency>
<groupId>com.google.code.gson</groupId>
<version>1.7.1</version>
<version>2.1</version>
<artifactId>gson</artifactId>
</dependency>

Expand Down Expand Up @@ -75,26 +77,26 @@
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient</artifactId>
<version>4.1.2</version>
<version>${apache.httpclient.version}</version>
</dependency>

<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient-cache</artifactId>
<version>4.1.2</version>
<version>${apache.httpclient.version}</version>
</dependency>

<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpmime</artifactId>
<version>4.1.2</version>
<version>${apache.httpclient.version}</version>
</dependency>


<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.8.2</version>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>

Expand Down Expand Up @@ -147,8 +149,18 @@
<skip>false</skip>
</proguard>
<manifest>
<debuggable>true</debuggable>
<versionCodeAutoIncrement>true</versionCodeAutoIncrement>
</manifest>
<sign>
<debug>true</debug>
</sign>
<zipalign>
<skip>false</skip>
<verbose>true</verbose>
<inputApk>${project.build.directory}/${project.artifactId}.apk</inputApk>
<outputApk>${project.build.directory}/${project.artifactId}-aligned.apk</outputApk>
</zipalign>
</configuration>
<extensions>true</extensions>

Expand All @@ -160,8 +172,8 @@
</goals>
<configuration>
<manifest>
<debuggable>true</debuggable>
<versionName />
<versionCodeAutoIncrement>true</versionCodeAutoIncrement>
</manifest>
</configuration>
</execution>
Expand Down

0 comments on commit 565487b

Please sign in to comment.