I am beginner in maven. so consider this. I want to use maven for my android project. for that i have done steps as per
http://rgladwell.github.com/m2e-android/ and http://code.google.com/a/eclipselabs.org/p/m2eclipse-android-integration/wiki/GettingStarted
i have eclipse helios version and installed Android sdk , ADT-plugin rev 20, also installed maven to eclipse plugin i am using windows 7 operating system 32 bit and my pom.xml declared
Parent Pom.xml
<plugin>
<groupId>com.jayway.maven.plugins.android.generation2</groupId>
<artifactId>android-maven-plugin</artifactId>
<version>3.1.1</version>
<configuration>
<sdk>
<platform>15</platform>
</sdk>
<deleteConflictingFiles>true</deleteConflictingFiles>
<undeployBeforeDeploy>true</undeployBeforeDeploy>
</configuration>
<extensions>true</extensions>
</plugin>
which installs android maven integration plugins.
but in chield pom.xml i am getting error.
Child Pom.xml
<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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>GROUPID</groupId>
<artifactId>CHILDID</artifactId>
<version>1.0</version>
<packaging>apklib</packaging>
*<parent>* [getting error here]
<groupId>GROUPID</groupId>
<artifactId>ARTIID</artifactId>
<version>1.0</version>
<relativePath>..</relativePath>
</parent>
......
......
<plugins>
<plugin>
<artifactId>ID</artifactId>
<version>1.1</version>
<executions>
**<execution>** [getting error here]
.....
.....
</execution>
</plugin>
please help me to short out problem. Thanks in advance