Uploaded image for project: 'Tools (JBoss Tools)'
  1. Tools (JBoss Tools)
  2. JBIDE-10070

Creating OpenShift Express App via JBossTools - "Plugin execution not covered by lifecycle configuration"

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Won't Do
    • Icon: Major Major
    • 3.3.0.M5
    • 3.3.0.M4
    • openshift
    • None

      The app is created, but this error is reported in Eclipse:

      Plugin execution not covered by lifecycle configuration: org.apache.maven.plugins:maven-compiler-plugin:2.3.2:compile (execution: default-compile, phase: compile)

      Line 6 - what's the issue here with the war packaging?

      ------

      <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/maven-v4_0_0.xsd">
      <modelVersion>4.0.0</modelVersion>
      <groupId>testApp3</groupId>
      <artifactId>testApp3</artifactId>
      <packaging>war</packaging>
      <version>1.0</version>
      <name>testApp3</name>
      <properties>
      <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
      </properties>
      <!--<dependencies>
      <dependency>
      <groupId>org.jboss.spec</groupId>
      <artifactId>jboss-javaee-6.0</artifactId>
      <version>1.0.0.Final</version>
      <type>pom</type>
      <scope>provided</scope>
      </dependency>
      </dependencies>-->
      <profiles>
      <profile>
      <!-- When built in OpenShift the 'openshift' profile will be used when invoking mvn. -->
      <!-- Use this profile for any OpenShift specific customization your app will need. -->
      <!-- By default that is to put the resulting archive into the 'deployments' folder. -->
      <!-- http://maven.apache.org/guides/mini/guide-building-for-different-environments.html -->
      <id>openshift</id>
      <build>
      <finalName>testApp3</finalName>
      <plugins>
      <plugin>
      <artifactId>maven-war-plugin</artifactId>
      <version>2.1.1</version>
      <configuration>
      <outputDirectory>deployments</outputDirectory>
      <warName>ROOT</warName>
      </configuration>
      </plugin>
      </plugins>
      </build>
      </profile>
      </profiles>
      </project>

            manderse@redhat.com Max Andersen
            ldimaggi@redhat.com Len DiMaggio
            Votes:
            0 Vote for this issue
            Watchers:
            3 Start watching this issue

              Created:
              Updated:
              Resolved: