aboutsummaryrefslogtreecommitdiffstats
path: root/platform-logic/datachange/src/main/resources
diff options
context:
space:
mode:
authorFranklin Dsilva <franklin.dsilva@us.fujitsu.com>2020-02-28 09:27:53 +0000
committerFranklin Dsilva <franklin.dsilva@us.fujitsu.com>2020-02-28 09:28:25 +0000
commit7d5e011ccd88f6a71715654f64433ed69ef9df6e (patch)
treeffcf15087291eb0f7e9c3688822df25f053ce947 /platform-logic/datachange/src/main/resources
parente88cf0263ee372d52af3af171f78c30c97f6fcb9 (diff)
TAPI controller Topology
Discovery to support MDONs use case Change-Id: Ie5a2c9e3ceb17520017ea7ae6210b0699feb7977 Issue-ID: SDNC-928 Signed-off-by: Franklin Dsilva <franklin.dsilva@us.fujitsu.com> Former-commit-id: 5bb560faedfd20c243ebfa52a79e39efd39eb9ea
Diffstat (limited to 'platform-logic/datachange/src/main/resources')
-rw-r--r--platform-logic/datachange/src/main/resources/graph.versions2
1 files changed, 2 insertions, 0 deletions
diff --git a/platform-logic/datachange/src/main/resources/graph.versions b/platform-logic/datachange/src/main/resources/graph.versions
index 53a1d02a..21ae9462 100644
--- a/platform-logic/datachange/src/main/resources/graph.versions
+++ b/platform-logic/datachange/src/main/resources/graph.versions
@@ -6,3 +6,5 @@ DataChange esr-thirdparty-sdnc-discovery ${project.version} sync
DataChange esr-thirdparty-sdnc-discovery-of-zte ${project.version} sync
DataChange update-network-to-aai ${project.version} sync
DataChange msa-update-network-to-aai ${project.version} sync
+DataChange tapi-update-network-to-aai ${project.version} sync
+
00 } /* Name.Variable.Global */ .highlight .vi { color: #3333bb } /* Name.Variable.Instance */ .highlight .vm { color: #336699 } /* Name.Variable.Magic */ .highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */
<?xml version="1.0" encoding="UTF-8"?>
<!--
  Copyright 2016 Huawei Technologies Co., Ltd.
 
  Licensed under the Apache License, Version 2.0 (the "License");
  you may not use this file except in compliance with the License.
  You may obtain a copy of the License at
 
  http://www.apache.org/licenses/LICENSE-2.0
 
  Unless required by applicable law or agreed to in writing, software
  distributed under the License is distributed on an "AS IS" BASIS,
  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  See the License for the specific language governing permissions and
  limitations under the License.
-->
<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.openo.common-services.common-utilities</groupId>
       <artifactId>common-setting</artifactId>
       <version>1.1.0-SNAPSHOT</version>
    </parent>
    <artifactId>commonlib-restclient</artifactId>
    <properties>
    </properties>
    <dependencies>
        <dependency>
            <groupId>org.openo.common-services.common-utilities</groupId>
            <artifactId>commonlib-cbb</artifactId>
            <version>1.1.0-SNAPSHOT</version>
        </dependency>
        <dependency>
            <groupId>org.eclipse.jetty.aggregate</groupId>
            <artifactId>jetty-all</artifactId>
        </dependency>
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <scope>test</scope>
            <version>4.8.2</version>
        </dependency>
        <dependency>
            <groupId>com.googlecode.jmockit</groupId>
            <artifactId>jmockit</artifactId>
            <scope>test</scope>
            <version>1.1</version>
        </dependency>

    </dependencies>

    <build>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-surefire-plugin</artifactId>
                <configuration>
                	<forkMode>always</forkMode>
                    <argLine>-XX:-UseSplitVerifier</argLine>
                    <skip>${maven.test.skip}</skip>
                    <testFailureIgnore>${maven.test.failure.ignore}</testFailureIgnore>
                    <excludes>
                        <exclude>${excludesFile}</exclude>
                    </excludes>
                </configuration>
            </plugin>
            <plugin>
                <groupId>org.codehaus.mojo</groupId>
                <artifactId>cobertura-maven-plugin</artifactId>
                <version>2.6</version>
                <configuration>
                    <formats>
                        <format>xml</format>
                        <format>html</format>
                    </formats>
                </configuration>
                <executions>
                    <execution>
                        <phase>package</phase>
                        <goals>
                            <goal>cobertura</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>
        </plugins>
    </build>
<name>common-services-common-utilities/rest-client</name></project>