- About Scala
- Documentation
- Code Examples
- Software
- Scala Developers
mvn test to console
Sun, 2010-02-21, 19:59
Is there a way to get the output from mvn test in the console rather than having to open the reports file?
Mon, 2010-02-22, 09:27
#2
Re: mvn test to console
or similar
false
Ci server like hudson need files. So use a profile with the right
value for hudson and Co.
/davidB
On Mon, Feb 22, 2010 at 03:20, Josh Suereth wrote:
> http://maven.apache.org/plugins/maven-surefire-plugin/test-mojo.html
>
> See the 'useFile' option.
>
>
> You can then
>
>
> maven-surefire-plugin
>
> false
>
>
>
>
> Not sure if there's a better option.
>
> - Josh
>
> On Sun, Feb 21, 2010 at 1:59 PM, Naftoli Gugenheim
> wrote:
>>
>> Is there a way to get the output from mvn test in the console rather than
>> having to open the reports file?
>
>
Mon, 2010-02-22, 09:37
#3
Re: mvn test to console
Or if it's to use from IDE/editor I suggest to append
-Dsurefire.useFile=false to the command line "template" used to run
maven.
/davidB
On Mon, Feb 22, 2010 at 09:22, David Bernard wrote:
> or similar
>
>
> false
>
>
> Ci server like hudson need files. So use a profile with the right
> value for hudson and Co.
>
> /davidB
>
> On Mon, Feb 22, 2010 at 03:20, Josh Suereth wrote:
>> http://maven.apache.org/plugins/maven-surefire-plugin/test-mojo.html
>>
>> See the 'useFile' option.
>>
>>
>> You can then
>>
>>
>> maven-surefire-plugin
>>
>> false
>>
>>
>>
>>
>> Not sure if there's a better option.
>>
>> - Josh
>>
>> On Sun, Feb 21, 2010 at 1:59 PM, Naftoli Gugenheim
>> wrote:
>>>
>>> Is there a way to get the output from mvn test in the console rather than
>>> having to open the reports file?
>>
>>
>
See the 'useFile' option.
You can then
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<useFile>false</useFile>
</configuration>
</plugin>
Not sure if there's a better option.
- Josh
On Sun, Feb 21, 2010 at 1:59 PM, Naftoli Gugenheim <naftoligug@gmail.com> wrote: