From c09505fafb4e22ccda6c60b346ef2f1eed991af1 Mon Sep 17 00:00:00 2001 From: Robert Varga Date: Wed, 29 May 2013 04:41:21 +0200 Subject: [PATCH] Correct maven dependency for MavenProject The name of the artifact which exports org.apache.maven.project.MavenProject has changed between maven 2.x and 3.x to mave-core. Update the dependency to pick up the changes, which include generics -- allowing for safer codegen. Change-Id: I6237eb935e837e8ff887f8e072be12dd8ddb4c8c Signed-off-by: Martin Vitez Signed-off-by: Robert Varga --- .../code-generator/maven-yang-plugin/pom.xml | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/opendaylight/sal/yang-prototype/code-generator/maven-yang-plugin/pom.xml b/opendaylight/sal/yang-prototype/code-generator/maven-yang-plugin/pom.xml index 83db18ed12..188fb925ba 100644 --- a/opendaylight/sal/yang-prototype/code-generator/maven-yang-plugin/pom.xml +++ b/opendaylight/sal/yang-prototype/code-generator/maven-yang-plugin/pom.xml @@ -23,13 +23,13 @@ org.apache.maven - maven-plugin-api + maven-core 3.0.5 org.apache.maven - maven-project - 2.2.1 + maven-plugin-api + 3.0.5 org.apache.maven.plugin-tools @@ -71,6 +71,11 @@ 1.8.4 test + + junit + junit + test + @@ -104,4 +109,4 @@ - \ No newline at end of file + -- 2.36.6