Fix maven-archetype-plugin not pulling its dependencies 47/20947/3
authorRobert Varga <rovarga@cisco.com>
Fri, 22 May 2015 10:04:52 +0000 (12:04 +0200)
committerGerrit Code Review <gerrit@opendaylight.org>
Mon, 25 May 2015 07:19:02 +0000 (07:19 +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>
opendaylight/archetypes/odl-model-project/pom.xml

index 4945eb2a66239ea9bcf5ddcab8bb846c3276459b..831442f022475f5f94f71d957476b67ae09b53c0 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>