aboutsummaryrefslogtreecommitdiffstats
path: root/cds-ui/designer-client/src/app/modules/feature-modules/packages/packages.module.ts
AgeCommit message (Expand)AuthorFilesLines
2020-10-01improve dealing with topologyTemplateShaabanEltanany1-0/+2
2020-09-21adding import package basic functionalitiesShaabanEltanany1-0/+2
2020-09-13keeping package changes safeShaabanEltanany1-33/+35
2020-08-31adding tour-guide to package dashboardAhmedeldeeb501-1/+3
2020-08-24Adding Pagination LoaderAhmedeldeeb501-1/+4
2020-02-28add designer funcionality - declarative workflowAhmed Abbas1-2/+2
2020-02-25import maaping from CSV file or the current templateAhmed1-29/+31
2020-02-02add template and mapping page skeleton in designer clientAhmed Abbas1-0/+4
2020-01-29update imports-tab,source-editor and create scripts-tab componentshaaban Altanany1-3/+13
2020-01-23add design for template and mappingshady1-0/+2
2020-01-05add importTab component in package creationshaaban Altanany1-1/+4
2019-12-30add package creation component and fixing designer compilation and lintingshaaban Altanany1-2/+6
2019-12-16adding new designer component, sort and configuration dashboardShaabanEltanany1-9/+18
2019-12-06rename ui project from client-franfurt to designer-clientAhmed Abbas1-0/+36
00; background-color: #fff0f0 } /* Literal.String.Single */ .highlight .ss { color: #aa6600; background-color: #fff0f0 } /* Literal.String.Symbol */ .highlight .bp { color: #003388 } /* Name.Builtin.Pseudo */ .highlight .fm { color: #0066bb; font-weight: bold } /* Name.Function.Magic */ .highlight .vc { color: #336699 } /* Name.Variable.Class */ .highlight .vg { color: #dd7700 } /* 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"?>
<!--
  ============LICENSE_START=======================================================
  Copyright (C) 2020 AT&T Intellectual Property. All rights reserved.
  Modifications Copyright (C) 2023 Nordix Foundation.
  ================================================================================
  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/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>

    <parent>
        <groupId>org.onap.policy.models.policy-models-interactions.model-actors</groupId>
        <artifactId>model-actors</artifactId>
        <version>3.1.2-SNAPSHOT</version>
    </parent>

    <artifactId>actor.test</artifactId>
    <description>Utilities for testing actors</description>

    <dependencies>
        <dependency>
            <groupId>org.onap.policy.models.policy-models-interactions.model-impl</groupId>
            <artifactId>aai</artifactId>
            <version>${project.version}</version>
        </dependency>
        <dependency>
            <groupId>org.onap.policy.models.policy-models-interactions.model-impl</groupId>
            <artifactId>events</artifactId>
            <version>${project.version}</version>
        </dependency>
        <dependency>
            <groupId>org.onap.policy.models.policy-models-interactions.model-actors</groupId>
            <artifactId>actorServiceProvider</artifactId>
            <version>${project.version}</version>
        </dependency>
        <dependency>
            <groupId>org.onap.policy.common</groupId>
            <artifactId>policy-endpoints</artifactId>
            <version>${policy.common.version}</version>
            <scope>provided</scope>
        </dependency>
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <scope>provided</scope>
        </dependency>
        <dependency>
            <groupId>org.onap.policy.models.policy-models-interactions</groupId>
            <artifactId>simulators</artifactId>
            <version>${project.version}</version>
        </dependency>
        <dependency>
            <groupId>org.onap.policy.common</groupId>
            <artifactId>utils-test</artifactId>
            <version>${policy.common.version}</version>
        </dependency>
        <dependency>
            <groupId>org.mockito</groupId>
            <artifactId>mockito-core</artifactId>
            <scope>compile</scope>
        </dependency>
    </dependencies>

    <build>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-jar-plugin</artifactId>
                <configuration>
                    <excludes>
                        <exclude>src/test/**</exclude>
                    </excludes>
                </configuration>
            </plugin>
        </plugins>
    </build>
</project>