Skip to content

Commit

Permalink
1.1.5 RC
Browse files Browse the repository at this point in the history
- Correct issues #6 and #9
- Add automatic tests (verify_pitmp.sh)
  • Loading branch information
Caroline Landry committed Apr 23, 2018
1 parent f27219b commit d020588
Show file tree
Hide file tree
Showing 286 changed files with 62,638 additions and 15 deletions.
52 changes: 40 additions & 12 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ information:

### Install the plugin
Since 1.1.4 PitMP is available on Maven Central, so this step is required only
for versions before 1.1.4.
for releases before 1.1.4.
```
git clone https://github.com/STAMP-project/pitmp-maven-plugin.git
cd pitmp-maven-plugin
Expand All @@ -73,13 +73,6 @@ mvn install
<groupId>eu.stamp</groupId>
<artifactId>pitmp-maven-plugin</artifactId>
<version>version.you.want</version>
<!-- list all the packages of the project that contain classes you want to be mutated -->
<configuration>
<targetClasses>
<param>a.package.of.classes*</param>
<param>another.package.of.classes*</param>
</targetClasses>
</configuration>
<dependencies>
<dependency>
<groupId>org.pitest</groupId>
Expand All @@ -98,6 +91,32 @@ mvn install
mvn pitmp:run
```

### Configure PitMP

You can configure your project in the root pom.xml, in the section \<plugins\>:
```
<plugin>
<groupId>eu.stamp</groupId>
<artifactId>pitmp-maven-plugin</artifactId>
<version>version.you.want</version>
<!-- list all the packages of the project that contain classes you want to be mutated -->
<configuration>
<targetClasses>
<param>a.package.of.classes*</param>
<param>another.package.of.classes*</param>
</targetClasses>
</configuration>
<dependencies>
<dependency>
<groupId>org.pitest</groupId>
<artifactId>pitest-maven</artifactId>
<version>pitest.version</version>
</dependency>
</dependencies>
</plugin>
```
All PIT's properties can be used.

### PitMP properties

