[1833] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
---|
| 2 | |
---|
| 3 | <!-- Error Message: „Plugin execution not covered by lifecycle configuration: |
---|
| 4 | com.jayway.maven.plugins.android.generation2:android-maven-plugin:3.8.2:consume-aar |
---|
| 5 | (execution: default-consume-aar, phase: compile)“ can be ignored. |
---|
| 6 | RM ->Quick Fix-> Mark goal consume-aar as ignored in Eclipse build in Eclipse |
---|
| 7 | preferences (experimental) -> Finish |
---|
| 8 | As written on http://stackoverflow.com/questions/21016211/error-in-maven-pom-xml-file |
---|
| 9 | (2014-11-12) and http://wiki.eclipse.org/M2E_plugin_execution_not_covered |
---|
| 10 | (214-11-12) this is a known Problem and the error could be ignored. --> |
---|
| 11 | |
---|
| 12 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
---|
| 13 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
---|
| 14 | <modelVersion>4.0.0</modelVersion> |
---|
| 15 | <groupId>de.ugoe.cs.autoquest</groupId> |
---|
| 16 | <artifactId>autoquest-androidmonitor</artifactId> |
---|
| 17 | <version>0.0.1-SNAPSHOT</version> |
---|
| 18 | <packaging>apk</packaging> |
---|
| 19 | <name>autoquest-androidmonitor</name> |
---|
| 20 | |
---|
| 21 | <scm> |
---|
| 22 | <url>https://autoquest.informatik.uni-goettingen.de/svn/autoquest/trunk/${project.artifactId}</url> |
---|
| 23 | <connection>scm:svn:https://autoquest.informatik.uni-goettingen.de/svn/autoquest/trunk/${project.artifactId}</connection> |
---|
| 24 | </scm> |
---|
| 25 | |
---|
| 26 | <properties> |
---|
| 27 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
---|
| 28 | <platform.version> 4.1.1.4 |
---|
| 29 | </platform.version> |
---|
| 30 | <android.plugin.version>3.8.2</android.plugin.version> |
---|
| 31 | </properties> |
---|
| 32 | |
---|
| 33 | <distributionManagement> |
---|
| 34 | <snapshotRepository> |
---|
| 35 | <id>autoquest-snapshots</id> |
---|
| 36 | <url>https://trex.informatik.uni-goettingen.de/nexus/content/repositories/autoquest-snapshots</url> |
---|
| 37 | </snapshotRepository> |
---|
| 38 | <repository> |
---|
| 39 | <id>autoquest</id> |
---|
| 40 | <url>https://trex.informatik.uni-goettingen.de/nexus/content/repositories/autoquest-releases</url> |
---|
| 41 | </repository> |
---|
| 42 | </distributionManagement> |
---|
| 43 | |
---|
| 44 | <dependencies> |
---|
| 45 | <dependency> |
---|
| 46 | <groupId>com.google.android</groupId> |
---|
| 47 | <artifactId>android</artifactId> |
---|
| 48 | <version>${platform.version}</version> |
---|
| 49 | <scope>provided</scope> |
---|
| 50 | </dependency> |
---|
| 51 | </dependencies> |
---|
| 52 | <build> |
---|
| 53 | <finalName>${project.artifactId}</finalName> |
---|
| 54 | <pluginManagement> |
---|
| 55 | <plugins> |
---|
| 56 | <plugin> |
---|
| 57 | <groupId>com.jayway.maven.plugins.android.generation2</groupId> |
---|
| 58 | <artifactId>android-maven-plugin</artifactId> |
---|
| 59 | <version>${android.plugin.version}</version> |
---|
| 60 | <extensions>true</extensions> |
---|
| 61 | </plugin> |
---|
| 62 | </plugins> |
---|
| 63 | </pluginManagement> |
---|
| 64 | <plugins> |
---|
| 65 | |
---|
| 66 | <plugin> |
---|
| 67 | <groupId>com.jayway.maven.plugins.android.generation2</groupId> |
---|
| 68 | <artifactId>android-maven-plugin</artifactId> |
---|
| 69 | <configuration> |
---|
| 70 | <sdk> |
---|
| 71 | <platform>16</platform> |
---|
| 72 | </sdk> |
---|
| 73 | </configuration> |
---|
| 74 | </plugin> |
---|
| 75 | </plugins> |
---|
| 76 | </build> |
---|
| 77 | </project> |
---|