aboutsummaryrefslogtreecommitdiffstats
path: root/platform-logic/asdc-api/pom.xml
diff options
context:
space:
mode:
Diffstat (limited to 'platform-logic/asdc-api/pom.xml')
-rw-r--r--platform-logic/asdc-api/pom.xml58
1 files changed, 0 insertions, 58 deletions
diff --git a/platform-logic/asdc-api/pom.xml b/platform-logic/asdc-api/pom.xml
deleted file mode 100644
index 581f8ec9..00000000
--- a/platform-logic/asdc-api/pom.xml
+++ /dev/null
@@ -1,58 +0,0 @@
-<?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-asdcapi</artifactId>
- <version>1.2.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>