blob: b554ae8adc7ea19b3d1c9c495ef28dc3d08e53b5 [file] [log] [blame]
Patrick Brady83514252017-02-13 11:57:08 -08001<?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">
4
5 <parent>
6 <groupId>org.openecomp.appc.deployment</groupId>
7 <artifactId>platform-logic</artifactId>
Patrick Bradyea8c76c2017-11-09 11:53:06 -08008 <version>1.2.0-SNAPSHOT</version>
Patrick Brady83514252017-02-13 11:57:08 -08009 </parent>
10
11 <modelVersion>4.0.0</modelVersion>
12 <packaging>pom</packaging>
13 <groupId>org.openecomp.appc.deployment</groupId>
14 <artifactId>platform-logic-installer</artifactId>
Patrick Bradyea8c76c2017-11-09 11:53:06 -080015 <version>1.2.0-SNAPSHOT</version>
Patrick Brady83514252017-02-13 11:57:08 -080016
17 <name>Platform Logic Installer for APP-C</name>
18 <description>Contains platform-level service logic installer for APP-C</description>
19
20 <build>
21 <plugins>
22 <plugin>
23 <artifactId>maven-resources-plugin</artifactId>
24 <version>2.6</version>
25 <executions>
26 <execution>
27 <id>copy-version</id>
28 <goals>
29 <goal>copy-resources</goal>
30 </goals><!-- here the phase you need -->
31 <phase>validate</phase>
32 <configuration>
33 <outputDirectory>target/resources</outputDirectory>
34 <resources>
35 <resource>
36 <directory>src/main/resources</directory>
37 <includes>
38 <include>*</include>
39 </includes>
40 <filtering>true</filtering>
41 </resource>
42 </resources>
43 </configuration>
44 </execution>
45 </executions>
46 </plugin>
47 <plugin>
48 <artifactId>maven-assembly-plugin</artifactId>
Guo Ruijing1f74ea22017-05-07 21:14:31 +000049 <version>2.6</version>
Patrick Brady83514252017-02-13 11:57:08 -080050 <executions>
51 <execution>
52 <id>create-zip</id>
53 <goals>
54 <goal>single</goal>
55 </goals>
56 <phase>package</phase>
57 <configuration>
58 <attach>true</attach>
59 <descriptors>
60 <descriptor>src/assembly/assemble_zip.xml</descriptor>
61 </descriptors>
Guo Ruijing1f74ea22017-05-07 21:14:31 +000062 <appendAssemblyId>false</appendAssemblyId>
Patrick Brady83514252017-02-13 11:57:08 -080063 </configuration>
64 </execution>
65
66 </executions>
67 </plugin>
68 <plugin>
69 <groupId>org.apache.maven.plugins</groupId>
70 <artifactId>maven-dependency-plugin</artifactId>
71 <executions>
72 <execution>
73 <id>copy-dependencies</id>
74 <goals>
75 <goal>copy-dependencies</goal>
76 </goals>
77 <phase>prepare-package</phase>
78 <configuration>
79 <transitive>false</transitive>
80 <outputDirectory>${project.build.directory}/lib</outputDirectory>
81 <overWriteReleases>false</overWriteReleases>
82 <overWriteSnapshots>true</overWriteSnapshots>
83 <overWriteIfNewer>true</overWriteIfNewer>
84 <useRepositoryLayout>false</useRepositoryLayout>
85 <addParentPoms>false</addParentPoms>
86 <copyPom>false</copyPom>
87 <scope>provided</scope>
88 </configuration>
89 </execution>
90 </executions>
91 </plugin>
92 </plugins>
93
94 </build>
95 <dependencies>
96 <dependency>
97 <groupId>org.slf4j</groupId>
98 <artifactId>slf4j-api</artifactId>
99 <version>${slf4j.version}</version>
100 </dependency>
101 <dependency>
102 <groupId>org.slf4j</groupId>
103 <artifactId>slf4j-simple</artifactId>
104 <version>1.7.5</version>
105 <scope>compile</scope>
106 </dependency>
107 <dependency>
Patrick Bradyd63f4492017-09-29 10:13:07 -0700108 <groupId>org.onap.ccsdk.sli.core</groupId>
Patrick Brady83514252017-02-13 11:57:08 -0800109 <artifactId>sli-common</artifactId>
Patrick Bradyd63f4492017-09-29 10:13:07 -0700110 <version>${ccsdk.sli.core.version}</version>
Patrick Brady83514252017-02-13 11:57:08 -0800111 </dependency>
112 <dependency>
113 <groupId>org.antlr</groupId>
114 <artifactId>antlr4</artifactId>
115 <version>${antlr.version}</version>
116 <type>jar</type>
117 <scope>compile</scope>
118 </dependency>
119 <dependency>
Patrick Brady5cf9dc32017-09-29 12:29:18 -0700120 <groupId>org.mariadb.jdbc</groupId>
121 <artifactId>mariadb-java-client</artifactId>
122 <version>${mariadb.connector.version}</version>
Patrick Brady83514252017-02-13 11:57:08 -0800123 <type>jar</type>
124 <scope>compile</scope>
125 </dependency>
126 </dependencies>
127
128</project>