Skip to main content
summaryrefslogtreecommitdiffstats
blob: ed5e65c66fbdbe3b0b9dfa6c3964ff87b9e72f0c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20

How To Build using Maven

To build OSEE.X modulde execute:
mvn verify

To build OSEE.X modulde with debug output execute:
mvn -X verify

To create an aggregate test report execute:
mvn surefire-report:report-only -Daggregate=true

These commands can be combined:
mvn verify surefire-report:report-only -Daggregate=true

An aggregate report will be in the target/site folder

## Currently, Tycho creates aggregate test reports inside the test bundles 
## not in a single location
## 

Back to the top