diff options
author | Tomasz Golabek <tomasz.golabek@nokia.com> | 2019-07-10 16:35:51 +0200 |
---|---|---|
committer | Tomasz Golabek <tomasz.golabek@nokia.com> | 2019-07-16 11:21:04 +0200 |
commit | 9290ef8729559f2a468b3767fbce6ae750ea6450 (patch) | |
tree | ce3e6a4b7aff3686282d47c3db65fc6b063c6e01 /pom.xml | |
parent | 0afbed23c5c51ffc9fa3ca0c229d3caeeed3f8d3 (diff) |
Added oparent to workflow designer
Removed errors regarding to a missing license and others.
Added checkstyle-suppressions.xml to disable some warnings.
Fixed License
Change-Id: I90cb860e6879454287279abdc3c36c7aafbdd2a0
Issue-ID: SDC-2429
Signed-off-by: Tomasz Golabek <tomasz.golabek@nokia.com>
Signed-off-by: avigaffa <avi.gaffa@amdocs.com>
Diffstat (limited to 'pom.xml')
-rw-r--r-- | pom.xml | 16 |
1 files changed, 16 insertions, 0 deletions
@@ -33,6 +33,7 @@ <packaging>pom</packaging> <properties> + <maven-checkstyle-plugin.version>2.17</maven-checkstyle-plugin.version> <jacoco.skip>true</jacoco.skip> <maven.compiler.source>1.8</maven.compiler.source> <maven.compiler.target>1.8</maven.compiler.target> @@ -47,6 +48,13 @@ <sitePath>/content/sites/site/org/onap/sdc/workflow/${project.version}</sitePath> </properties> + <parent> + <groupId>org.onap.oparent</groupId> + <artifactId>oparent</artifactId> + <version>2.0.0</version> + <relativePath/> + </parent> + <modules> <module>workflow-designer-init</module> <module>workflow-designer-be</module> @@ -101,6 +109,14 @@ </pluginManagement> <plugins> <plugin> + <artifactId>maven-checkstyle-plugin</artifactId> + <version>${maven-checkstyle-plugin.version}</version> + <configuration> + <suppressionsLocation>checkstyle-suppressions.xml</suppressionsLocation> + <suppressionsFileExpression>checkstyle.suppressions.file</suppressionsFileExpression> + </configuration> + </plugin> + <plugin> <groupId>org.jacoco</groupId> <artifactId>jacoco-maven-plugin</artifactId> <executions> |