mirror of
https://github.com/moparisthebest/ComicReader
synced 2024-11-15 13:45:07 -05:00
41 lines
1.4 KiB
XML
41 lines
1.4 KiB
XML
|
<?xml version="1.0" encoding="UTF-8"?>
|
||
|
<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>
|
||
|
<parent>
|
||
|
<groupId>com.blogspot.applications4android</groupId>
|
||
|
<artifactId>ComicReaderParent</artifactId>
|
||
|
<version>2.0-SNAPSHOT</version>
|
||
|
</parent>
|
||
|
<artifactId>ComicReaderTest</artifactId>
|
||
|
<packaging>apk</packaging>
|
||
|
<name>${project.artifactId}</name>
|
||
|
<dependencies>
|
||
|
<dependency>
|
||
|
<groupId>${project.groupId}</groupId>
|
||
|
<artifactId>ComicReader</artifactId>
|
||
|
<version>${project.version}</version>
|
||
|
<scope>provided</scope>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>com.google.android</groupId>
|
||
|
<artifactId>android-test</artifactId>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>com.google.android</groupId>
|
||
|
<artifactId>android</artifactId>
|
||
|
</dependency>
|
||
|
</dependencies>
|
||
|
<build>
|
||
|
<defaultGoal>package android:deploy android:instrument</defaultGoal>
|
||
|
<finalName>${project.artifactId}</finalName>
|
||
|
<sourceDirectory>${project.basedir}/src</sourceDirectory>
|
||
|
<plugins>
|
||
|
<plugin>
|
||
|
<groupId>com.jayway.maven.plugins.android.generation2</groupId>
|
||
|
<artifactId>android-maven-plugin</artifactId>
|
||
|
</plugin>
|
||
|
</plugins>
|
||
|
</build>
|
||
|
</project>
|