diff options
author | Filip Krzywka <filip.krzywka@nokia.com> | 2018-08-10 08:26:42 +0200 |
---|---|---|
committer | Piotr Jaszczyk <piotr.jaszczyk@nokia.com> | 2018-08-13 13:06:32 +0200 |
commit | 88726d99b07a91495b800d6155d796c634560882 (patch) | |
tree | 509391679fda028ec4cfff7a97fd700d6d5791a6 /hv-collector-coverage/pom.xml | |
parent | 3b74e64f62587ef7c30d7520ed85ab35378f733c (diff) |
Link project as ONAP oparent module child
- Downgraded checkstyle-plugin version to not break build - oparent
uses deprecated config property that cannot be overriden... Also it
uses plugin version from 2014...
- Moved jacoco plugin definition for similiar reasons.
- Bumped maven-surefire-plugin.
- Also added missing license in file. Not sure why CI did not catch
that one earlier
- removed nexus properties that should be inherited from onap
`version` artifact (parent of oparent)
- Use upgraded maven-failsafe-plugin - works with java 8, not sure
about Java 9+
Change-Id: I47e441315cc0e1dc49ed474450db0ee3d2701a10
Issue-ID: DCAEGEN2-700
Signed-off-by: Filip Krzywka <filip.krzywka@nokia.com>
Signed-off-by: Piotr Jaszczyk <piotr.jaszczyk@nokia.com>
Diffstat (limited to 'hv-collector-coverage/pom.xml')
-rw-r--r-- | hv-collector-coverage/pom.xml | 39 |
1 files changed, 17 insertions, 22 deletions
diff --git a/hv-collector-coverage/pom.xml b/hv-collector-coverage/pom.xml index a046f29b..7a6a78ff 100644 --- a/hv-collector-coverage/pom.xml +++ b/hv-collector-coverage/pom.xml @@ -46,28 +46,23 @@ <failIfMissingComponentTests>false</failIfMissingComponentTests> </properties> - <profiles> - <profile> - <id>analysis</id> - <build> - <plugins> - <plugin> - <groupId>org.jacoco</groupId> - <artifactId>jacoco-maven-plugin</artifactId> - <executions> - <execution> - <id>default-report</id> - <phase>package</phase> - <goals> - <goal>report-aggregate</goal> - </goals> - </execution> - </executions> - </plugin> - </plugins> - </build> - </profile> - </profiles> + <build> + <plugins> + <plugin> + <groupId>org.jacoco</groupId> + <artifactId>jacoco-maven-plugin</artifactId> + <executions> + <execution> + <id>default-report</id> + <phase>package</phase> + <goals> + <goal>report-aggregate</goal> + </goals> + </execution> + </executions> + </plugin> + </plugins> + </build> <dependencies> <dependency> |