Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [m2e-dev] Lifecycle mapping metadata configuration

Ok, I just let the import finish, the pom.xml is marked up in the place where the goals are that it can't understand (attached screenshot).  Then I also did as you suggested and ran the Maven > Update project... ,and I've attached the console output.  

See anything suspicious?  


On Thu, Jan 10, 2013 at 5:04 PM, Olivier NOUGUIER <olivier.nouguier@xxxxxxxxx> wrote:
No real idea about the goalPrefix impact, but I would be surprised. The simplest reason I can imagine is that the "secondaryTo" configurator (org.maven.ide.eclipse.configuration.wtp.configurator)is not present.
What do you have in the maven console, when (maven) updating the project?


On Thu, Jan 10, 2013 at 9:46 AM, Greg Amerson <gregory.amerson@xxxxxxxxxxx> wrote:
Hi Olivier,

Your right, that extra lifecycleMapping extension point in my plugin.xml was just my attempt at trying to debug this and get things work.  I removed that extention, so now my plugin.xml only looks like this:

<plugin>
   <extension
         point="org.eclipse.m2e.core.lifecycleMappingMetadataSource">
   </extension>

   <extension
         point="org.eclipse.m2e.core.projectConfigurators">
      <configurator
            class="com.liferay.ide.maven.core.LiferayProjectConfigurator"
            id="com.liferay.ide.maven.core.project.configurator"
            name="Liferay Project Configurator"
            secondaryTo="org.maven.ide.eclipse.configuration.wtp.configurator">
      </configurator>
   </extension>
</plugin>


And my lifecycle-mapping-metadata.xml looks like this:

<lifecycleMappingMetadata>
    <pluginExecutions>
        <pluginExecution>
            <pluginExecutionFilter>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-war-plugin</artifactId>
                <versionRange>[2.0.1,)</versionRange>
                <goals>
                    <goal>war</goal>
                </goals>
            </pluginExecutionFilter>
            <action>
                <configurator>
                    <id>com.liferay.ide.maven.core.project.configurator</id>
                </configurator>
            </action>
        </pluginExecution>
        <pluginExecution>
            <pluginExecutionFilter>
                <groupId>com.liferay.maven.plugins</groupId>
                <artifactId>liferay-maven-plugin</artifactId>
                <versionRange>[6.0.0,)</versionRange>
                <goals>
                    <goal>build-css</goal>
                    <goal>build-ext</goal>
                    <goal>build-thumbnail</goal>
                    <goal>theme-merge</goal>
                </goals>
            </pluginExecutionFilter>
            <action>
                <configurator>
                    <id>com.liferay.ide.maven.core.project.configurator</id>
                </configurator>
            </action>
        </pluginExecution>
    </pluginExecutions>
</lifecycleMappingMetadata>


But still no luck.  Is there any chance that its the use of <goalPrefix> by the Liferay Maven Plugin?


On Thu, Jan 10, 2013 at 4:36 PM, Olivier NOUGUIER <olivier.nouguier@xxxxxxxxx> wrote:
Hi Greg,
  Are you sure that you need to add a "lifecycleMappings" ? You seem to rely on a "vanilla" war packaging ... so this might be a problem to map your own lifecyle .
HIH



On Thu, Jan 10, 2013 at 8:40 AM, Greg Amerson <gregory.amerson@xxxxxxxxxxx> wrote:
Hello m2e developer, 

I'm trying to write a plugin for Eclipse that will include the lifecycle-mapping-metadata for a Maven plugin for Liferay development: com.liferay.maven.plugins:liferay-maven-plugin

This maven plugin for Liferay defines several custom goals that are all prefixed by liferay, e.g:
liferay:build-css
liferay:build-ext
liferay:build-thumbnail
liferay:theme-merge

All Liferay maven plugins use package type war, When I try to import a project using m2e (and m2e-wtp is used as well since all liferay maven plugins use packagingType:war), I have plugin executions not covered (see attached screenshot).

So I'm trying to add a new plugin to Liferay IDE (bunch of liferay related eclipse plugins) that will handle the m2e plugin execution lifecycle mapping for these 4 custom liferay goals that exist on "war" packages.  You can see my attempt here:


And to see the lifecycle-mapping-metadata.xml it is here:

However, when I run this in my dev environment, m2e import wizard still complains with the same error about those executions not being covered (see attached screenshot).  I have debugged many times through m2e core's lifecycle mapping detection code and I have confirmed it is reading my metadata.xml file, but for some reason it is not matching those executions on the project import.  

Here is the source to the project that I'm trying to import that is giving me the errors in the import wizard so you can see for reference:


Any help would be appreciated to see what I'm missing as why my m2e-extension plugin is not doing what it needs to get these custom goals properly recognized as configured.  Thanks for anyone taking time to help out.

--
Greg Amerson
Liferay Developer Tools
Liferay, Inc. www.liferay.com

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




--
"Computers are useless. They can only give you answers."
- Pablo Picasso -

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




--
Greg Amerson
Liferay Developer Tools
Liferay, Inc. www.liferay.com

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




--
"Computers are useless. They can only give you answers."
- Pablo Picasso -

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




