diff options
author | Dan Timoney <dtimoney@att.com> | 2017-10-20 11:46:26 -0400 |
---|---|---|
committer | Dan Timoney <dtimoney@att.com> | 2017-10-20 11:46:26 -0400 |
commit | 93bb9d70960c1eba2659e05f323531a1859a6c15 (patch) | |
tree | 4110c0b231c57794c1ed4e4871d42e01e90c83f3 /platform-logic/restapi-templates/pom.xml | |
parent | e5434a77ea0d75a44622f5ee881674bda1abc309 (diff) |
Fix tunnelxconn DGs
Tunnelxconn DGs had cut/paste errors (referred to security-zone
incorrectly). Also, restapi templates were missing.
Change-Id: Ib7aad71796301632e9269aa9e3e5e5fd266d7a94
Issue-ID: SDNC-139
Signed-off-by: Dan Timoney <dtimoney@att.com>
Former-commit-id: 76c06d99c067aa7be038e496753caee30ee01d0b
Diffstat (limited to 'platform-logic/restapi-templates/pom.xml')
-rw-r--r-- | platform-logic/restapi-templates/pom.xml | 54 |
1 files changed, 54 insertions, 0 deletions
diff --git a/platform-logic/restapi-templates/pom.xml b/platform-logic/restapi-templates/pom.xml new file mode 100644 index 00000000..784a80f5 --- /dev/null +++ b/platform-logic/restapi-templates/pom.xml @@ -0,0 +1,54 @@ +<?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.onap.sdnc.oam</groupId> + <artifactId>platform-logic</artifactId> + <version>1.2.0-SNAPSHOT</version> + </parent> + + <artifactId>platform-logic-restapi-templates</artifactId> + <version>1.2.0-SNAPSHOT</version> + <packaging>pom</packaging> + + <name>Platform Logic : REST API templates</name> + <description>Contains platform-level platform logic for REST API templates</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/restapi/templates</outputDirectory> + <resources> + <resource> + <directory>src/main/json</directory> + <includes> + <include>*.json</include> + </includes> + <filtering>true</filtering> + </resource> + <resource> + <directory>src/main/xml</directory> + <includes> + <include>*.xml</include> + </includes> + <filtering>true</filtering> + </resource> + </resources> + </configuration> + </execution> + </executions> + </plugin> + </plugins> + </build> +</project> |