Ошибка сборки Maven: не удалось выполнить цель, отсутствует класс

я пытаюсь упаковать пример приложения из vaadin 7.0.0 с плагином maven для eclipse, но каждый раз запускаю цель »пакет»сборка завершается со следующей ошибкой:

[ERROR] Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:2.3.2:compile (default-compile) on project essai: Execution default-compile of goal org.apache.maven.plugins:maven-compiler-plugin:2.3.2:compile failed: A required class was missing while executing org.apache.maven.plugins:maven-compiler-plugin:2.3.2:compile: org/codehaus/plexus/compiler/util/scan/InclusionScanException
[ERROR] -----------------------------------------------------
[ERROR] realm =    plugin>org.apache.maven.plugins:maven-compiler-plugin:2.3.2
[ERROR] strategy = org.codehaus.plexus.classworlds.strategy.SelfFirstStrategy
[ERROR] urls[0] = file:/C:/Users/Benoit/.m2/repository/org/apache/maven/plugins/maven-compiler-plugin/2.3.2/maven-compiler-plugin-2.3.2.jar
[ERROR] urls[1] = file:/C:/Users/Benoit/.m2/repository/org/codehaus/plexus/plexus-utils/1.1/plexus-utils-1.1.jar
[ERROR] Number of foreign imports: 1
[ERROR] import: Entry[import  from realm ClassRealm[maven.api, parent: null]]

Результат пакета mvn -X здесь:http://pastebin.com/jk5uW8Ut

Мой pom.xml выглядит следующим образом: http://maven.apache.org/maven-v4_0_0.xsd "> 4.0.0 com.mycompany essai war 0.0.1-SNAPSHOT Веб-приложение VaadinI '


    UTF-8
    7.0.0.rc2
    ${vaadin.version}


    
        vaadin-addons
        http://maven.vaadin.com/vaadin-addons
    
    
        vaadin-snapshots
        http://oss.sonatype.org/content/repositories/vaadin-snapshots/
        
            false
        
        
            true
        
    


    
        vaadin-snapshots
        http://oss.sonatype.org/content/repositories/vaadin-snapshots/
        
            false
        
        
            true
        
    


    
        com.vaadin
        vaadin-server
        ${vaadin.version}
    
    
        com.vaadin
        vaadin-client-compiled
        ${vaadin.version}
    
    
        com.vaadin
        vaadin-client
        ${vaadin.version}
        provided
    
    
        com.vaadin
        vaadin-themes
        ${vaadin.version}
    
    
        javax.servlet
        servlet-api
        2.4
        provided
    



    
        
            org.apache.maven.plugins
            maven-compiler-plugin
            
                1.6
                1.6
            
        
        
        
        
            maven-clean-plugin
            2.4.1
            
                
                    
                        src/main/webapp/VAADIN/widgetsets
                    
                
            
        
        
            com.vaadin
            vaadin-maven-plugin
            ${vaadin.plugin.version}
            
                -Xmx512M -Xss1024k
                
                
                ${basedir}/src/main/webapp/VAADIN/widgetsets
                
                ${basedir}/src/main/webapp/VAADIN/widgetsets
                
                true
                
                false
                true
                OBF
                true
                http://localhost:8080/
            
            
                
                    
                        
                        
                    
                    
                        resources
                        update-widgetset
                        compile
                    
                
            
        
        
            org.mortbay.jetty
            jetty-maven-plugin
        
    
    
        
            
            
                org.eclipse.m2e
                lifecycle-mapping
                1.0.0
                
                    
                        
                            
                                
                                    com.vaadin
                                    
                                        vaadin-maven-plugin
                                    
                                    
                                        [7.0.0.rc2,)
                                    
                                    
                                        resources
                                        update-widgetset
                                        compile
                                    
                                
                                
                                    
                                
                            
                        
                    
                
            
        
    


Я новичок в Maven и даже если я нашел много постов об этой ошибке, я неЯ не мог понять, что может вызвать эту ошибку.

Ответы на вопрос(1)

Ваш ответ на вопрос