1 <?xml version="1.0" encoding="UTF-8"?>
2 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
6 <groupId>org.openecomp.appc.deployment</groupId>
7 <artifactId>platform-logic</artifactId>
8 <version>1.1.0-SNAPSHOT</version>
11 <modelVersion>4.0.0</modelVersion>
12 <packaging>pom</packaging>
13 <groupId>org.openecomp.appc.deployment</groupId>
14 <artifactId>platform-logic-installer</artifactId>
15 <version>1.1.0-SNAPSHOT</version>
17 <name>Platform Logic Installer for APP-C</name>
18 <description>Contains platform-level service logic installer for APP-C</description>
23 <artifactId>maven-resources-plugin</artifactId>
24 <version>2.6</version>
29 <goal>copy-resources</goal>
30 </goals><!-- here the phase you need -->
31 <phase>validate</phase>
33 <outputDirectory>target/resources</outputDirectory>
36 <directory>src/main/resources</directory>
40 <filtering>true</filtering>
48 <artifactId>maven-assembly-plugin</artifactId>
55 <phase>package</phase>
59 <descriptor>src/assembly/assemble_zip.xml</descriptor>
67 <groupId>org.apache.maven.plugins</groupId>
68 <artifactId>maven-dependency-plugin</artifactId>
71 <id>copy-dependencies</id>
73 <goal>copy-dependencies</goal>
75 <phase>prepare-package</phase>
77 <transitive>false</transitive>
78 <outputDirectory>${project.build.directory}/lib</outputDirectory>
79 <overWriteReleases>false</overWriteReleases>
80 <overWriteSnapshots>true</overWriteSnapshots>
81 <overWriteIfNewer>true</overWriteIfNewer>
82 <useRepositoryLayout>false</useRepositoryLayout>
83 <addParentPoms>false</addParentPoms>
84 <copyPom>false</copyPom>
85 <scope>provided</scope>
95 <groupId>org.slf4j</groupId>
96 <artifactId>slf4j-api</artifactId>
97 <version>${slf4j.version}</version>
100 <groupId>org.slf4j</groupId>
101 <artifactId>slf4j-simple</artifactId>
102 <version>1.7.5</version>
103 <scope>compile</scope>
106 <groupId>org.openecomp.sdnc.core</groupId>
107 <artifactId>sli-common</artifactId>
108 <version>${sdnctl.sli.version}</version>
111 <groupId>org.antlr</groupId>
112 <artifactId>antlr4</artifactId>
113 <version>${antlr.version}</version>
115 <scope>compile</scope>
118 <groupId>mysql</groupId>
119 <artifactId>mysql-connector-java</artifactId>
120 <version>${mysql.connector.version}</version>
122 <scope>compile</scope>