Maven 2 maven问题-maven资源插件

Maven 2 maven问题-maven资源插件,maven-2,maven,Maven 2,Maven,运行mvn clean install-DskipTests-U时出现以下异常 [INFO] Scanning for projects... [INFO] Reactor build order: [INFO] (derived-data) avalon Data Modules [INFO] (data-affiliate-dynamic) avalon Dynamic Affiliate Data [INFO] (data-external-id) Amazon ID Refe

运行mvn clean install-DskipTests-U时出现以下异常

[INFO] Scanning for projects...
[INFO] Reactor build order:
[INFO]   (derived-data) avalon Data Modules
[INFO]   (data-affiliate-dynamic) avalon Dynamic Affiliate Data
[INFO]   (data-external-id) Amazon ID Reference Data
[INFO]   (data-products-raw) avalon Raw Product Data
[INFO]   (data-product-images) avalon Product Image Data
[INFO] ------------------------------------------------------------------------
[INFO] Building (derived-data) avalon Data Modules
[INFO]    task-segment: [clean, install]
[INFO] ------------------------------------------------------------------------
[INFO] [clean:clean]
[INFO] [site:attach-descriptor]
[INFO] [install:install]
[INFO] Installing C:\svn\data\trunk\pom.xml to C:\Users\dinsolani\.m2\repository
\com\avalon\derived-data\3\derived-data-3.pom
[INFO] ------------------------------------------------------------------------
[INFO] Building (data-affiliate-dynamic) avalon Dynamic Affiliate Data
[INFO]    task-segment: [clean, install]
[INFO] ------------------------------------------------------------------------
[INFO] artifact com.avalon:maven-resources-plugin: checking for updates from c
entral
[INFO] snapshot com.avalon:maven-resources-plugin:4.66-SNAPSHOT: checking for
updates from central
[INFO] snapshot com.avalon:tools-maven-plugins:4.66-SNAPSHOT: checking for upd
ates from central
Downloading: http://repo.avalon.com/content/groups/private/com/avalon/tools-
maven-plugins/4.66-SNAPSHOT/tools-maven-plugins-4.66-SNAPSHOT.pom
[INFO] ------------------------------------------------------------------------
[ERROR] BUILD ERROR
[INFO] ------------------------------------------------------------------------
[INFO] Error building POM (may not be this project's POM).


Project ID: null:maven-resources-plugin:maven-plugin:null

Reason: Cannot find parent: com.avalon:tools-maven-plugins for project: null:m
    aven-resources-plugin:maven-plugin:null for project null:maven-resources-plugin:
maven-plugin:null


[INFO] ------------------------------------------------------------------------
[INFO] For more information, run Maven with the -e switch
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 9 seconds
[INFO] Finished at: Thu Oct 13 19:50:23 IST 2011
[INFO] Final Memory: 13M/981M
[INFO] ------------------------------------------------------------------------
现在我真的在为这个问题寻找一些解决方案或至少一些解决方法。 我可以手动下载并放置在某个地方吗

是否有我可以使用的公共存储库

以下是数据附属动态模块的pom:

<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>
    <parent>
        <groupId>com.avalon</groupId>
        <artifactId>derived-data</artifactId>
        <version>3</version>
    </parent>
    <artifactId>data-affiliate-dynamic</artifactId>
    <packaging>pom</packaging>
    <name>(${project.artifactId})avalonDynamicAffiliateData</name>
    <build>
        <plugins>
            <plugin>
                <groupId>com.avalon</groupId>
                <artifactId>maven-resources-plugin</artifactId>
                <configuration>
                    <include>var/affiliate/${sourceId}*-dynamic-*.xml</include>
                </configuration>
            </plugin>
        </plugins>
    </build>
</project>

@迪索拉尼:我编辑了你的问题,把你评论中的pom包括在内,请检查是否正确。您应该能够编辑您的问题或建议对其进行编辑。您确定maven resources插件的groupId是com.avalon而不是org.apache.maven.plugins吗?