server/pom.xml in honeydew-0.19.0 vs server/pom.xml in honeydew-0.20.0

- old
+ new

@@ -3,16 +3,16 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>amplify</groupId> <artifactId>honeydew-server</artifactId> - <version>0.19.0</version> + <version>0.20.0</version> <packaging>jar</packaging> <name>Honeydew Android Server</name> <properties> - <platform.version>4.1.1.4</platform.version> + <platform.version>4.2.2_r2</platform.version> </properties> <repositories> <repository> <id>local-repository</id> @@ -29,17 +29,17 @@ </pluginRepository> </pluginRepositories> <dependencies> <dependency> - <groupId>com.google.android</groupId> + <groupId>android</groupId> <artifactId>android</artifactId> <version>${platform.version}</version> <scope>provided</scope> </dependency> <dependency> - <groupId>com.google.android</groupId> + <groupId>android.test.uiautomator</groupId> <artifactId>uiautomator</artifactId> <version>${platform.version}</version> <scope>provided</scope> </dependency> <dependency> @@ -66,11 +66,11 @@ <dependency> <groupId>commons-io</groupId> <artifactId>commons-io</artifactId> <version>2.4</version> </dependency> - <dependency> + <dependency> <groupId>fi.iki.elonen</groupId> <artifactId>nanohttpd</artifactId> <version>2.0.3</version> </dependency> <dependency> @@ -79,23 +79,22 @@ <version>2.0.3</version> </dependency> </dependencies> <build> - <testSourceDirectory>${test.directory}</testSourceDirectory> <plugins> <plugin> <groupId>com.jayway.maven.plugins.android.generation2</groupId> <artifactId>android-maven-plugin</artifactId> - <version>3.5.3</version> + <version>3.6.1</version> <configuration> <zipalign> <verbose>true</verbose> </zipalign> <undeployBeforeDeploy>true</undeployBeforeDeploy> <sdk> - <platform>16</platform> + <platform>17</platform> </sdk> <lint> <skip>true</skip> </lint> <push> @@ -191,35 +190,9 @@ </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>build-helper-maven-plugin</artifactId> <version>1.5</version> - </plugin> - <!--This plugin's configuration is used to store Eclipse m2e settings - only. It has no influence on the Maven build itself. --> - <plugin> - <groupId>org.eclipse.m2e</groupId> - <artifactId>lifecycle-mapping</artifactId> - <version>1.0.0</version> - <configuration> - <lifecycleMappingMetadata> - <pluginExecutions> - <pluginExecution> - <pluginExecutionFilter> - <groupId>com.jayway.maven.plugins.android.generation2</groupId> - <artifactId>android-maven-plugin</artifactId> - <versionRange>[3.2.0,)</versionRange> - <goals> - <goal>manifest-update</goal> - </goals> - </pluginExecutionFilter> - <action> - <execute/> - </action> - </pluginExecution> - </pluginExecutions> - </lifecycleMappingMetadata> - </configuration> </plugin> </plugins> </build> </project>