File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 139139 <build >
140140 <plugins >
141141 <plugin >
142- <groupId >org.apache.maven.plugins</groupId >
143- <artifactId >maven-antrun-plugin</artifactId >
144- <version >1.6</version >
142+ <!-- Extended Maven antrun plugin -->
143+ <!-- https://maven-antrun-extended-plugin.dev.java.net/ -->
144+ <groupId >org.jvnet.maven-antrun-extended-plugin</groupId >
145+ <artifactId >maven-antrun-extended-plugin</artifactId >
145146 <executions >
146- <execution >
147- <id >buddycloud-server-start</id >
148- <phase >server-start</phase >
149- <configuration >
150- <tasks >
151- <ant antfile =" build.xml" target =" run" />
152- </tasks >
153- </configuration >
154- <goals >
155- <goal >run</goal >
156- </goals >
157- </execution >
147+ <execution >
148+ <id >test-reports</id >
149+ <phase >test</phase >
150+ <configuration >
151+ <tasks >
152+ <junitreport todir =" target/surefire-reports" >
153+ <fileset dir =" target/surefire-reports" >
154+ <include name =" **/*.xml" />
155+ </fileset >
156+ <report format =" noframes" todir =" target/surefire-reports" />
157+ </junitreport >
158+ </tasks >
159+ </configuration >
160+ <goals >
161+ <goal >run</goal >
162+ </goals >
163+ </execution >
158164 </executions >
165+ <dependencies >
166+ <dependency >
167+ <groupId >org.apache.ant</groupId >
168+ <artifactId >ant-junit</artifactId >
169+ <version >1.8.0</version >
170+ </dependency >
171+ <dependency >
172+ <groupId >org.apache.ant</groupId >
173+ <artifactId >ant-trax</artifactId >
174+ <version >1.8.0</version >
175+ </dependency >
176+ </dependencies >
159177 </plugin >
160178 <plugin >
161179 <groupId >org.apache.maven.plugins</groupId >
You can’t perform that action at this time.
0 commit comments