Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [tycho-user] Error marker in child pom

"Plugin execution not covered" error markers should have quick-fix to
discover and install required extensions. Beware that p2 discovery is
broken on java 7u40, so make sure you use some other java version.

Alternatively, you can install current m2e-tycho 0.7 SNAPSHOT manually
from [1]

http://nexus.tesla.io:8081/nexus/content/sites/m2e.extras/m2eclipse-tycho/0.7.0/N/0.7.0.201309291400/


--
Regards,
Igor

On 11/14/2013, 10:32, Jan Reimann wrote:
Hi Igor,
how do I install m2e-tycho?

cheers,
Jan

Igor Fedorenko wrote:
Do you have m2e-tycho installed? m2e was supposed to offer
installation automatically as part of workspace project import, but
you still had to allow installation.

Jan Reimann <janreimone@xxxxxxxxx> wrote:
Hello,
I have a parent pom referencing children as modules. The children are
Eclipse plugins, thus their packaging attributes are set to
"eclipse-plugin". My problem is that the child poms with that type have

error markers saying the following:

Multiple annotations found at this line:
    - Plugin execution not covered by lifecycle configuration:
org.eclipse.tycho:tycho-packaging-plugin:0.19.0:validate-id (execution:
     default-validate-id, phase: validate)
    - Plugin execution not covered by lifecycle configuration:
org.eclipse.tycho:tycho-compiler-plugin:0.19.0:compile (execution:
     default-compile, phase: compile)
    - Plugin execution not covered by lifecycle configuration:
org.eclipse.tycho:tycho-packaging-plugin:0.19.0:build-qualifier
     (execution: default-build-qualifier, phase: validate)
    - Plugin execution not covered by lifecycle configuration:
org.eclipse.tycho:tycho-packaging-plugin:0.19.0:validate-version
     (execution: default-validate-version, phase: validate)

The install runs succeed as expected. But how can I get rid of these
error markers?

My parent pom contains the following tycho relevant entries:

    <build>
        <plugins>
            <plugin>
                <groupId>org.eclipse.tycho</groupId>
                <artifactId>tycho-maven-plugin</artifactId>
                <version>${tycho-version}</version>
                <extensions>true</extensions>
            </plugin>

            <plugin>
                <groupId>org.eclipse.tycho</groupId>
                <artifactId>target-platform-configuration</artifactId>
                <version>${tycho-version}</version>
                <configuration>
                    <environments>
                        <environment>
                            <os>linux</os>
                            <ws>gtk</ws>
                            <arch>x86</arch>
                        </environment>
                        <environment>
                            <os>linux</os>
                            <ws>gtk</ws>
                            <arch>x86_64</arch>
                        </environment>
                        <environment>
                            <os>win32</os>
                            <ws>win32</ws>
                            <arch>x86</arch>
                        </environment>
                        <environment>
                            <os>win32</os>
                            <ws>win32</ws>
                            <arch>x86_64</arch>
                        </environment>
                        <environment>
                            <os>macosx</os>
                            <ws>cocoa</ws>
                            <arch>x86_64</arch>
                        </environment>
                    </environments>
                </configuration>
            </plugin>
        </plugins>
    </build>
_______________________________________________
tycho-user mailing list
tycho-user@xxxxxxxxxxx
https://dev.eclipse.org/mailman/listinfo/tycho-user

_______________________________________________
tycho-user mailing list
tycho-user@xxxxxxxxxxx
https://dev.eclipse.org/mailman/listinfo/tycho-user


Back to the top