summaryrefslogtreecommitdiffstats
AgeCommit message (Expand)AuthorFilesLines
2020-11-26Trim inputs in Property assignmentJoanna Jeremicz2-2/+42
2020-11-18Fix doc issuesChrisC4-3/+8
2020-11-17Fix import VFC with attributesaribeiro31-524/+986
2020-11-17When submitting the service CSAR file import, duplicate key null appears in t...zhaoxiangjun6661-1/+1
2020-11-17Fix doc issuesChrisC3-5/+8
2020-11-16Fix node filter capability filtersaribeiro25-369/+1020
2020-11-16Fix deployment artifact not shownsebdet1-1/+1
2020-11-13Update DocumentationChrisC8-43/+46
2020-11-13Add type fieldxuegao1-0/+4
2020-11-09Upgrade the zusammen libsebdet2-2/+3
2020-11-07Fix import service csar label sticking outSatoshi Fujii1-1/+1
2020-11-05Modify the get service Abstract status interface and add the tonode judgment-5/+88
2020-10-29[DOC] Fix for SDC git repo path not found issueramagp1-1/+1
2020-10-27Update INFO.yamlChrisC1-0/+16
2020-10-27Officially Release 1.7.2sebdet1-0/+22
2020-10-26Fix broken local build1.7.2vasraz164-164/+164
2020-10-26software version fixtragait2-0/+4
2020-10-26To solve the problem that the CSAR file cannot be imported when it is importe...zhaoxiangjun6663-9/+21
2020-10-26Fix workflow issuexuegao1-4/+0
2020-10-23Fix substitution_mapping property mapping
<!--
  ============LICENSE_START=======================================================
  ONAP Policy SDC Service Distribution
  ================================================================================
  Copyright (C) 2018 AT&T Intellectual Property. All rights reserved.
  ================================================================================
  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.
  ============LICENSE_END=========================================================
  -->

<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/maven-v4_0_0.xsd">
    <modelVersion>4.0.0</modelVersion>

    <parent>
        <groupId>org.onap.policy.parent</groupId>
        <artifactId>integration</artifactId>
        <version>2.0.0-SNAPSHOT</version>
        <relativePath />
    </parent>

    <groupId>org.onap.policy.distribution</groupId>
    <artifactId>policy-distribution</artifactId>

    <packaging>pom</packaging>

    <name>policy-distribution</name>
    <description>Code that implements our integration with SDC service distribution API.</description>

    <properties>
        <!-- sonar/jacoco overrides -->
        <!-- Overriding oparent default sonar/jacoco settings Combine all our reports
            into one file shared across sub-modules -->
        <sonar.jacoco.reportPath>${project.basedir}/../target/code-coverage/jacoco-ut.exec</sonar.jacoco.reportPath>
        <sonar.jacoco.itReportPath>${project.basedir}/../target/code-coverage/jacoco-it.exec</sonar.jacoco.itReportPath>
        <sonar.dynamicAnalysis>reuseReports</sonar.dynamicAnalysis>

        <policy.common.version>1.3.0-SNAPSHOT</policy.common.version>
    </properties>

    <modules>
        <module>model</module>
        <module>main</module>
        <module>reception</module>
        <module>forwarding</module>
        <module>plugins</module>
	<module>packages</module>
    </modules>

    <dependencies>
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.slf4j</groupId>
            <artifactId>slf4j-ext</artifactId>
            <version>1.8.0-beta2</version>
        </dependency>
        <dependency>
            <groupId>org.slf4j</groupId>
            <artifactId>slf4j-api</artifactId>
        </dependency>
        <dependency>
            <groupId>
11-4/+95
2020-09-29Allow hot reloading of specific config propertiesaribeiro3-17/+24
2020-09-28Release 1.7.1sebdet1-0/+22
2020-09-25Standardize docker tagging1.7.1sebdet11-34/+31
2020-09-24Fix docker stage for be pluginssebdet1-0/+1
2020-09-23Remove legacy Policy Types no longer usedPamela Dragosh3-486/+0
2020-09-22SDC changes for adding dummy base heat-new patchSithara Nambiar6-1/+188
2020-09-21Support for Test Topology Auto Design- Service Importzhaoxiangjun66665-130/+14876
2020-09-18Introduce a new docker for be pluginssebdet61-1400/+4692
2020-09-17Remove jboss-rmisebdet2-68/+80
2020-09-16Remove jboss-rmisebdet11-0/+66
2020-09-15Remove jboss-rmisebdet1-0/+6
2020-09-14Fix VSP updating issuexuegao1-1/+3
2020-09-10Update sdc start to mount catalog-be pluginsandre.schmid2-5/+39
<exclude>**/yang-gen/**</exclude> <exclude>**/pax/**</exclude> </excludes> </configuration> <executions> <!-- Prepares the property pointing to the JaCoCo runtime agent which is passed as VM argument when Maven the Surefire plugin is executed. --> <execution> <id>pre-unit-test</id> <goals> <goal>prepare-agent</goal> </goals> <configuration> <destFile>${sonar.jacoco.reportPath}</destFile> </configuration> </execution> <!-- Ensures that the code coverage report for unit tests is created after unit tests have been run. --> <execution> <id>post-unit-test</id> <phase>test</phase> <goals> <goal>report</goal> </goals> <configuration> <dataFile>${sonar.jacoco.reportPath}</dataFile> </configuration> </execution> </executions> </plugin> </plugins> </pluginManagement> </build> </project>