Fix maven-archetype-plugin not pulling its dependencies 08/21108/4
authorRobert Varga <rovarga@cisco.com>
Fri, 22 May 2015 10:04:52 +0000 (12:04 +0200)
committerGerrit Code Review <gerrit@opendaylight.org>
Mon, 8 Jun 2015 08:30:26 +0000 (08:30 +0000)
commons-lang is needed to run, but it is not pulled automatically. Fix
that.

Change-Id: I95dd2d527eb47d55597bb3d844867f0ca0c50b3f
Signed-off-by: Robert Varga <rovarga@cisco.com>
(cherry picked from commit 1ad148df405e6cd9e1ebcfe63bd65facb4007941)

opendaylight/archetypes/odl-model-project/pom.xml

index d15ea8853a606eeec3f24ef87255928a0f14355a..61ee6f8b6ef8f1a37d071c316aed4840e84ce570 100644 (file)
         <plugin>
           <artifactId>maven-archetype-plugin</artifactId>
           <version>2.2</version>
+          <dependencies>
+            <dependency>
+              <groupId>commons-lang</groupId>
+              <artifactId>commons-lang</artifactId>
+              <version>2.6</version>
+            </dependency>
+          </dependencies>
         </plugin>
       </plugins>
     </pluginManagement>