--
Greg Amerson
Liferay Developer Tools
Liferay, Inc. www.liferay.com
17:16:39.664 [Worker-15] INFO  o.e.m.c.i.p.ProjectConfigurationManager - Update started
17:16:39.664 [Worker-15] DEBUG o.e.m.c.i.p.r.ProjectRegistryManager - Refreshing: [/sample-theme/pom.xml]
17:16:39.665 [Worker-15] DEBUG o.e.m.c.internal.embedder.MavenImpl - Reading Maven project: D:\dev java\testing\maven-projects-only-theme\6.1.1\sample-theme\pom.xml
17:16:39.669 [Worker-15] DEBUG o.e.m.c.internal.embedder.MavenImpl - Read Maven project: D:\dev java\testing\maven-projects-only-theme\6.1.1\sample-theme\pom.xml in 4 ms
17:16:39.670 [Worker-15] DEBUG o.e.m.c.i.markers.MavenMarkerManager - Created marker 'Version is duplicate of parent version' on resource '/sample-theme/pom.xml'.
17:16:39.674 [Worker-15] DEBUG o.e.m.c.i.l.LifecycleMappingFactory - Loading lifecycle mapping for MavenProject: com.liferay.sample:sample-theme:1.0-SNAPSHOT @ D:\dev java\testing\maven-projects-only-theme\6.1.1\sample-theme\pom.xml.
17:16:39.704 [Worker-15] INFO  o.e.m.c.i.l.LifecycleMappingFactory - Using org.maven.ide.eclipse.wtp.WarLifecycleMapping lifecycle mapping for MavenProject: com.liferay.sample:sample-theme:1.0-SNAPSHOT @ D:\dev java\testing\maven-projects-only-theme\6.1.1\sample-theme\pom.xml.
17:16:39.704 [Worker-15] DEBUG o.e.m.c.i.l.LifecycleMappingFactory - Loaded lifecycle mapping in 30 ms for MavenProject: com.liferay.sample:sample-theme:1.0-SNAPSHOT @ D:\dev java\testing\maven-projects-only-theme\6.1.1\sample-theme\pom.xml.
17:16:39.705 [Worker-15] DEBUG o.e.m.c.i.markers.MavenMarkerManager - Created marker 'Plugin execution not covered by lifecycle configuration: com.liferay.maven.plugins:liferay-maven-plugin:6.1.1:theme-merge (execution: default, phase: generate-sources)' on resource '/sample-theme/pom.xml'.
17:16:39.706 [Worker-15] DEBUG o.e.m.c.i.markers.MavenMarkerManager - Created marker 'Plugin execution not covered by lifecycle configuration: com.liferay.maven.plugins:liferay-maven-plugin:6.1.1:build-css (execution: default, phase: generate-sources)' on resource '/sample-theme/pom.xml'.
17:16:39.706 [Worker-15] DEBUG o.e.m.c.i.markers.MavenMarkerManager - Created marker 'Plugin execution not covered by lifecycle configuration: com.liferay.maven.plugins:liferay-maven-plugin:6.1.1:build-thumbnail (execution: default, phase: generate-sources)' on resource '/sample-theme/pom.xml'.
17:16:39.707 [Worker-15] DEBUG o.e.m.c.i.p.r.DefaultMavenDependencyResolver - Resolving dependencies for MavenProject: com.liferay.sample:sample-theme:1.0-SNAPSHOT @ D:\dev java\testing\maven-projects-only-theme\6.1.1\sample-theme\pom.xml
17:16:39.707 [Worker-15] DEBUG o.e.m.c.internal.embedder.MavenImpl - Reading Maven project: D:\dev java\testing\maven-projects-only-theme\6.1.1\sample-theme\pom.xml
17:16:39.719 [Worker-15] DEBUG o.e.m.c.internal.embedder.MavenImpl - Read Maven project: D:\dev java\testing\maven-projects-only-theme\6.1.1\sample-theme\pom.xml in 12 ms
17:16:39.720 [Worker-15] DEBUG o.e.m.c.i.p.r.DefaultMavenDependencyResolver - Resolved dependencies for MavenProject: com.liferay.sample:sample-theme:1.0-SNAPSHOT @ D:\dev java\testing\maven-projects-only-theme\6.1.1\sample-theme\pom.xml in 13 ms
17:16:39.720 [Worker-15] DEBUG o.e.m.c.i.p.r.ProjectRegistryManager - Refreshed: [/sample-theme/pom.xml]
17:16:39.779 [Worker-15] DEBUG o.e.m.c.i.p.ProjectConfigurationManager - Updating project configuration for MavenProject: com.liferay.sample:sample-theme:1.0-SNAPSHOT @ D:\dev java\testing\maven-projects-only-theme\6.1.1\sample-theme\pom.xml.
17:16:39.779 [Worker-15] DEBUG o.e.m.c.i.p.ProjectConfigurationManager - Setting encoding for project sample-theme: null
17:16:39.781 [Worker-15] DEBUG o.e.m.c.p.c.AbstractCustomizableLifecycleMapping - Build participants for MavenProject: com.liferay.sample:sample-theme:1.0-SNAPSHOT @ D:\dev java\testing\maven-projects-only-theme\6.1.1\sample-theme\pom.xml
17:16:39.781 [Worker-15] DEBUG o.e.m.c.p.c.AbstractCustomizableLifecycleMapping - Mojo execution key: com.liferay.maven.plugins:liferay-maven-plugin:6.1.1:theme-merge (execution: default, phase: generate-sources)
17:16:39.781 [Worker-15] DEBUG o.e.m.c.p.c.AbstractCustomizableLifecycleMapping - Mojo execution key: com.liferay.maven.plugins:liferay-maven-plugin:6.1.1:build-css (execution: default, phase: generate-sources)
17:16:39.781 [Worker-15] DEBUG o.e.m.c.p.c.AbstractCustomizableLifecycleMapping - Mojo execution key: com.liferay.maven.plugins:liferay-maven-plugin:6.1.1:build-thumbnail (execution: default, phase: generate-sources)
17:16:39.781 [Worker-15] DEBUG o.e.m.c.p.c.AbstractCustomizableLifecycleMapping - Mojo execution key: org.apache.maven.plugins:maven-resources-plugin:2.5:resources (execution: default-resources, phase: process-resources)
17:16:39.781 [Worker-15] DEBUG o.e.m.c.p.c.AbstractCustomizableLifecycleMapping - 	Action: execute
17:16:39.782 [Worker-15] DEBUG o.e.m.c.p.c.AbstractCustomizableLifecycleMapping - Mojo execution key: org.apache.maven.plugins:maven-compiler-plugin:2.3.2:compile (execution: default-compile, phase: compile)
17:16:39.782 [Worker-15] DEBUG o.e.m.c.p.c.AbstractCustomizableLifecycleMapping - 	Action: configurator
17:16:39.782 [Worker-15] DEBUG o.e.m.c.p.c.AbstractCustomizableLifecycleMapping - 		Project configurator id: org.eclipse.m2e.jdt.javaConfigurator
17:16:39.782 [Worker-15] DEBUG o.e.m.c.p.c.AbstractCustomizableLifecycleMapping - 		Project configurator: org.eclipse.m2e.jdt.internal.JavaProjectConfigurator
17:16:39.782 [Worker-15] DEBUG o.e.m.c.p.c.AbstractCustomizableLifecycleMapping - 	Action: configurator
17:16:39.782 [Worker-15] DEBUG o.e.m.c.p.c.AbstractCustomizableLifecycleMapping - 		Project configurator id: org.maven.ide.eclipse.configuration.wtp.webfragment.configurator
17:16:39.782 [Worker-15] DEBUG o.e.m.c.p.c.AbstractCustomizableLifecycleMapping - 		Project configurator: org.eclipse.m2e.wtp.WebFragmentProjectConfigurator
17:16:39.782 [Worker-15] DEBUG o.e.m.c.p.c.AbstractCustomizableLifecycleMapping - 	Action: configurator
17:16:39.783 [Worker-15] DEBUG o.e.m.c.p.c.AbstractCustomizableLifecycleMapping - 		Project configurator id: org.maven.ide.eclipse.configuration.wtp.utility.configurator
17:16:39.783 [Worker-15] DEBUG o.e.m.c.p.c.AbstractCustomizableLifecycleMapping - 		Project configurator: org.eclipse.m2e.wtp.UtilityProjectConfigurator
17:16:39.783 [Worker-15] DEBUG o.e.m.c.p.c.AbstractCustomizableLifecycleMapping - 	Action: configurator
17:16:39.783 [Worker-15] DEBUG o.e.m.c.p.c.AbstractCustomizableLifecycleMapping - 		Project configurator id: org.maven.ide.eclipse.configuration.wtp.java.unsupportedDependencyTypeConfigurator
17:16:39.783 [Worker-15] DEBUG o.e.m.c.p.c.AbstractCustomizableLifecycleMapping - 		Project configurator: org.eclipse.m2e.wtp.UnsupportedDependencyTypeProjectConfigurator
17:16:39.783 [Worker-15] DEBUG o.e.m.c.p.c.AbstractCustomizableLifecycleMapping - Mojo execution key: org.apache.maven.plugins:maven-resources-plugin:2.5:testResources (execution: default-testResources, phase: process-test-resources)
17:16:39.783 [Worker-15] DEBUG o.e.m.c.p.c.AbstractCustomizableLifecycleMapping - 	Action: execute
17:16:39.784 [Worker-15] DEBUG o.e.m.c.p.c.AbstractCustomizableLifecycleMapping - Mojo execution key: org.apache.maven.plugins:maven-compiler-plugin:2.3.2:testCompile (execution: default-testCompile, phase: test-compile)
17:16:39.784 [Worker-15] DEBUG o.e.m.c.p.c.AbstractCustomizableLifecycleMapping - 	Action: configurator
17:16:39.784 [Worker-15] DEBUG o.e.m.c.p.c.AbstractCustomizableLifecycleMapping - 		Project configurator id: org.eclipse.m2e.jdt.javaConfigurator
17:16:39.784 [Worker-15] DEBUG o.e.m.c.p.c.AbstractCustomizableLifecycleMapping - 		Project configurator: org.eclipse.m2e.jdt.internal.JavaProjectConfigurator
17:16:39.784 [Worker-15] DEBUG o.e.m.c.p.c.AbstractCustomizableLifecycleMapping - 	Action: configurator
17:16:39.784 [Worker-15] DEBUG o.e.m.c.p.c.AbstractCustomizableLifecycleMapping - 		Project configurator id: org.maven.ide.eclipse.configuration.wtp.webfragment.configurator
17:16:39.784 [Worker-15] DEBUG o.e.m.c.p.c.AbstractCustomizableLifecycleMapping - 		Project configurator: org.eclipse.m2e.wtp.WebFragmentProjectConfigurator
17:16:39.784 [Worker-15] DEBUG o.e.m.c.p.c.AbstractCustomizableLifecycleMapping - 	Action: configurator
17:16:39.784 [Worker-15] DEBUG o.e.m.c.p.c.AbstractCustomizableLifecycleMapping - 		Project configurator id: org.maven.ide.eclipse.configuration.wtp.utility.configurator
17:16:39.784 [Worker-15] DEBUG o.e.m.c.p.c.AbstractCustomizableLifecycleMapping - 		Project configurator: org.eclipse.m2e.wtp.UtilityProjectConfigurator
17:16:39.784 [Worker-15] DEBUG o.e.m.c.p.c.AbstractCustomizableLifecycleMapping - 	Action: configurator
17:16:39.784 [Worker-15] DEBUG o.e.m.c.p.c.AbstractCustomizableLifecycleMapping - 		Project configurator id: org.maven.ide.eclipse.configuration.wtp.java.unsupportedDependencyTypeConfigurator
17:16:39.784 [Worker-15] DEBUG o.e.m.c.p.c.AbstractCustomizableLifecycleMapping - 		Project configurator: org.eclipse.m2e.wtp.UnsupportedDependencyTypeProjectConfigurator
17:16:39.784 [Worker-15] DEBUG o.e.m.c.p.c.AbstractCustomizableLifecycleMapping - Mojo execution key: org.apache.maven.plugins:maven-surefire-plugin:2.10:test (execution: default-test, phase: test)
17:16:39.784 [Worker-15] DEBUG o.e.m.c.p.c.AbstractCustomizableLifecycleMapping - Mojo execution key: org.apache.maven.plugins:maven-war-plugin:2.1.1:war (execution: default-war, phase: package)
17:16:39.784 [Worker-15] DEBUG o.e.m.c.p.c.AbstractCustomizableLifecycleMapping - 	Action: configurator
17:16:39.784 [Worker-15] DEBUG o.e.m.c.p.c.AbstractCustomizableLifecycleMapping - 		Project configurator id: org.maven.ide.eclipse.configuration.wtp.configurator
17:16:39.784 [Worker-15] DEBUG o.e.m.c.p.c.AbstractCustomizableLifecycleMapping - 		Project configurator: org.eclipse.m2e.wtp.WTPProjectConfigurator
17:16:39.785 [Worker-15] DEBUG o.e.m.c.p.c.AbstractCustomizableLifecycleMapping - 		Build participant: org.eclipse.m2e.wtp.internal.filtering.ResourceFilteringBuildParticipant
17:16:39.785 [Worker-15] DEBUG o.e.m.c.p.c.AbstractCustomizableLifecycleMapping - 	Action: configurator
17:16:39.785 [Worker-15] DEBUG o.e.m.c.p.c.AbstractCustomizableLifecycleMapping - 		Project configurator id: org.maven.ide.eclipse.configuration.wtp.warmanifest.configurator
17:16:39.785 [Worker-15] DEBUG o.e.m.c.p.c.AbstractCustomizableLifecycleMapping - 		Project configurator: org.eclipse.m2e.wtp.internal.mavenarchiver.WarMavenArchiverConfigurator
17:16:39.785 [Worker-15] DEBUG o.e.m.c.p.c.AbstractCustomizableLifecycleMapping - 		Build participant: org.sonatype.m2e.mavenarchiver.internal.AbstractMavenArchiverConfigurator$1
17:16:39.785 [Worker-15] DEBUG o.e.m.c.p.c.AbstractCustomizableLifecycleMapping - 	Action: configurator
17:16:39.785 [Worker-15] DEBUG o.e.m.c.p.c.AbstractCustomizableLifecycleMapping - 		Project configurator id: org.maven.ide.eclipse.configuration.wtp.overlay.configurator
17:16:39.785 [Worker-15] DEBUG o.e.m.c.p.c.AbstractCustomizableLifecycleMapping - 		Project configurator: org.eclipse.m2e.wtp.OverlayConfigurator
17:16:39.785 [Worker-15] DEBUG o.e.m.c.p.c.AbstractCustomizableLifecycleMapping - 	Action: configurator
17:16:39.785 [Worker-15] DEBUG o.e.m.c.p.c.AbstractCustomizableLifecycleMapping - 		Project configurator id: org.eclipse.m2e.wtp.jaxrs.configurator
17:16:39.785 [Worker-15] DEBUG o.e.m.c.p.c.AbstractCustomizableLifecycleMapping - 		Project configurator: org.eclipse.m2e.wtp.jaxrs.internal.configurators.JaxRsProjectConfigurator
17:16:39.785 [Worker-15] DEBUG o.e.m.c.p.c.AbstractCustomizableLifecycleMapping - 	Action: configurator
17:16:39.785 [Worker-15] DEBUG o.e.m.c.p.c.AbstractCustomizableLifecycleMapping - 		Project configurator id: org.eclipse.m2e.wtp.jsf.configurator
17:16:39.785 [Worker-15] DEBUG o.e.m.c.p.c.AbstractCustomizableLifecycleMapping - 		Project configurator: org.eclipse.m2e.wtp.jsf.internal.configurators.JSFProjectConfigurator
17:16:39.785 [Worker-15] DEBUG o.e.m.c.p.c.AbstractCustomizableLifecycleMapping - 	Action: configurator
17:16:39.785 [Worker-15] DEBUG o.e.m.c.p.c.AbstractCustomizableLifecycleMapping - 		Project configurator id: com.liferay.ide.maven.core.project.configurator
17:16:39.785 [Worker-15] DEBUG o.e.m.c.p.c.AbstractCustomizableLifecycleMapping - 		Project configurator: com.liferay.ide.maven.core.LiferayProjectConfigurator
17:16:39.785 [Worker-15] DEBUG o.e.m.c.p.c.AbstractCustomizableLifecycleMapping - Mojo execution key: org.apache.maven.plugins:maven-install-plugin:2.3.1:install (execution: default-install, phase: install)
17:16:39.785 [Worker-15] DEBUG o.e.m.c.p.c.AbstractCustomizableLifecycleMapping - Mojo execution key: org.apache.maven.plugins:maven-deploy-plugin:2.7:deploy (execution: default-deploy, phase: deploy)
17:16:39.785 [Worker-15] DEBUG o.e.m.c.i.builder.MavenBuilderImpl - Executing build participant org.eclipse.m2e.core.project.configurator.MojoExecutionBuildParticipant for plugin execution org.apache.maven.plugins:maven-resources-plugin:2.5:resources (execution: default-resources, phase: process-resources)
17:16:39.785 [Worker-15] DEBUG o.e.m.c.i.builder.MavenBuilderImpl - Finished executing build participant org.eclipse.m2e.core.project.configurator.MojoExecutionBuildParticipant for plugin execution org.apache.maven.plugins:maven-resources-plugin:2.5:resources (execution: default-resources, phase: process-resources) in 0 ms
17:16:39.785 [Worker-15] DEBUG o.e.m.c.i.builder.MavenBuilderImpl - Executing build participant org.eclipse.m2e.core.project.configurator.MojoExecutionBuildParticipant for plugin execution org.apache.maven.plugins:maven-resources-plugin:2.5:testResources (execution: default-testResources, phase: process-test-resources)
17:16:39.786 [Worker-15] DEBUG o.e.m.c.i.builder.MavenBuilderImpl - Finished executing build participant org.eclipse.m2e.core.project.configurator.MojoExecutionBuildParticipant for plugin execution org.apache.maven.plugins:maven-resources-plugin:2.5:testResources (execution: default-testResources, phase: process-test-resources) in 0 ms
17:16:39.787 [Worker-15] INFO  o.e.m.j.i.AbstractJavaProjectConfigurator - Adding source folder /sample-theme/src/main/java
17:16:39.788 [Worker-15] INFO  o.e.m.j.i.AbstractJavaProjectConfigurator - Adding resource folder /sample-theme/src/main/resources
17:16:39.788 [Worker-15] INFO  o.e.m.j.i.AbstractJavaProjectConfigurator - Adding source folder /sample-theme/src/test/java
17:16:39.888 [Worker-15] DEBUG o.e.m.c.i.p.ProjectConfigurationManager - Updated project configuration for MavenProject: com.liferay.sample:sample-theme:1.0-SNAPSHOT @ D:\dev java\testing\maven-projects-only-theme\6.1.1\sample-theme\pom.xml in 109 ms.
17:16:39.889 [Worker-15] INFO  o.e.m.c.i.p.ProjectConfigurationManager - Update completed: 0 sec
17:16:40.040 [Worker-8] DEBUG o.e.m.c.i.builder.MavenBuilder - Building project liferay-maven-test-projects-root
17:16:40.042 [Worker-8] DEBUG o.e.m.c.i.builder.MavenBuilder - Built project liferay-maven-test-projects-root in 1 ms
17:16:40.052 [Worker-8] DEBUG o.e.m.c.i.builder.MavenBuilder - Building project sample-theme
17:16:40.052 [Worker-8] DEBUG o.e.m.c.i.p.r.ProjectRegistryManager - Refreshing: [/sample-theme/pom.xml]
17:16:40.054 [Worker-8] DEBUG o.e.m.c.internal.embedder.MavenImpl - Reading Maven project: D:\dev java\testing\maven-projects-only-theme\6.1.1\sample-theme\pom.xml
17:16:40.058 [Worker-8] DEBUG o.e.m.c.internal.embedder.MavenImpl - Read Maven project: D:\dev java\testing\maven-projects-only-theme\6.1.1\sample-theme\pom.xml in 4 ms
17:16:40.059 [Worker-8] DEBUG o.e.m.c.i.markers.MavenMarkerManager - Created marker 'Version is duplicate of parent version' on resource '/sample-theme/pom.xml'.
17:16:40.064 [Worker-8] DEBUG o.e.m.c.i.l.LifecycleMappingFactory - Loading lifecycle mapping for MavenProject: com.liferay.sample:sample-theme:1.0-SNAPSHOT @ D:\dev java\testing\maven-projects-only-theme\6.1.1\sample-theme\pom.xml.
17:16:40.097 [Worker-8] INFO  o.e.m.c.i.l.LifecycleMappingFactory - Using org.maven.ide.eclipse.wtp.WarLifecycleMapping lifecycle mapping for MavenProject: com.liferay.sample:sample-theme:1.0-SNAPSHOT @ D:\dev java\testing\maven-projects-only-theme\6.1.1\sample-theme\pom.xml.
17:16:40.097 [Worker-8] DEBUG o.e.m.c.i.l.LifecycleMappingFactory - Loaded lifecycle mapping in 33 ms for MavenProject: com.liferay.sample:sample-theme:1.0-SNAPSHOT @ D:\dev java\testing\maven-projects-only-theme\6.1.1\sample-theme\pom.xml.
17:16:40.097 [Worker-8] DEBUG o.e.m.c.i.markers.MavenMarkerManager - Created marker 'Plugin execution not covered by lifecycle configuration: com.liferay.maven.plugins:liferay-maven-plugin:6.1.1:theme-merge (execution: default, phase: generate-sources)' on resource '/sample-theme/pom.xml'.
17:16:40.098 [Worker-8] DEBUG o.e.m.c.i.markers.MavenMarkerManager - Created marker 'Plugin execution not covered by lifecycle configuration: com.liferay.maven.plugins:liferay-maven-plugin:6.1.1:build-css (execution: default, phase: generate-sources)' on resource '/sample-theme/pom.xml'.
17:16:40.099 [Worker-8] DEBUG o.e.m.c.i.markers.MavenMarkerManager - Created marker 'Plugin execution not covered by lifecycle configuration: com.liferay.maven.plugins:liferay-maven-plugin:6.1.1:build-thumbnail (execution: default, phase: generate-sources)' on resource '/sample-theme/pom.xml'.
17:16:40.101 [Worker-8] DEBUG o.e.m.c.i.p.r.DefaultMavenDependencyResolver - Resolving dependencies for MavenProject: com.liferay.sample:sample-theme:1.0-SNAPSHOT @ D:\dev java\testing\maven-projects-only-theme\6.1.1\sample-theme\pom.xml
17:16:40.101 [Worker-8] DEBUG o.e.m.c.internal.embedder.MavenImpl - Reading Maven project: D:\dev java\testing\maven-projects-only-theme\6.1.1\sample-theme\pom.xml
17:16:40.123 [Worker-8] DEBUG o.e.m.c.internal.embedder.MavenImpl - Read Maven project: D:\dev java\testing\maven-projects-only-theme\6.1.1\sample-theme\pom.xml in 22 ms
17:16:40.123 [Worker-8] DEBUG o.e.m.c.i.p.r.DefaultMavenDependencyResolver - Resolved dependencies for MavenProject: com.liferay.sample:sample-theme:1.0-SNAPSHOT @ D:\dev java\testing\maven-projects-only-theme\6.1.1\sample-theme\pom.xml in 22 ms
17:16:40.123 [Worker-8] DEBUG o.e.m.c.i.p.r.ProjectRegistryManager - Refreshed: [/sample-theme/pom.xml]
17:16:40.203 [Worker-8] DEBUG o.e.m.c.p.c.AbstractCustomizableLifecycleMapping - Build participants for MavenProject: com.liferay.sample:sample-theme:1.0-SNAPSHOT @ D:\dev java\testing\maven-projects-only-theme\6.1.1\sample-theme\pom.xml
17:16:40.204 [Worker-8] DEBUG o.e.m.c.p.c.AbstractCustomizableLifecycleMapping - Mojo execution key: com.liferay.maven.plugins:liferay-maven-plugin:6.1.1:theme-merge (execution: default, phase: generate-sources)
17:16:40.204 [Worker-8] DEBUG o.e.m.c.p.c.AbstractCustomizableLifecycleMapping - Mojo execution key: com.liferay.maven.plugins:liferay-maven-plugin:6.1.1:build-css (execution: default, phase: generate-sources)
17:16:40.204 [Worker-8] DEBUG o.e.m.c.p.c.AbstractCustomizableLifecycleMapping - Mojo execution key: com.liferay.maven.plugins:liferay-maven-plugin:6.1.1:build-thumbnail (execution: default, phase: generate-sources)
17:16:40.204 [Worker-8] DEBUG o.e.m.c.p.c.AbstractCustomizableLifecycleMapping - Mojo execution key: org.apache.maven.plugins:maven-resources-plugin:2.5:resources (execution: default-resources, phase: process-resources)
17:16:40.204 [Worker-8] DEBUG o.e.m.c.p.c.AbstractCustomizableLifecycleMapping - 	Action: execute
17:16:40.205 [Worker-8] DEBUG o.e.m.c.p.c.AbstractCustomizableLifecycleMapping - Mojo execution key: org.apache.maven.plugins:maven-compiler-plugin:2.3.2:compile (execution: default-compile, phase: compile)
17:16:40.206 [Worker-8] DEBUG o.e.m.c.p.c.AbstractCustomizableLifecycleMapping - 	Action: configurator
17:16:40.206 [Worker-8] DEBUG o.e.m.c.p.c.AbstractCustomizableLifecycleMapping - 		Project configurator id: org.eclipse.m2e.jdt.javaConfigurator
17:16:40.206 [Worker-8] DEBUG o.e.m.c.p.c.AbstractCustomizableLifecycleMapping - 		Project configurator: org.eclipse.m2e.jdt.internal.JavaProjectConfigurator
17:16:40.206 [Worker-8] DEBUG o.e.m.c.p.c.AbstractCustomizableLifecycleMapping - 	Action: configurator
17:16:40.206 [Worker-8] DEBUG o.e.m.c.p.c.AbstractCustomizableLifecycleMapping - 		Project configurator id: org.maven.ide.eclipse.configuration.wtp.webfragment.configurator
17:16:40.206 [Worker-8] DEBUG o.e.m.c.p.c.AbstractCustomizableLifecycleMapping - 		Project configurator: org.eclipse.m2e.wtp.WebFragmentProjectConfigurator
17:16:40.206 [Worker-8] DEBUG o.e.m.c.p.c.AbstractCustomizableLifecycleMapping - 	Action: configurator
17:16:40.206 [Worker-8] DEBUG o.e.m.c.p.c.AbstractCustomizableLifecycleMapping - 		Project configurator id: org.maven.ide.eclipse.configuration.wtp.utility.configurator
17:16:40.206 [Worker-8] DEBUG o.e.m.c.p.c.AbstractCustomizableLifecycleMapping - 		Project configurator: org.eclipse.m2e.wtp.UtilityProjectConfigurator
17:16:40.206 [Worker-8] DEBUG o.e.m.c.p.c.AbstractCustomizableLifecycleMapping - 	Action: configurator
17:16:40.206 [Worker-8] DEBUG o.e.m.c.p.c.AbstractCustomizableLifecycleMapping - 		Project configurator id: org.maven.ide.eclipse.configuration.wtp.java.unsupportedDependencyTypeConfigurator
17:16:40.206 [Worker-8] DEBUG o.e.m.c.p.c.AbstractCustomizableLifecycleMapping - 		Project configurator: org.eclipse.m2e.wtp.UnsupportedDependencyTypeProjectConfigurator
17:16:40.206 [Worker-8] DEBUG o.e.m.c.p.c.AbstractCustomizableLifecycleMapping - Mojo execution key: org.apache.maven.plugins:maven-resources-plugin:2.5:testResources (execution: default-testResources, phase: process-test-resources)
17:16:40.206 [Worker-8] DEBUG o.e.m.c.p.c.AbstractCustomizableLifecycleMapping - 	Action: execute
17:16:40.208 [Worker-8] DEBUG o.e.m.c.p.c.AbstractCustomizableLifecycleMapping - Mojo execution key: org.apache.maven.plugins:maven-compiler-plugin:2.3.2:testCompile (execution: default-testCompile, phase: test-compile)
17:16:40.208 [Worker-8] DEBUG o.e.m.c.p.c.AbstractCustomizableLifecycleMapping - 	Action: configurator
17:16:40.208 [Worker-8] DEBUG o.e.m.c.p.c.AbstractCustomizableLifecycleMapping - 		Project configurator id: org.eclipse.m2e.jdt.javaConfigurator
17:16:40.208 [Worker-8] DEBUG o.e.m.c.p.c.AbstractCustomizableLifecycleMapping - 		Project configurator: org.eclipse.m2e.jdt.internal.JavaProjectConfigurator
17:16:40.208 [Worker-8] DEBUG o.e.m.c.p.c.AbstractCustomizableLifecycleMapping - 	Action: configurator
17:16:40.208 [Worker-8] DEBUG o.e.m.c.p.c.AbstractCustomizableLifecycleMapping - 		Project configurator id: org.maven.ide.eclipse.configuration.wtp.webfragment.configurator
17:16:40.208 [Worker-8] DEBUG o.e.m.c.p.c.AbstractCustomizableLifecycleMapping - 		Project configurator: org.eclipse.m2e.wtp.WebFragmentProjectConfigurator
17:16:40.208 [Worker-8] DEBUG o.e.m.c.p.c.AbstractCustomizableLifecycleMapping - 	Action: configurator
17:16:40.208 [Worker-8] DEBUG o.e.m.c.p.c.AbstractCustomizableLifecycleMapping - 		Project configurator id: org.maven.ide.eclipse.configuration.wtp.utility.configurator
17:16:40.208 [Worker-8] DEBUG o.e.m.c.p.c.AbstractCustomizableLifecycleMapping - 		Project configurator: org.eclipse.m2e.wtp.UtilityProjectConfigurator
17:16:40.208 [Worker-8] DEBUG o.e.m.c.p.c.AbstractCustomizableLifecycleMapping - 	Action: configurator
17:16:40.208 [Worker-8] DEBUG o.e.m.c.p.c.AbstractCustomizableLifecycleMapping - 		Project configurator id: org.maven.ide.eclipse.configuration.wtp.java.unsupportedDependencyTypeConfigurator
17:16:40.208 [Worker-8] DEBUG o.e.m.c.p.c.AbstractCustomizableLifecycleMapping - 		Project configurator: org.eclipse.m2e.wtp.UnsupportedDependencyTypeProjectConfigurator
17:16:40.208 [Worker-8] DEBUG o.e.m.c.p.c.AbstractCustomizableLifecycleMapping - Mojo execution key: org.apache.maven.plugins:maven-surefire-plugin:2.10:test (execution: default-test, phase: test)
17:16:40.208 [Worker-8] DEBUG o.e.m.c.p.c.AbstractCustomizableLifecycleMapping - Mojo execution key: org.apache.maven.plugins:maven-war-plugin:2.1.1:war (execution: default-war, phase: package)
17:16:40.208 [Worker-8] DEBUG o.e.m.c.p.c.AbstractCustomizableLifecycleMapping - 	Action: configurator
17:16:40.208 [Worker-8] DEBUG o.e.m.c.p.c.AbstractCustomizableLifecycleMapping - 		Project configurator id: org.maven.ide.eclipse.configuration.wtp.configurator
17:16:40.208 [Worker-8] DEBUG o.e.m.c.p.c.AbstractCustomizableLifecycleMapping - 		Project configurator: org.eclipse.m2e.wtp.WTPProjectConfigurator
17:16:40.208 [Worker-8] DEBUG o.e.m.c.p.c.AbstractCustomizableLifecycleMapping - 		Build participant: org.eclipse.m2e.wtp.internal.filtering.ResourceFilteringBuildParticipant
17:16:40.209 [Worker-8] DEBUG o.e.m.c.p.c.AbstractCustomizableLifecycleMapping - 	Action: configurator
17:16:40.209 [Worker-8] DEBUG o.e.m.c.p.c.AbstractCustomizableLifecycleMapping - 		Project configurator id: org.maven.ide.eclipse.configuration.wtp.warmanifest.configurator
17:16:40.209 [Worker-8] DEBUG o.e.m.c.p.c.AbstractCustomizableLifecycleMapping - 		Project configurator: org.eclipse.m2e.wtp.internal.mavenarchiver.WarMavenArchiverConfigurator
17:16:40.209 [Worker-8] DEBUG o.e.m.c.p.c.AbstractCustomizableLifecycleMapping - 		Build participant: org.sonatype.m2e.mavenarchiver.internal.AbstractMavenArchiverConfigurator$1
17:16:40.209 [Worker-8] DEBUG o.e.m.c.p.c.AbstractCustomizableLifecycleMapping - 	Action: configurator
17:16:40.209 [Worker-8] DEBUG o.e.m.c.p.c.AbstractCustomizableLifecycleMapping - 		Project configurator id: org.maven.ide.eclipse.configuration.wtp.overlay.configurator
17:16:40.209 [Worker-8] DEBUG o.e.m.c.p.c.AbstractCustomizableLifecycleMapping - 		Project configurator: org.eclipse.m2e.wtp.OverlayConfigurator
17:16:40.209 [Worker-8] DEBUG o.e.m.c.p.c.AbstractCustomizableLifecycleMapping - 	Action: configurator
17:16:40.209 [Worker-8] DEBUG o.e.m.c.p.c.AbstractCustomizableLifecycleMapping - 		Project configurator id: org.eclipse.m2e.wtp.jaxrs.configurator
17:16:40.209 [Worker-8] DEBUG o.e.m.c.p.c.AbstractCustomizableLifecycleMapping - 		Project configurator: org.eclipse.m2e.wtp.jaxrs.internal.configurators.JaxRsProjectConfigurator
17:16:40.209 [Worker-8] DEBUG o.e.m.c.p.c.AbstractCustomizableLifecycleMapping - 	Action: configurator
17:16:40.209 [Worker-8] DEBUG o.e.m.c.p.c.AbstractCustomizableLifecycleMapping - 		Project configurator id: org.eclipse.m2e.wtp.jsf.configurator
17:16:40.209 [Worker-8] DEBUG o.e.m.c.p.c.AbstractCustomizableLifecycleMapping - 		Project configurator: org.eclipse.m2e.wtp.jsf.internal.configurators.JSFProjectConfigurator
17:16:40.209 [Worker-8] DEBUG o.e.m.c.p.c.AbstractCustomizableLifecycleMapping - 	Action: configurator
17:16:40.209 [Worker-8] DEBUG o.e.m.c.p.c.AbstractCustomizableLifecycleMapping - 		Project configurator id: com.liferay.ide.maven.core.project.configurator
17:16:40.209 [Worker-8] DEBUG o.e.m.c.p.c.AbstractCustomizableLifecycleMapping - 		Project configurator: com.liferay.ide.maven.core.LiferayProjectConfigurator
17:16:40.209 [Worker-8] DEBUG o.e.m.c.p.c.AbstractCustomizableLifecycleMapping - Mojo execution key: org.apache.maven.plugins:maven-install-plugin:2.3.1:install (execution: default-install, phase: install)
17:16:40.209 [Worker-8] DEBUG o.e.m.c.p.c.AbstractCustomizableLifecycleMapping - Mojo execution key: org.apache.maven.plugins:maven-deploy-plugin:2.7:deploy (execution: default-deploy, phase: deploy)
17:16:40.211 [Worker-8] DEBUG o.e.m.c.i.builder.MavenBuilderImpl - Executing build participant org.eclipse.m2e.core.project.configurator.MojoExecutionBuildParticipant for plugin execution org.apache.maven.plugins:maven-resources-plugin:2.5:resources (execution: default-resources, phase: process-resources)
17:16:40.212 [Worker-8] DEBUG Sisu - Contextualize: org.apache.maven.plugin.resources.ResourcesMojo@64978ceb
[debug] execute contextualize
17:16:40.213 [Worker-8] INFO  o.e.m.c.i.embedder.EclipseLogger - Using 'UTF-8' encoding to copy filtered resources.
17:16:40.214 [Worker-8] INFO  o.e.m.c.i.embedder.EclipseLogger - Copying 0 resource
17:16:40.214 [Worker-8] DEBUG o.e.m.c.i.builder.MavenBuilderImpl - Finished executing build participant org.eclipse.m2e.core.project.configurator.MojoExecutionBuildParticipant for plugin execution org.apache.maven.plugins:maven-resources-plugin:2.5:resources (execution: default-resources, phase: process-resources) in 3 ms
17:16:40.214 [Worker-8] DEBUG o.e.m.c.i.builder.MavenBuilderImpl - Executing build participant org.eclipse.m2e.core.project.configurator.MojoExecutionBuildParticipant for plugin execution org.apache.maven.plugins:maven-resources-plugin:2.5:testResources (execution: default-testResources, phase: process-test-resources)
17:16:40.215 [Worker-8] DEBUG Sisu - Contextualize: org.apache.maven.plugin.resources.TestResourcesMojo@19a4cbe5
[debug] execute contextualize
17:16:40.217 [Worker-8] INFO  o.e.m.c.i.embedder.EclipseLogger - Using 'UTF-8' encoding to copy filtered resources.
17:16:40.217 [Worker-8] INFO  o.e.m.c.i.embedder.EclipseLogger - skip non existing resourceDirectory D:\dev java\testing\maven-projects-only-theme\6.1.1\sample-theme\src\test\resources
17:16:40.217 [Worker-8] DEBUG o.e.m.c.i.builder.MavenBuilderImpl - Finished executing build participant org.eclipse.m2e.core.project.configurator.MojoExecutionBuildParticipant for plugin execution org.apache.maven.plugins:maven-resources-plugin:2.5:testResources (execution: default-testResources, phase: process-test-resources) in 2 ms
17:16:40.218 [Worker-8] DEBUG o.e.m.c.i.builder.MavenBuilderImpl - Executing build participant org.eclipse.m2e.wtp.internal.filtering.ResourceFilteringBuildParticipant for plugin execution org.apache.maven.plugins:maven-war-plugin:2.1.1:war (execution: default-war, phase: package)
17:16:40.218 [Worker-8] INFO  o.e.m.w.i.f.ResourceFilteringBuildParticipant - Changed resources require a complete clean of filtered resources of sample-theme
17:16:40.218 [Worker-8] INFO  o.e.m.w.i.f.ResourceFilteringBuildParticipant - Executing resource filtering for sample-theme
17:16:40.225 [Worker-8] DEBUG Sisu - Contextualize: org.apache.maven.plugin.resources.CopyResourcesMojo@29c21645
[debug] execute contextualize
17:16:40.233 [Worker-8] INFO  o.e.m.c.i.embedder.EclipseLogger - Using 'UTF-8' encoding to copy filtered resources.
17:16:40.235 [Worker-8] DEBUG o.e.m.c.i.builder.MavenBuilderImpl - Finished executing build participant org.eclipse.m2e.wtp.internal.filtering.ResourceFilteringBuildParticipant for plugin execution org.apache.maven.plugins:maven-war-plugin:2.1.1:war (execution: default-war, phase: package) in 17 ms
17:16:40.235 [Worker-8] DEBUG o.e.m.c.i.builder.MavenBuilderImpl - Executing build participant org.sonatype.m2e.mavenarchiver.internal.AbstractMavenArchiverConfigurator$1 for plugin execution org.apache.maven.plugins:maven-war-plugin:2.1.1:war (execution: default-war, phase: package)
17:16:40.242 [Worker-8] DEBUG Sisu - Contextualize: org.codehaus.plexus.archiver.jar.JarArchiver@66d2e5d4
17:16:40.242 [Worker-8] DEBUG Sisu - Contextualize: org.codehaus.plexus.archiver.war.WarArchiver@1feef609
17:16:40.253 [Worker-8] DEBUG o.e.m.c.i.builder.MavenBuilderImpl - Finished executing build participant org.sonatype.m2e.mavenarchiver.internal.AbstractMavenArchiverConfigurator$1 for plugin execution org.apache.maven.plugins:maven-war-plugin:2.1.1:war (execution: default-war, phase: package) in 18 ms
17:16:40.253 [Worker-8] DEBUG o.e.m.c.i.builder.MavenBuilder - Built project sample-theme in 201 ms
17:16:41.403 [Worker-20] DEBUG o.e.m.c.i.builder.MavenBuilder - Building project liferay-maven-test-projects-root
17:16:41.406 [Worker-20] DEBUG o.e.m.c.i.builder.MavenBuilder - Built project liferay-maven-test-projects-root in 3 ms

Attachment: Liferay - sample-themepom.xml - Eclipse SDK_2013-01-10_17-14-11.png
Description: PNG image


Back to the top