2016-11-25 13:10:44 +01:00
|
|
|
# mvn grc colorizer configuration
|
|
|
|
# [INFO]
|
|
|
|
regexp=^\[INFO\]
|
|
|
|
colours=bold
|
|
|
|
count=more
|
|
|
|
==============
|
|
|
|
# [WARNING]
|
|
|
|
regexp=^\[WARNING\]
|
|
|
|
colours=bold yellow
|
|
|
|
count=more
|
|
|
|
==============
|
|
|
|
# [ERROR]
|
|
|
|
regexp=^\[ERROR\]
|
|
|
|
colours=bold red
|
|
|
|
count=more
|
|
|
|
==============
|
|
|
|
# BUILD FAILURE
|
|
|
|
regexp=BUILD FAILURE
|
|
|
|
colours=bold red
|
|
|
|
count=more
|
|
|
|
==============
|
|
|
|
# [debug]
|
|
|
|
regexp=^\[debug\]
|
|
|
|
colours=magenta
|
|
|
|
count=more
|
|
|
|
==============
|
2016-11-29 01:45:49 +01:00
|
|
|
# lines [INFO] ----
|
2016-11-25 13:10:44 +01:00
|
|
|
regexp=\s[-]{6,}
|
|
|
|
colours=red
|
|
|
|
count=more
|
|
|
|
==============
|
2016-11-29 01:45:49 +01:00
|
|
|
# lines ^----
|
2016-11-25 13:10:44 +01:00
|
|
|
regexp=^[-]{6,}
|
|
|
|
colours=yellow
|
|
|
|
count=more
|
|
|
|
==============
|
2016-11-29 01:45:49 +01:00
|
|
|
# lines T E S T S
|
2016-11-25 13:10:44 +01:00
|
|
|
regexp=^ T E S T S
|
|
|
|
colours=yellow
|
|
|
|
count=more
|
|
|
|
==============
|
2016-11-29 01:45:49 +01:00
|
|
|
# lines ^Tests run:
|
2016-11-25 13:10:44 +01:00
|
|
|
regexp=^Tests run: ([\d]+)
|
|
|
|
colours=yellow,green
|
|
|
|
count=more
|
|
|
|
==============
|
2016-11-29 01:45:49 +01:00
|
|
|
# lines ^Tests run: Failures/Errors/Skipped
|
2016-11-25 13:10:44 +01:00
|
|
|
regexp=(Failures|Errors|Skipped):\s([\d]+)
|
|
|
|
colours=none,yellow,bold red
|
|
|
|
count=more
|
|
|
|
==============
|
2016-11-29 01:45:49 +01:00
|
|
|
# lines ^Tests run: Failures/Errors/Skipped
|
2016-11-25 13:10:44 +01:00
|
|
|
regexp=(Failures|Errors|Skipped):\s(0)\D?
|
|
|
|
colours=none,yellow,green
|
|
|
|
count=more
|
|
|
|
==============
|
2016-11-29 01:45:49 +01:00
|
|
|
# summary
|
2016-11-25 13:10:44 +01:00
|
|
|
regexp=\s(Total time: )(.*)$
|
|
|
|
colours=none,none,bold yellow
|
|
|
|
count=more
|
|
|
|
==============
|
2016-11-29 01:45:49 +01:00
|
|
|
# summary
|
2016-11-25 13:10:44 +01:00
|
|
|
regexp=\s(Finished at: )(.*)$
|
|
|
|
colours=none,none,bold yellow
|
|
|
|
count=more
|
|
|
|
==============
|
|
|
|
# BUILD SUCCESSFUL
|
|
|
|
regexp=\s(BUILD SUCCESSFUL)
|
|
|
|
colours=none,green bold
|
|
|
|
count=more
|
|
|
|
==============
|
|
|
|
# Building projectName
|
|
|
|
regexp=^(\[INFO\])( Building )(.*)$
|
|
|
|
colours=none,bold,none,white bold
|
|
|
|
count=more
|
|
|
|
==============
|
|
|
|
# reactor summary
|
|
|
|
regexp=([.]{3,} )(SUCCESS)( \[)([^\]]*)(])
|
|
|
|
colours=none,none,green,none,yellow,none
|
|
|
|
count=more
|
|
|
|
==============
|
|
|
|
# reactor summary
|
|
|
|
regexp=([.]{3,} )(FAILURE)( \[)([^\]]*)(])
|
|
|
|
colours=none,none,red,none,red,none
|
|
|
|
count=more
|
|
|
|
==============
|
|
|
|
# reactor summary
|
|
|
|
regexp=([.]{3,} )(SKIPPED)
|
|
|
|
colours=none,none,yellow bold,none
|
|
|
|
count=more
|
|
|
|
|
|
|
|
|