source: trunk/autoquest-androidmonitor/pom.xml

Last change on this file was 2062, checked in by pharms, 8 years ago
  • made this compilable without maven issues
  • Property svn:mime-type set to text/plain
File size: 4.0 KB
Line 
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.1.2-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                                <!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.-->
63                                <plugin>
64                                    <groupId>org.eclipse.m2e</groupId>
65                                    <artifactId>lifecycle-mapping</artifactId>
66                                    <version>1.0.0</version>
67                                    <configuration>
68                                        <lifecycleMappingMetadata>
69                                            <pluginExecutions>
70                                                <pluginExecution>
71                                                    <pluginExecutionFilter>
72                                                        <groupId>
73                                                            com.jayway.maven.plugins.android.generation2
74                                                        </groupId>
75                                                        <artifactId>android-maven-plugin</artifactId>
76                                                        <versionRange>[3.8.2,)</versionRange>
77                                                        <goals>
78                                                            <goal>consume-aar</goal>
79                                                            <goal>generate-sources</goal>
80                                                            <goal>proguard</goal>
81                                                        </goals>
82                                                    </pluginExecutionFilter>
83                                                    <action>
84                                                        <ignore></ignore>
85                                                    </action>
86                                                </pluginExecution>
87                                            </pluginExecutions>
88                                        </lifecycleMappingMetadata>
89                                    </configuration>
90                                </plugin>
91                        </plugins>
92                </pluginManagement>
93                <plugins>
94
95                        <plugin>
96                                <groupId>com.jayway.maven.plugins.android.generation2</groupId>
97                                <artifactId>android-maven-plugin</artifactId>
98                                <configuration>
99                                        <sdk>
100                                                <platform>16</platform>
101                                        </sdk>
102                                </configuration>
103                        </plugin>
104                </plugins>
105        </build>
106</project>
Note: See TracBrowser for help on using the repository browser.