diff options
author | Gaurav Agrawal <gaurav.agrawal@huawei.com> | 2017-09-28 18:23:44 +0530 |
---|---|---|
committer | Gaurav Agrawal <gaurav.agrawal@huawei.com> | 2017-09-28 18:23:44 +0530 |
commit | 3d0d25cce16ec10496dbe324e635f051a4ebad34 (patch) | |
tree | b27a61a2f220b9ff4260eeeac025a5f70e744468 /dgbuilder/tools | |
parent | be72599d4037a6968cfba75d824c5c14a57bd556 (diff) |
Updated DG for network-topology-operation-activate
Following changes are included:
1) Handle l2 and l3 dci.
2) Handle 2 sites data keeping rest node template generic.
3) Fetch 3rd parth controller information using site-id.
Change-Id: I6d075cab2c7850197d91bd4e707c10c579458d48
Issue-Id: SDNC-104
Signed-off-by: Gaurav Agrawal <gaurav.agrawal@huawei.com>
Former-commit-id: 93b36edae1b14165ebd9c0fc9bbbe916c725790a
Diffstat (limited to 'dgbuilder/tools')
-rw-r--r-- | dgbuilder/tools/pom.xml_base | 79 |
1 files changed, 79 insertions, 0 deletions
diff --git a/dgbuilder/tools/pom.xml_base b/dgbuilder/tools/pom.xml_base new file mode 100644 index 00000000..c0708f06 --- /dev/null +++ b/dgbuilder/tools/pom.xml_base @@ -0,0 +1,79 @@ +<?xml version="1.0" encoding="UTF-8"?> +<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"> + <modelVersion>4.0.0</modelVersion> + <parent> + <groupId>org.openecomp.sdnc.core</groupId> + <artifactId>root</artifactId> + <version>1.2.0-SNAPSHOT</version> + </parent> + <artifactId>yangApp-model</artifactId> + <packaging>bundle</packaging> + <version>1.0.0-SNAPSHOT</version> + + <build> + <plugins> + <plugin> + <groupId>org.apache.felix</groupId> + <artifactId>maven-bundle-plugin</artifactId> + <extensions>true</extensions> + <configuration> + <instructions> + <Import-Package>*</Import-Package> + </instructions> + </configuration> + </plugin> + <plugin> + <groupId>org.opendaylight.yangtools</groupId> + <artifactId>yang-maven-plugin</artifactId> + <version>${odl.yangtools.yang.maven.plugin.version}</version> + <dependencies> + <dependency> + <groupId>org.opendaylight.mdsal</groupId> + <artifactId>maven-sal-api-gen-plugin</artifactId> + <version>${odl.sal.api.gen.plugin.version}</version> + <type>jar</type> + </dependency> + </dependencies> + <executions> + <execution> + <goals> + <goal>generate-sources</goal> + </goals> + <configuration> + <yangFilesRootDir>${yang.file.directory}</yangFilesRootDir> + <codeGenerators> + <generator> + <codeGeneratorClass>org.opendaylight.yangtools.maven.sal.api.gen.plugin.CodeGeneratorImpl</codeGeneratorClass> + <outputBaseDir>${salGeneratorPath}</outputBaseDir> + </generator> + </codeGenerators> + <inspectDependencies>true</inspectDependencies> + </configuration> + </execution> + </executions> + </plugin> + </plugins> + </build> + <dependencies> + <dependency> + <groupId>org.opendaylight.mdsal</groupId> + <artifactId>yang-binding</artifactId> + <version>${odl.mdsal.yang.binding.version}</version> + </dependency> + <dependency> + <groupId>org.opendaylight.yangtools</groupId> + <artifactId>yang-common</artifactId> + <version>${odl.yangtools.version}</version> + </dependency> + <dependency> + <groupId>org.opendaylight.mdsal.model</groupId> + <artifactId>ietf-inet-types</artifactId> + <version>${odl.ietf-inet-types.version}</version> + </dependency> + <dependency> + <groupId>org.opendaylight.mdsal.model</groupId> + <artifactId>ietf-yang-types</artifactId> + <version>${odl.ietf-yang-types.version}</version> + </dependency> + </dependencies> +</project> |