aboutsummaryrefslogtreecommitdiffstats
path: root/catalog-ui/src/app/utils/modals-handler.ts
AgeCommit message (Expand)AuthorFilesLines
2020-01-22Catalog alignmentys96931-326/+66
2019-04-07Generic Artifact Browser SDC UIPiotr Darosz1-1/+0
2018-07-29re base codeMichael Lando1-3/+12
2018-03-07Sync Integ to MasterMichael Lando1-1/+4
2017-07-17[SDC] rebase 1710 codeMichael Lando1-0/+18
2017-07-12[sdc] rebase updateMichael Lando1-0/+20
2017-06-11[SDC-29] rebase continue work to align sourceMichael Lando1-1/+1
2017-06-09[SDC-29] catalog 1707 rebase commit.Michael Lando1-0/+389
#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" 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/maven-v4_0_0.xsd">

	<parent>
		<groupId>org.onap.sdnc.oam</groupId>
		<artifactId>platform-logic</artifactId>
		<version>1.2.0-SNAPSHOT</version>
	</parent>

	<modelVersion>4.0.0</modelVersion>
	<packaging>pom</packaging>
	<groupId>org.onap.sdnc.oam</groupId>
	<artifactId>platform-logic-vnfapi</artifactId>
	<version>1.2.0-SNAPSHOT</version>

	<name>Platform Logic : VNF-API</name>
	<description>Contains platform-level service logic for the VNF-API</description>


	<build>
		<plugins>
			<plugin>
				<artifactId>maven-resources-plugin</artifactId>
				<version>2.6</version>
				<executions>
					<execution>
						<id>copy-version</id>
						<goals>
							<goal>copy-resources</goal>
						</goals><!-- here the phase you need -->
						<phase>validate</phase>
						<configuration>
							<outputDirectory>../target/svclogic/graphs/vnfapi</outputDirectory>
							<resources>
								<resource>
									<directory>src/main/xml</directory>
									<includes>
										<include>*.xml</include>
									</includes>
									<filtering>true</filtering>
								</resource>
								<resource>
									<directory>src/main/resources</directory>
									<includes>
										<include>graph.versions</include>
									</includes>
									<filtering>true</filtering>
								</resource>
							</resources>
						</configuration>
					</execution>
				</executions>
			</plugin>
		</plugins>
	</build>

</project>