Муравей в Муравей в Maven: Как добавить дополнительные задачи? - PullRequest
3 голосов
/ 14 октября 2011

Я пытаюсь запустить задачу junitreport в Ant в Ant в Maven:

        <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-antrun-plugin</artifactId>
            <executions combine.children="append">
                <execution>
                    <id>reporting</id>
                    <phase>compile</phase><!--post-integration-test-->
                    <goals><goal>run</goal></goals>
                    <configuration>
                        <target>
                            <ant antfile="${basedir}/../tools/report/buildReports.xml">
                                <!--<property name="reports.dest.dir" value=""/>-->
                                <target name="reports"/>
                            </ant>
                        </target>
                    </configuration>
                </execution>
            </executions>
            <dependencies>
                <dependency>
                    <groupId>org.apache.ant</groupId>
                    <artifactId>ant-antunit</artifactId>
                    <version>1.2</version>
                </dependency>
                <dependency>
                    <groupId>ant-contrib</groupId>
                    <artifactId>ant-contrib</artifactId>
                    <version>1.0b2</version>
                </dependency>
            </dependencies>
        </plugin>

Однако я получаю это:

[ERROR] Failed to execute goal org.apache.maven.plugins:maven-antrun-plugin:1.6:run (reporting) on project jboss-as-testsuite-integration: An Ant BuildException has occured:     The following error occurred while executing this line:
[ERROR] /home/ondra/work/AS-7/ozizka-as7/testsuite/tools/report/buildReports.xml:42: Problem: failed to create task or type junitreport
[ERROR] Cause: the class org.apache.tools.ant.taskdefs.optional.junit.XMLResultAggregator     was not found.
[ERROR] This looks like one of Ant's optional components.
[ERROR] Action: Check that the appropriate optional JAR exists in
[ERROR] -ANT_HOME/lib
[ERROR] -the IDE Ant configuration dialogs

Что мне добавить?

1 Ответ

3 голосов
/ 17 октября 2011

К сожалению.Класс действительно не присутствовал - это было в муравейнике.Таким образом, необходимая зависимость:

                <dependency>
                    <groupId>ant</groupId>
                    <artifactId>ant-junit</artifactId>
                    <version>1.6.5</version>
                </dependency>
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...