maven ant echoproperties任务

时间:2010-12-26 03:55:09

标签: maven

我是maven的新手。我用ant编写了构建脚本。我试图在maven中显示所有evn属性,用户定义的属性,系统属性等。在蚂蚁我可以做到以下几点。

我尝试使用maven-antrun-plugin

对maven做同样的事情

但是得到以下错误。

Embedded error: Could not create task or type of type: echoproperties.
Ant could not find the task or a class this task relies upon.

如何使用或不使用echoproperties查看maven中的所有属性。这是我在maven中的配置

         <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-antrun-plugin</artifactId>
            <version>${maven.plugin.antrun.version}</version>
            <executions>
                <execution>
                    <phase>validate</phase>
                    <goals>
                        <goal>run</goal>
                    </goals>
                    <configuration>
                        <tasks>
                            <echo>Displaying value of properties</echo>
                            <echo>[org.junit.version] ${org.junit.version}</echo>
                            <echoproperties prefix="org" />
                        </tasks>
                    </configuration>
                </execution>
            </executions>
        </plugin>

1 个答案:

答案 0 :(得分:3)

maven 2.2.1和3.0.1适用于我。奔跑的片段......

[INFO] --- maven-antrun-plugin:1.6:run (default) @ myproject ---
[INFO] Executing tasks

main:
[echoproperties] #Ant properties
[echoproperties] #Sun Dec 26 20:08:02 IST 2010
[echoproperties] org.aspectj\:aspectjrt\:jar=D\:\\maven\\.m2\\repository\\org\\a
spectj\\aspectjrt\\1.6.8\\aspectjrt-1.6.8.jar
[echoproperties] org.aspectj\:aspectjweaver\:jar=D\:\\maven\\.m2\\repository\\or
g\\aspectj\\aspectjweaver\\1.6.8\\aspectjweaver-1.6.8.jar
...

您使用的是哪个版本的maven(最新版本是3.0.1)?哪个版本的maven-antrun-plugin(最新版本为1.6)?

maven-antrun-plugin的最新版本为<tasks>标记提供了已弃用的警告。应该使用<target>代替。

<configuration>
    <target>
         <echoproperties prefix="org" />
     </target>
</configuration>