diff options
author | andre.schmid <andre.schmid@est.tech> | 2021-01-20 12:20:40 +0000 |
---|---|---|
committer | Christophe Closset <christophe.closset@intl.att.com> | 2021-01-25 13:49:59 +0000 |
commit | 87eec9a2ad04e1cbe1304f23071ac6d85bdd5503 (patch) | |
tree | f85a732f610fa83fe6e82c735c43aa6dc42f4800 /catalog-be-plugins/etsi-nfv-nsd-csar-plugin/pom.xml | |
parent | c2db9023e1da5b41b02bff9e5e9396c9a4e2dde7 (diff) |
Handle ETSI versions in NSD Plugin
The plugin now considers the ETSI version in the component metadata
to generate the correct imports of nsd types, i.e., aligned with the
provided version.
Change-Id: I54aee04722a4434eac59ea8b70c4f30f5c81645e
Issue-ID: SDC-3447
Signed-off-by: andre.schmid <andre.schmid@est.tech>
Diffstat (limited to 'catalog-be-plugins/etsi-nfv-nsd-csar-plugin/pom.xml')
-rw-r--r-- | catalog-be-plugins/etsi-nfv-nsd-csar-plugin/pom.xml | 80 |
1 files changed, 43 insertions, 37 deletions
diff --git a/catalog-be-plugins/etsi-nfv-nsd-csar-plugin/pom.xml b/catalog-be-plugins/etsi-nfv-nsd-csar-plugin/pom.xml index e40bd7a155..7c2bcf9a69 100644 --- a/catalog-be-plugins/etsi-nfv-nsd-csar-plugin/pom.xml +++ b/catalog-be-plugins/etsi-nfv-nsd-csar-plugin/pom.xml @@ -19,46 +19,52 @@ --> <project xmlns="http://maven.apache.org/POM/4.0.0" - xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" - xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> - <parent> - <artifactId>catalog-be-plugins</artifactId> - <groupId>org.openecomp.sdc</groupId> - <version>1.8.0-SNAPSHOT</version> - </parent> - <modelVersion>4.0.0</modelVersion> + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> + <parent> + <artifactId>catalog-be-plugins</artifactId> + <groupId>org.openecomp.sdc</groupId> + <version>1.8.0-SNAPSHOT</version> + </parent> + <modelVersion>4.0.0</modelVersion> - <artifactId>etsi-nfv-nsd-csar-plugin</artifactId> + <artifactId>etsi-nfv-nsd-csar-plugin</artifactId> - <properties> - <hamcrest.version>2.2</hamcrest.version> - </properties> + <properties> + <hamcrest.version>2.2</hamcrest.version> + </properties> - <dependencies> - <!--catalog-be dependencies--> - <dependency> - <groupId>org.openecomp.sdc</groupId> - <artifactId>catalog-be</artifactId> - <version>${project.version}</version> - <classifier>classes</classifier> - </dependency> + <dependencies> + <!--catalog-be dependencies--> + <dependency> + <groupId>org.openecomp.sdc</groupId> + <artifactId>catalog-be</artifactId> + <version>${project.version}</version> + <classifier>classes</classifier> + </dependency> - <!--test dependencies--> - <dependency> - <groupId>org.hamcrest</groupId> - <artifactId>hamcrest</artifactId> - <version>${hamcrest.version}</version> - <scope>test</scope> - </dependency> - <dependency> - <groupId>org.hamcrest</groupId> - <artifactId>hamcrest-library</artifactId> - <version>${hamcrest.version}</version> - <scope>test</scope> - </dependency> - </dependencies> + <!--test dependencies--> + <dependency> + <groupId>org.hamcrest</groupId> + <artifactId>hamcrest</artifactId> + <version>${hamcrest.version}</version> + <scope>test</scope> + </dependency> + <dependency> + <groupId>org.hamcrest</groupId> + <artifactId>hamcrest-library</artifactId> + <version>${hamcrest.version}</version> + <scope>test</scope> + </dependency> + <dependency> + <groupId>org.junit.jupiter</groupId> + <artifactId>junit-jupiter-params</artifactId> + <version>${junitJupiter.version}</version> + <scope>test</scope> + </dependency> + </dependencies> - <build> - <finalName>etsi-nfv-nsd-csar-plugin</finalName> - </build> + <build> + <finalName>etsi-nfv-nsd-csar-plugin</finalName> + </build> </project>
\ No newline at end of file |