diff options
Diffstat (limited to 'tools/archetype')
-rw-r--r-- | tools/archetype/src/main/resources/archetype-resources/__rootArtifactId__-api/pom.xml | 13 | ||||
-rw-r--r-- | tools/archetype/src/main/resources/archetype-resources/__rootArtifactId__-impl/pom.xml | 4 |
2 files changed, 2 insertions, 15 deletions
diff --git a/tools/archetype/src/main/resources/archetype-resources/__rootArtifactId__-api/pom.xml b/tools/archetype/src/main/resources/archetype-resources/__rootArtifactId__-api/pom.xml index 3b67a0d7f..75c138891 100644 --- a/tools/archetype/src/main/resources/archetype-resources/__rootArtifactId__-api/pom.xml +++ b/tools/archetype/src/main/resources/archetype-resources/__rootArtifactId__-api/pom.xml @@ -22,21 +22,10 @@ <modelVersion>4.0.0</modelVersion> <groupId>${groupId}</groupId> <artifactId>${rootArtifactId}-api</artifactId> + <name>${rootArtifactId}-api</name> <version>${version}</version> <packaging>bundle</packaging> - <dependencyManagement> - <dependencies> - <dependency> - <groupId>org.opendaylight.mdsal.model</groupId> - <artifactId>mdsal-model-artifacts</artifactId> - <version>0.8.2-Beryllium-SR2</version> - <type>pom</type> - <scope>import</scope> - </dependency> - </dependencies> - </dependencyManagement> - <dependencies> <dependency> <groupId>org.opendaylight.mdsal.model</groupId> diff --git a/tools/archetype/src/main/resources/archetype-resources/__rootArtifactId__-impl/pom.xml b/tools/archetype/src/main/resources/archetype-resources/__rootArtifactId__-impl/pom.xml index 19564db74..eeb65cf23 100644 --- a/tools/archetype/src/main/resources/archetype-resources/__rootArtifactId__-impl/pom.xml +++ b/tools/archetype/src/main/resources/archetype-resources/__rootArtifactId__-impl/pom.xml @@ -22,6 +22,7 @@ <modelVersion>4.0.0</modelVersion> <groupId>${groupId}</groupId> <artifactId>${rootArtifactId}-impl</artifactId> + <name>${rootArtifactId}-impl</name> <version>${version}</version> <packaging>bundle</packaging> @@ -59,17 +60,14 @@ <dependency> <groupId>com.google.inject</groupId> <artifactId>guice</artifactId> - <version>${guice.version}</version> </dependency> <dependency> <groupId>net.jmob</groupId> <artifactId>guice.conf</artifactId> - <version>${guice.config.version}</version> </dependency> <dependency> <groupId>com.google.inject.extensions</groupId> <artifactId>guice-multibindings</artifactId> - <version>${guice.version}</version> </dependency> </dependencies> </project> |