Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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

share|improve this question
<execution> [getting error here], what is it? – yorkw Jun 29 '12 at 23:23

1 Answer

My pom.xml in a maven android project. It works fine:

<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>empresa</groupId>
        <version>1.0.0.BUILD-SNAPSHOT</version>
        <artifactId>maestro-empresas</artifactId>
        <packaging>apk</packaging>
        <name>maestro-empresas</name>

        <properties>
            <maven-android-plugin-version>3.0.0-alpha-13</maven-android-plugin-version>
            <maven-compiler-plugin-version>2.3.2</maven-compiler-plugin-version>
            <com.google.android-version>2.2.1</com.google.android-version>
            <org.springframework.android-version>1.0.0.BUILD-SNAPSHOT</org.springframework.android-version>
            <commons-httpclient-version>3.1</commons-httpclient-version>
            <org.codehaus.jackson-version>1.8.8</org.codehaus.jackson-version>
            <android-platform>8</android-platform>
        </properties>

        <pluginRepositories>
            <pluginRepository>
                <id>oss.sonatype.org-jayway-snapshots</id>
                <name>Jayway OpenSource SNAPSHOTs on Sonatype.org</name>
                <url>http://oss.sonatype.org/content/repositories/jayway-snapshots/</url>
                <snapshots>
                    <enabled>true</enabled>
                </snapshots>
            </pluginRepository>
        </pluginRepositories>

        <build>
            <sourceDirectory>src</sourceDirectory>

            <finalName>${project.artifactId}</finalName>
            <plugins>

                <plugin>
                    <groupId>com.jayway.maven.plugins.android.generation2</groupId>
                    <artifactId>android-maven-plugin</artifactId>
                    <version>${maven-android-plugin-version}</version>
                    <configuration>
                        <sdk>
                            <!-- D:/SW/android-sdks/ -->
                            <!-- <path>${android.home}</path> -->
                            <platform>${android-platform}</platform>
                        </sdk>
                        <emulator>
                            <avd>Android2.2</avd>
                        </emulator>
                        <deleteConflictingFiles>true</deleteConflictingFiles>
                        <undeployBeforeDeploy>true</undeployBeforeDeploy>
                    </configuration>
                    <extensions>true</extensions>
                </plugin>
                <plugin>
                    <artifactId>maven-compiler-plugin</artifactId>
                    <version>${maven-compiler-plugin-version}</version>
                </plugin>
            </plugins>
        </build>

        <dependencies>
            <dependency>
                <groupId>com.google.android</groupId>
                <artifactId>android</artifactId>
                <version>${com.google.android-version}</version>
                <scope>provided</scope>
            </dependency>

            <dependency>
                <groupId>org.springframework.android</groupId>
                <artifactId>spring-android-rest-template</artifactId>
                <version>${org.springframework.android-version}</version>
            </dependency>

            <dependency>
                <!-- Para json -->
                <groupId>org.codehaus.jackson</groupId>
                <artifactId>jackson-mapper-asl</artifactId>
                <version>${org.codehaus.jackson-version}</version>
            </dependency>
        </dependencies>

        <repositories>

            <repository>
                <id>org.springframework.maven.snapshot</id>
                <name>Spring Maven Snapshot Repository</name>
                <url>http://maven.springframework.org/snapshot</url>
                <releases>
                    <enabled>false</enabled>
                </releases>
                <snapshots>
                    <enabled>true</enabled>
                </snapshots>
            </repository>

            <repository>
                <id>org.springframework.maven.milestone</id>
                <name>Spring Maven Milestone Repository</name>
                <url>http://maven.springframework.org/milestone</url>
                <snapshots>
                    <enabled>false</enabled>
                </snapshots>
            </repository>

            <repository>
                <id>android-rome-feed-reader-repository</id>
                <name>Android ROME Feed Reader Repository</name>
                <url>https://android-rome-feed-reader.googlecode.com/svn/maven2/releases</url>
            </repository>

        </repositories>

    </project>
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.