summaryrefslogtreecommitdiffstats
path: root/platform-logic/asdc-api/pom.xml
diff options
context:
space:
mode:
authorDan Timoney <dtimoney@att.com>2017-08-21 10:27:47 -0400
committerDan Timoney <dtimoney@att.com>2017-08-21 12:34:31 -0400
commit24a1a1b4a46330e9c5fa54ddabe3d01c3c60571f (patch)
treee79484788e1bb33f66b1ac7529195ad9ebc7004e /platform-logic/asdc-api/pom.xml
parente50df7d897d144f03e364d600e94b526656a8c4e (diff)
Add platform DGs to distribution
Add platform DGs needed by ODL-SLI docker container to distribution repo. Change-Id: I01c4a466da7bd986447cb44629fee61038664592 Issue-ID: CCSDK-27 Signed-off-by: Dan Timoney <dtimoney@att.com>
Diffstat (limited to 'platform-logic/asdc-api/pom.xml')
-rw-r--r--platform-logic/asdc-api/pom.xml57
1 files changed, 57 insertions, 0 deletions
diff --git a/platform-logic/asdc-api/pom.xml b/platform-logic/asdc-api/pom.xml
new file mode 100644
index 00000000..9457d34d
--- /dev/null
+++ b/platform-logic/asdc-api/pom.xml
@@ -0,0 +1,57 @@
+<?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.ccsdk.distribution</groupId>
+ <artifactId>distribution-platform-logic</artifactId>
+ <version>0.1.0-SNAPSHOT</version>
+ </parent>
+
+ <modelVersion>4.0.0</modelVersion>
+ <packaging>pom</packaging>
+ <artifactId>platform-logic-asdcapi</artifactId>
+ <version>0.1.0-SNAPSHOT</version>
+
+ <name>Platform Logic : ASDC-API</name>
+ <description>Contains platform-level service logic for the ASDC-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/graphs/asdcapi</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>