* targetModules: to run PIT only on specified modules
Expand Down Expand Up @@ -187,19 +206,28 @@ For an example of multi module project using PitMP see the [dnoo github](https:/

## Releases

* pitmp-maven-plugin-1.1.5
- tested with PIT v1.3.2
- Corrected issues:
- [#6](https://github.com/STAMP-project/pitmp-maven-plugin/issues/6)
- [#9](https://github.com/STAMP-project/pitmp-maven-plugin/issues/9)
(Duplicate [#6](https://github.com/STAMP-project/pitmp-maven-plugin/issues/6))
- Add automatic tests (verify_pitmp.sh)

* v1.1.0, pitmp-maven-plugin-1.1.4
- tested with PIT v1.3.1

* v1.0.1
- tested with PIT v1.2.0 and Descartes v0.2-SNAPSHOT
- tested with PIT v1.2.3
* v1.1.0, pitmp-maven-plugin-1.1.4
- tested with PIT v1.3.1

## Tested on

* Ubuntu 16.04.4 LTS

* [dhell project on github](https://github.com/STAMP-project/dhell)
* [dnoo project on github](https://github.com/STAMP-project/dnoo)
* [xwiki-commons project on github](https://github.com/xwiki/xwiki-commons)
* [xwiki-rendering project on github](https://github.com/xwiki/xwiki-rendering)

* Ubuntu 16.04.4 LTS

Feedbacks are welcome ! :-)
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -91,13 +91,13 @@
<dependency>
<groupId>org.pitest</groupId>
<artifactId>pitest-maven</artifactId>
<version>1.3.1</version>
<version>1.3.2</version>
</dependency>

<dependency>
<groupId>org.pitest</groupId>
<artifactId>pitest-entry</artifactId>
<version>1.3.1</version>
<version>1.3.2</version>
</dependency>

<dependency>
Expand Down
1 change: 0 additions & 1 deletion src/main/java/org/pitest/maven/PmpMojo.java
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,6 @@ public void updateTargetClasses()
targetClasses.addAll(classList);
}
}
else
// else just let the target classes specified in the pom.xml

// complete the target classes with other (dependencies) modules classes
Expand Down
3 changes: 3 additions & 0 deletions test_dir/dhell/bar.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
1st line
a second line, longer than the first one
3rd line with something else: 2, 4, 8, 16
4 changes: 4 additions & 0 deletions test_dir/dhell/foo3.traces
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
8
--------
-------- Hello World !
--------
4 changes: 4 additions & 0 deletions test_dir/dhell/hello_run3.traces
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
22
----------------------
---------------------- Hello World !
----------------------
4 changes: 4 additions & 0 deletions test_dir/dhell/myHelloApp.traces
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
1
-
- Hello World !
-
4 changes: 4 additions & 0 deletions test_dir/dhell/my_storage.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
1
-
- Hello World !
-
260 changes: 260 additions & 0 deletions test_dir/dhell/pitmp.traces
Original file line number Diff line number Diff line change
@@ -0,0 +1,260 @@
######## 19:36:14
[INFO] Error stacktraces are turned on.
[INFO] Scanning for projects...
[INFO]
[INFO] ------------------------------------------------------------------------
[INFO] Building hello_app 1.2.2
[INFO] ------------------------------------------------------------------------
[INFO]
[INFO] --- pitmp-maven-plugin:1.1.5-SNAPSHOT:run (default-cli) @ hello_app ---
[INFO] Found plugin : Default html report plugin
[INFO] Found plugin : Default csv report plugin
[INFO] Found plugin : Default xml report plugin
[INFO] Found plugin : Static initializer code detector plugin
[INFO] Found plugin : Static initializer filter plugin
[INFO] Found plugin : Excluded annotations plugin
[INFO] Found plugin : Inlined finally block filter plugin
[INFO] Found plugin : Try with resources filter
[INFO] Found plugin : Implicit null check filter
[INFO] Found plugin : For each loop filter
[INFO] Found plugin : Logging calls filter
[INFO] Found plugin : Infinite for loop filter
[INFO] Found plugin : Long running iterator loop filter
[INFO] Found plugin : For loop counter filter
[INFO] Found plugin : Kotlin junk mutations filter
[INFO] Found plugin : Max mutations per class limit
[INFO] Found plugin : Equals shortcut equivalent mutant filter
[INFO] Found plugin : Trivial return vals equivalence filter
[INFO] Found plugin : Mutant export plugin
[INFO] Found shared classpath plugin : Default mutation engine
[INFO] Found shared classpath plugin : JUnit plugin
[INFO] Found shared classpath plugin : TestNG plugin
[INFO] Adding org.pitest:pitest to SUT classpath
[INFO] Mutating from /home/cael/stamp/inria_github/pitmp-maven-plugin/test_dir/dhell/target/classes
7:36:17 PM PIT >> INFO : Verbose logging is disabled. If you encounter an problem please enable it before reporting an issue.
7:36:17 PM PIT >> INFO : Sending 6 test classes to minion
7:36:17 PM PIT >> INFO : Sent tests to minion
7:36:17 PM PIT >> INFO : MINION : 7:36:17 PM PIT >> INFO : Checking environment

7:36:17 PM PIT >> INFO : MINION : 7:36:17 PM PIT >> INFO : Found 11 tests

7:36:17 PM PIT >> INFO : MINION : 7:36:17 PM PIT >> INFO : Dependency analysis reduced number of potential tests by 0

7:36:17 PM PIT >> INFO : MINION : 7:36:17 PM PIT >> INFO : 11 tests received

7:36:17 PM PIT >> INFO : MINION : Apr 23, 2018 7:36:17 PM eu.stamp_project.examples.dhell.HelloApp <init>
INFO: MyPrintCount = 1 - MyTracesName = myHelloApp.traces

7:36:17 PM PIT >> INFO : MINION : Apr 23, 2018 7:36:17 PM eu.stamp_project.examples.dhell.HelloApp <init>
INFO: MyPrintCount = 8 - MyTracesName = myHelloApp.traces

7:36:17 PM PIT >> INFO : MINION : Apr 23, 2018 7:36:17 PM eu.stamp_project.examples.dhell.HelloApp <init>
INFO: MyPrintCount = 8 - MyTracesName = foo2.traces

7:36:17 PM PIT >> INFO : MINION : Apr 23, 2018 7:36:17 PM eu.stamp_project.examples.dhell.HelloApp <init>
INFO: MyPrintCount = 1 - MyTracesName = myHelloApp.traces

7:36:17 PM PIT >> INFO : MINION : Apr 23, 2018 7:36:17 PM eu.stamp_project.examples.dhell.HelloApp <init>
INFO: MyPrintCount = 8 - MyTracesName = foo3.traces

7:36:17 PM PIT >> INFO : MINION : Apr 23, 2018 7:36:17 PM eu.stamp_project.examples.dhell.HelloApp <init>
INFO: MyPrintCount = 22 - MyTracesName = hello_run3.traces

7:36:17 PM PIT >> INFO : MINION : Apr 23, 2018 7:36:17 PM eu.stamp_project.examples.dhell.HelloApp <init>
INFO: MyPrintCount = 1 - MyTracesName = foo1.traces

/-\|/-\|/-\7:36:17 PM PIT >> INFO : Calculated coverage in 0 seconds.
7:36:18 PM PIT >> INFO : Created 3 mutation test units
/stderr : Apr 23, 2018 7:36:19 PM eu.stamp_project.examples.dhell.HelloApp <init>
INFO: MyPrintCount = 1 - MyTracesName = myHelloApp.traces
Apr 23, 2018 7:36:19 PM eu.stamp_project.examples.dhell.HelloApp <init>
INFO: MyPrintCount = 22 - MyTracesName = hello_run3.trstderr : aces
Apr 23, 2018 7:36:19 PM eu.stamp_project.examples.dhell.HelloApp <init>
INFO: MyPrintCount = 8 - MyTracesName = foo3.traces
stderr : Apr 23, 2018 7:36:19 PM eu.stamp_project.examples.dhell.HelloApp <init>
INFO: MyPrintCount = 1 - MyTracesName = myHelloApp.traces
stderr : Apr 23, 2018 7:36:19 PM eu.stamp_project.examples.dhell.HelloApp <init>
INFO: MyPrintCount = 22 - MyTracesName = hello_run3.traces
stderr : Apr 23, 2018 7:36:19 PM eu.stamp_project.examples.dhell.HelloApp <init>
INFO: MyPrintCount = 8 - MyTracesName = foo3.traces
stderr : Apr 23, 2018 7:36:19 PM eu.stamp_project.examples.dhell.HelloApp <init>
INFO: MyPrintCount = 1 - MyTracesName = myHelloApp.traces
stderr : Apr 23, 2018 7:36:19 PM eu.stamp_project.examples.dhell.HelloApp <init>
INFO: MyPrintCount = 22 - MyTracesName = hello_run3.traces
stderr : Apr 23, 2018 7:36:19 PM eu.stamp_project.examples.dhell.HelloApp <init>
INFO: MyPrintCount = 8 - MyTracesName = foo3.traces
stderr : Apr 23, 2018 7:36:19 PM eu.stamp_project.examples.dhell.HelloApp <init>
INFO: MyPrintCount = 8 - MyTracesName = myHelloApp.traces
stderr : Apr 23, 2018 7:36:19 PM eu.stamp_project.examples.dhell.HelloApp <init>
INFO: MyPrintCount = 1 - MyTracesName = myHelloApp.traces
stderr : Apr 23, 2018 7:36:19 PM eu.stamp_project.examples.dhell.HelloApp <init>
INFO: MyPrintCount = 22 - MyTracesName = hello_run3.traces
stderr : Apr 23, 2018 7:36:19 PM eu.stamp_project.examples.dhell.HelloApp <init>
INFO: MyPrintCount = 8 - MyTracesName = foo3.traces
stderr : Apr 23, 2018 7:36:19 PM eu.stamp_project.examples.dhell.HelloApp <init>
INFO: MyPrintCount = 1 - MyTracesName = myHelloApp.traces
stderr : Apr 23, 2018 7:36:19 PM eu.stamp_project.examples.dhell.HelloApp <init>
INFO: MyPrintCount = 22 - MyTracesName = hello_run3.traces
stderr : Apr 23, 2018 7:36:19 PM eu.stamp_project.examples.dhell.HelloApp <init>
INFO: MyPrintCount = 8 - MyTracesName = foo3.traces
stderr : Apr 23, 2018 7:36:19 PM eu.stamp_project.examples.dhell.HelloApp <init>
INFO: MyPrintCount = 1 - MyTracesName = myHelloApp.traces
stderr : Apr 23, 2018 7:36:19 PM eu.stamp_project.examples.dhell.HelloApp <init>
INFO: MyPrintCount = 22 - MyTracesName = hello_run3.traces
stderr : Apr 23, 2018 7:36:19 PM eu.stamp_project.examples.dhell.HelloApp <init>
INFO: MyPrintCount = 8 - MyTracesName = foo3.traces
stderr : Apr 23, 2018 7:36:19 PM eu.stamp_project.examples.dhell.HelloApp <init>
INFO: MyPrintCount = 1 - MyTracesName = myHelloApp.traces
stderr : Apr 23, 2018 7:36:19 PM eu.stamp_project.examples.dhell.HelloApp <init>
INFO: MyPrintCount = 22 - MyTracesName = hello_run3.traces
stderr : Apr 23, 2018 7:36:19 PM eu.stamp_project.examples.dhell.HelloApp <init>
INFO: MyPrintCount = 8 - MyTracesName = foo3.traces
-stderr : Apr 23, 2018 7:36:20 PM eu.stamp_project.examples.dhell.HelloApp <init>
INFO: MyPrintCount = 1 - MyTracesName = myHelloApp.traces
Apr 23, 2018 7:36:20 PM eu.stamp_project.examples.dhell.HelloApp <init>
INFO: MyPrintCount = 22 - MyTracesName = hello_run3.trstderr : aces
Apr 23, 2018 7:36:20 PM eu.stamp_project.examples.dhell.HelloApp <init>
INFO: MyPrintCount = 8 - MyTracesName = foo3.traces
Apr 23, 2018 7:36:20 PM eu.stamp_project.examples.dhell.HelloApp <init>
INFO: MyPrintCount = 1 - MyTracesName = myHelloApp.tracstderr : es
Apr 23, 2018 7:36:20 PM eu.stamp_project.examples.dhell.HelloApp <init>
INFO: MyPrintCount = 22 - MyTracesName = hello_run3.traces
Apr 23, 2018 7:36:20 PM eu.stamp_project.examples.dhell.HelloApp <init>
INFO: MyPrintCount = 1 - MyTracesName = myHelloAppstderr : .traces
stderr : Apr 23, 2018 7:36:20 PM eu.stamp_project.examples.dhell.HelloApp <init>
INFO: MyPrintCount = 22 - MyTracesName = hello_run3.traces
stderr : Apr 23, 2018 7:36:20 PM eu.stamp_project.examples.dhell.HelloApp <init>
INFO: MyPrintCount = 8 - MyTracesName = foo3.traces
stderr : Apr 23, 2018 7:36:20 PM eu.stamp_project.examples.dhell.HelloApp <init>
INFO: MyPrintCount = 1 - MyTracesName = myHelloApp.traces
stderr : Apr 23, 2018 7:36:20 PM eu.stamp_project.examples.dhell.HelloApp <init>
INFO: MyPrintCount = 22 - MyTracesName = hello_run3.traces
7:36:23 PM PIT >> WARNING : Minion exited abnormally due to TIMED_OUT
stderr : Apr 23, 2018 7:36:23 PM eu.stamp_project.examples.dhell.HelloApp <init>
INFO: MyPrintCount = 1 - MyTracesName = myHelloApp.traces
Apr 23, 2018 7:36:23 PM eu.stamp_project.examples.dhell.HelloApp <init>
INFO: MyPrintCount = 22 - MyTracesName = hello_run3.trstderr : aces
stderr : Apr 23, 2018 7:36:23 PM eu.stamp_project.examples.dhell.HelloApp <init>
INFO: MyPrintCount = 1 - MyTracesName = myHelloApp.traces
stderr : Apr 23, 2018 7:36:23 PM eu.stamp_project.examples.dhell.HelloApp <init>
INFO: MyPrintCount = 1 - MyTracesName = myHelloApp.traces
stderr : Apr 23, 2018 7:36:23 PM eu.stamp_project.examples.dhell.HelloApp <init>
INFO: MyPrintCount = 1 - MyTracesName = myHelloApp.traces
stderr : Apr 23, 2018 7:36:23 PM eu.stamp_project.examples.dhell.HelloApp <init>
INFO: MyPrintCount = 1 - MyTracesName = myHelloApp.traces
7:36:26 PM PIT >> WARNING : Minion exited abnormally due to TIMED_OUT
stderr : Apr 23, 2018 7:36:27 PM eu.stamp_project.examples.dhell.HelloApp <init>
INFO: MyPrintCount = 1 - MyTracesName = myHelloApp.traces
Apr 23, 2018 7:36:27 PM eu.stamp_project.examples.dhell.HelloApp <init>
INFO: MyPrintCount = 1 - MyTracesName = myHelloApp.trastderr : ces
Apr 23, 2018 7:36:27 PM eu.stamp_project.examples.dhell.HelloApp <init>
INFO: MyPrintCount = 22 - MyTracesName = hello_run3.traces
Apr 23, 2018 7:36:27 PM eu.stamp_project.examples.dhell.HelloApp <init>
INFO: MyPrintCount = 8 - MyTracesName = foo3.tracstderr : es
Apr 23, 2018 7:36:27 PM eu.stamp_project.examples.dhell.HelloApp <init>
INFO: MyPrintCount = 1 - MyTracesName = myHelloApp.traces
Apr 23, 2018 7:36:27 PM eu.stamp_project.examples.dhell.HelloApp <init>
INFO: MyPrintCount = 22 - MyTracesName = hello_run3stderr : .traces
Apr 23, 2018 7:36:27 PM eu.stamp_project.examples.dhell.HelloApp <init>
INFO: MyPrintCount = 8 - MyTracesName = myHelloApp.traces
stderr : Apr 23, 2018 7:36:27 PM eu.stamp_project.examples.dhell.HelloApp <init>
INFO: MyPrintCount = 8 - MyTracesName = myHelloApp.traces
stderr : Apr 23, 2018 7:36:27 PM eu.stamp_project.examples.dhell.HelloApp <init>
INFO: MyPrintCount = 1 - MyTracesName = myHelloApp.traces
stderr : Apr 23, 2018 7:36:27 PM eu.stamp_project.examples.dhell.HelloApp <init>
INFO: MyPrintCount = 22 - MyTracesName = hello_run3.traces
stderr : Apr 23, 2018 7:36:27 PM eu.stamp_project.examples.dhell.HelloApp <init>
INFO: MyPrintCount = 8 - MyTracesName = myHelloApp.traces
stderr : Apr 23, 2018 7:36:27 PM eu.stamp_project.examples.dhell.HelloApp <init>
INFO: MyPrintCount = 1 - MyTracesName = myHelloApp.traces
stderr : Apr 23, 2018 7:36:27 PM eu.stamp_project.examples.dhell.HelloApp <init>
INFO: MyPrintCount = 1 - MyTracesName = myHelloApp.traces
stderr : Apr 23, 2018 7:36:27 PM eu.stamp_project.examples.dhell.HelloApp <init>
INFO: MyPrintCount = 8 - MyTracesName = myHelloApp.traces
stderr : Apr 23, 2018 7:36:27 PM eu.stamp_project.examples.dhell.HelloApp <init>
INFO: MyPrintCount = 1 - MyTracesName = myHelloApp.traces
stderr : Apr 23, 2018 7:36:27 PM eu.stamp_project.examples.dhell.HelloApp <init>
INFO: MyPrintCount = 22 - MyTracesName = hello_run3.traces
stderr : Apr 23, 2018 7:36:27 PM eu.stamp_project.examples.dhell.HelloApp <init>
INFO: MyPrintCount = 8 - MyTracesName = foo3.traces
stderr : Apr 23, 2018 7:36:27 PM eu.stamp_project.examples.dhell.HelloApp <init>
INFO: MyPrintCount = 1 - MyTracesName = foo1.traces
stderr : Apr 23, 2018 7:36:27 PM eu.stamp_project.examples.dhell.HelloApp <init>
INFO: MyPrintCount = 8 - MyTracesName = myHelloApp.traces
stderr : Apr 23, 2018 7:36:27 PM eu.stamp_project.examples.dhell.HelloApp <init>
INFO: MyPrintCount = 8 - MyTracesName = foo2.traces
stderr : Apr 23, 2018 7:36:27 PM eu.stamp_project.examples.dhell.HelloApp <init>
INFO: MyPrintCount = 22 - MyTracesName = hello_run3.traces
stderr : Apr 23, 2018 7:36:27 PM eu.stamp_project.examples.dhell.HelloApp <init>
INFO: MyPrintCount = 8 - MyTracesName = foo3.traces
stderr : Apr 23, 2018 7:36:27 PM eu.stamp_project.examples.dhell.HelloApp <init>
INFO: MyPrintCount = 1 - MyTracesName = myHelloApp.traces
stderr : Apr 23, 2018 7:36:27 PM eu.stamp_project.examples.dhell.HelloApp <init>
INFO: MyPrintCount = 22 - MyTracesName = hello_run3.traces
stderr : Apr 23, 2018 7:36:27 PM eu.stamp_project.examples.dhell.HelloApp <init>
INFO: MyPrintCount = 8 - MyTracesName = foo3.traces
\7:36:27 PM PIT >> INFO : Completed in 10 seconds
================================================================================
- Timings
================================================================================
> scan classpath : < 1 second
> coverage and dependency analysis : < 1 second
> build mutation tests : < 1 second
> run mutation analysis : 9 seconds
--------------------------------------------------------------------------------
> Total : 10 seconds
--------------------------------------------------------------------------------
================================================================================
- Statistics
================================================================================
>> Generated 101 mutations Killed 35 (35%)
>> Ran 92 tests (0.91 tests per mutation)
================================================================================
- Mutators
================================================================================
> org.pitest.mutationtest.engine.gregor.mutators.ConditionalsBoundaryMutator
>> Generated 9 Killed 4 (44%)
> KILLED 4 SURVIVED 1 TIMED_OUT 0 NON_VIABLE 0
> MEMORY_ERROR 0 NOT_STARTED 0 STARTED 0 RUN_ERROR 0
> NO_COVERAGE 4
--------------------------------------------------------------------------------
> org.pitest.mutationtest.engine.gregor.mutators.IncrementsMutator
>> Generated 4 Killed 3 (75%)
> KILLED 2 SURVIVED 0 TIMED_OUT 1 NON_VIABLE 0
> MEMORY_ERROR 0 NOT_STARTED 0 STARTED 0 RUN_ERROR 0
> NO_COVERAGE 1
--------------------------------------------------------------------------------
> org.pitest.mutationtest.engine.gregor.mutators.VoidMethodCallMutator
>> Generated 43 Killed 9 (21%)
> KILLED 9 SURVIVED 7 TIMED_OUT 0 NON_VIABLE 0
> MEMORY_ERROR 0 NOT_STARTED 0 STARTED 0 RUN_ERROR 0
> NO_COVERAGE 27
--------------------------------------------------------------------------------
> org.pitest.mutationtest.engine.gregor.mutators.ReturnValsMutator
>> Generated 10 Killed 9 (90%)
> KILLED 9 SURVIVED 1 TIMED_OUT 0 NON_VIABLE 0
> MEMORY_ERROR 0 NOT_STARTED 0 STARTED 0 RUN_ERROR 0
> NO_COVERAGE 0
--------------------------------------------------------------------------------
> org.pitest.mutationtest.engine.gregor.mutators.MathMutator
>> Generated 6 Killed 0 (0%)
> KILLED 0 SURVIVED 0 TIMED_OUT 0 NON_VIABLE 0
> MEMORY_ERROR 0 NOT_STARTED 0 STARTED 0 RUN_ERROR 0
> NO_COVERAGE 6
--------------------------------------------------------------------------------
> org.pitest.mutationtest.engine.gregor.mutators.NegateConditionalsMutator
>> Generated 29 Killed 10 (34%)
> KILLED 9 SURVIVED 7 TIMED_OUT 1 NON_VIABLE 0
> MEMORY_ERROR 0 NOT_STARTED 0 STARTED 0 RUN_ERROR 0
> NO_COVERAGE 12
--------------------------------------------------------------------------------
[INFO] ------------------------------------------------------------------------
[INFO] BUILD SUCCESS
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 11.575 s
[INFO] Finished at: 2018-04-23T19:36:27+02:00
[INFO] Final Memory: 14M/249M
[INFO] ------------------------------------------------------------------------
######## 19:36:27
######## pom.xml.pitmp.conf1: OK
########################################
Loading

0 comments on commit d020588

Please sign in to comment.