forked from roboguice/roboguice
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
943cdd2
commit ecc3dfb
Showing
7 changed files
with
483 additions
and
409 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,119 +1,113 @@ | ||
<?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> | ||
<artifactId>additional-tests</artifactId> | ||
<version>3.0-alpha-SNAPSHOT</version> | ||
<packaging>apk</packaging> | ||
<name>additional-tests</name> | ||
<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> | ||
<artifactId>additional-tests</artifactId> | ||
<version>3.0-alpha-SNAPSHOT</version> | ||
<packaging>apk</packaging> | ||
<name>additional-tests</name> | ||
|
||
<parent> | ||
<groupId>org.roboguice</groupId> | ||
<artifactId>roboguice-aggregator</artifactId> | ||
<version>3.0-alpha-SNAPSHOT</version> | ||
</parent> | ||
<parent> | ||
<groupId>org.roboguice</groupId> | ||
<artifactId>roboguice-aggregator</artifactId> | ||
<version>3.0-alpha-SNAPSHOT</version> | ||
</parent> | ||
|
||
<dependencies> | ||
<properties> | ||
<!-- LIBRARIES --> | ||
<android-map.version>7_r1</android-map.version> | ||
<roboguice.version>${project.version}</roboguice.version> | ||
|
||
<!-- REGULAR DEPENDENCIES --> | ||
|
||
<dependency> | ||
<groupId>org.roboguice</groupId> | ||
<artifactId>roboguice</artifactId> | ||
<version>3.0-alpha-SNAPSHOT</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>com.google.inject</groupId> | ||
<artifactId>guice</artifactId> | ||
<version>3.0</version> | ||
<classifier>no_aop</classifier> | ||
</dependency> | ||
<!-- TEST LIBRARIES --> | ||
<mockito.version>1.9.0</mockito.version> | ||
</properties> | ||
|
||
|
||
<!-- TEST DEPENDENCIES --> | ||
<dependencies> | ||
|
||
<dependency> | ||
<groupId>org.robolectric</groupId> | ||
<artifactId>robolectric</artifactId> | ||
<version>2.1.1</version> | ||
<scope>test</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.mockito</groupId> | ||
<artifactId>mockito-core</artifactId> | ||
<version>1.9.0</version> | ||
<scope>test</scope> | ||
</dependency> | ||
<!-- REGULAR DEPENDENCIES --> | ||
<dependency> | ||
<groupId>com.google.android</groupId> | ||
<artifactId>android</artifactId> | ||
<version>${android-platform.version}</version> | ||
<scope>provided</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>junit</groupId> | ||
<artifactId>junit</artifactId> | ||
<version>${junit.version}</version> | ||
<scope>provided</scope> | ||
</dependency> | ||
<dependency> <!-- needed to prevent warnings in robolectric tests --> | ||
<groupId>com.google.android.maps</groupId> | ||
<artifactId>maps</artifactId> | ||
<version>${android-map.version}</version> | ||
<scope>provided</scope> | ||
<optional>true</optional> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.roboguice</groupId> | ||
<artifactId>roboguice</artifactId> | ||
<version>${roboguice.version}</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>com.google.inject</groupId> | ||
<artifactId>guice</artifactId> | ||
<version>${guice.version}</version> | ||
<classifier>no_aop</classifier> | ||
</dependency> | ||
|
||
|
||
<!-- PROVIDED DEPENDENCIES --> | ||
<!-- TEST DEPENDENCIES --> | ||
<dependency> | ||
<groupId>org.robolectric</groupId> | ||
<artifactId>robolectric</artifactId> | ||
<version>${robolectric.version}</version> | ||
<scope>test</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.mockito</groupId> | ||
<artifactId>mockito-core</artifactId> | ||
<version>${mockito.version}</version> | ||
<scope>test</scope> | ||
</dependency> | ||
</dependencies> | ||
|
||
<dependency> | ||
<groupId>com.google.android</groupId> | ||
<artifactId>android</artifactId> | ||
<version>4.2.0.1</version> | ||
<scope>provided</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>junit</groupId> | ||
<artifactId>junit</artifactId> | ||
<version>4.8.2</version> | ||
<scope>provided</scope> | ||
</dependency> | ||
<dependency> <!-- needed to prevent warnings in robolectric tests --> | ||
<groupId>com.google.android.maps</groupId> | ||
<artifactId>maps</artifactId> | ||
<version>7_r1</version> | ||
<scope>provided</scope> | ||
<optional>true</optional> | ||
</dependency> | ||
</dependencies> | ||
<build> | ||
<plugins> | ||
<plugin> | ||
<groupId>com.jayway.maven.plugins.android.generation2</groupId> | ||
<artifactId>android-maven-plugin</artifactId> | ||
<version>${android-maven-plugin.version}</version> | ||
<configuration> | ||
<androidManifestFile>${project.basedir}/AndroidManifest.xml</androidManifestFile> | ||
<assetsDirectory>${project.basedir}/assets</assetsDirectory> | ||
<resourceDirectory>${project.basedir}/res</resourceDirectory> | ||
<nativeLibrariesDirectory>${project.basedir}/src/main/native</nativeLibrariesDirectory> | ||
<sdk> | ||
<platform>${android-build.version}</platform> | ||
</sdk> | ||
<undeployBeforeDeploy>true</undeployBeforeDeploy> | ||
</configuration> | ||
<extensions>true</extensions> | ||
</plugin> | ||
|
||
<build> | ||
<plugins> | ||
<plugin> | ||
<groupId>com.jayway.maven.plugins.android.generation2</groupId> | ||
<artifactId>android-maven-plugin</artifactId> | ||
<version>3.8.2</version> | ||
<configuration> | ||
<androidManifestFile>${project.basedir}/AndroidManifest.xml</androidManifestFile> | ||
<assetsDirectory>${project.basedir}/assets</assetsDirectory> | ||
<resourceDirectory>${project.basedir}/res</resourceDirectory> | ||
<nativeLibrariesDirectory>${project.basedir}/src/main/native</nativeLibrariesDirectory> | ||
<sdk> | ||
<platform>17</platform> | ||
</sdk> | ||
<undeployBeforeDeploy>true</undeployBeforeDeploy> | ||
</configuration> | ||
<extensions>true</extensions> | ||
</plugin> | ||
<plugin> | ||
<artifactId>maven-compiler-plugin</artifactId> | ||
<version>${maven-compiler-plugin.version}</version> | ||
<configuration> | ||
<source>${java.version}</source> | ||
<target>${java.version}</target> | ||
</configuration> | ||
</plugin> | ||
</plugins> | ||
</build> | ||
|
||
<plugin> | ||
<artifactId>maven-compiler-plugin</artifactId> | ||
<version>2.5.1</version> | ||
<configuration> | ||
<source>1.5</source> | ||
<target>1.5</target> | ||
</configuration> | ||
</plugin> | ||
|
||
<!--plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-gpg-plugin</artifactId> | ||
<version>1.4</version> | ||
<configuration> | ||
<useAgent>true</useAgent> | ||
<executable>gpg2</executable> | ||
</configuration> | ||
</plugin--> | ||
|
||
</plugins> | ||
</build> | ||
|
||
<repositories> | ||
<repository> | ||
<id>third.party.closed.source.repo</id> | ||
<url>file://${basedir}/../maven_repo_3rd_party</url> | ||
</repository> | ||
</repositories> | ||
<repositories> | ||
<repository> | ||
<id>third.party.closed.source.repo</id> | ||
<url>file://${basedir}/../maven_repo_3rd_party</url> | ||
</repository> | ||
</repositories> | ||
|
||
</project> |
Oops, something went wrong.