OParent children do not find checkstyle 51/10551/1
authorAnaël Closson <ac2550@intl.att.com>
Wed, 6 Sep 2017 09:55:21 +0000 (11:55 +0200)
committerAnaël Closson <ac2550@intl.att.com>
Wed, 6 Sep 2017 10:02:51 +0000 (12:02 +0200)
The checkstyle plugin cannot be found by projects inheriting by OParent.
When maven executes the check-license execution, he finds the
org.onap.oparent:checkstyle:jar:1.0.0 as dependency and tries to retreive it.
The repository section doesn't apply to plugin dependencies and so
the org.onap.oparent:checkstyle:jar cannot be found.

By adding it as dependency of the org.onap.oparent:oparent project,
the artifact is downloaded using the project repositories and is already
available when the plugin dependencies are checked.

This might be due to a maven bug.

Change-Id: I9eabea660b5fe8ceacc7299914e64ccccd7c2850
Issue-Id: INT-128
Signed-off-by: Anaël Closson <ac2550@intl.att.com>
oparent/pom.xml

index 0c636ba..fe603f2 100644 (file)
       </releases>
     </repository>
   </repositories>
+  <dependencies>
+    <dependency>
+      <!-- Needed to download the checkstyle artifact
+           using the repository section of this pom.
+           The checkstyle plugin below use it as dependency,
+           but maven does not want to use the repositories
+           to download the plugin dependency.
+      -->
+      <groupId>org.onap.oparent</groupId>
+      <artifactId>checkstyle</artifactId>
+      <version>1.0.0-SNAPSHOT</version>
+    </dependency>
+  </dependencies>
   <profiles>
     <profile>
       <id>generate-json</id>