[SDNC-14] Roll oam to version 1.1.2
[sdnc/oam.git] / platform-logic / installer / pom.xml
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">
4
5         <parent>
6                 <groupId>org.openecomp.sdnc.oam</groupId>
7                 <artifactId>platform-logic</artifactId>
8                 <version>1.1.2-SNAPSHOT</version>
9         </parent>
10
11         <modelVersion>4.0.0</modelVersion>
12         <packaging>pom</packaging>
13         <groupId>org.openecomp.sdnc.oam</groupId>
14         <artifactId>platform-logic-installer</artifactId>
15         <version>1.1.2-SNAPSHOT</version>
16
17         <name>Platform Logic Installer</name>
18         <description>Contains platform-level service logic installer</description>
19
20
21
22         <build>
23                 <plugins>
24                                         <plugin>
25                                 <artifactId>maven-resources-plugin</artifactId>
26                                 <version>2.6</version>
27                                 <executions>
28                                         <execution>
29                                                 <id>copy-version</id>
30                                                 <goals>
31                                                         <goal>copy-resources</goal>
32                                                 </goals><!-- here the phase you need -->
33                                                 <phase>validate</phase>
34                                                 <configuration>
35                                                         <outputDirectory>target/resources</outputDirectory>
36                                                         <resources>
37                                                                 <resource>
38                                                                         <directory>src/main/resources</directory>
39                                                                         <includes>
40                                                                                 <include>*</include>
41                                                                         </includes>
42                                                                         <filtering>true</filtering>
43                                                                 </resource>
44                                                         </resources>
45                                                 </configuration>
46                                         </execution>
47                                 </executions>
48                         </plugin>
49                         <plugin>
50                                 <artifactId>maven-assembly-plugin</artifactId>
51                                 <version>2.6</version>
52                                 <executions>
53                                         <execution>
54                                                 <id>create-zip</id>
55                                                 <goals>
56                                                         <goal>single</goal>
57                                                 </goals>
58                                                 <phase>package</phase>
59                                                 <configuration>
60                                                         <attach>true</attach>
61                                                         <descriptors>
62                                                                 <descriptor>src/assembly/assemble_zip.xml</descriptor>
63                                                         </descriptors>
64                                                         <appendAssemblyId>false</appendAssemblyId>
65                                                 </configuration>
66                                         </execution>
67
68                                 </executions>
69                         </plugin>
70                         <plugin>
71                                 <groupId>org.apache.maven.plugins</groupId>
72                                 <artifactId>maven-dependency-plugin</artifactId>
73                                 <executions>
74                                         <execution>
75                                                 <id>copy-dependencies</id>
76                                                 <goals>
77                                                         <goal>copy-dependencies</goal>
78                                                 </goals>
79                                                 <phase>prepare-package</phase>
80                                                 <configuration>
81                                                         <transitive>false</transitive>
82                                                         <outputDirectory>${project.build.directory}/lib</outputDirectory>
83                                                         <overWriteReleases>false</overWriteReleases>
84                                                         <overWriteSnapshots>true</overWriteSnapshots>
85                                                         <overWriteIfNewer>true</overWriteIfNewer>
86                                                         <useRepositoryLayout>false</useRepositoryLayout>
87                                                         <addParentPoms>false</addParentPoms>
88                                                         <copyPom>false</copyPom>
89                                                         <scope>provided</scope>
90                                                 </configuration>
91                                         </execution>
92                                 </executions>
93                         </plugin>
94                 </plugins>
95
96         </build>
97         <dependencies>
98                 <dependency>
99                         <groupId>org.slf4j</groupId>
100                         <artifactId>slf4j-api</artifactId>
101                         <version>${slf4j.version}</version>
102                 </dependency>
103                 <dependency>
104                         <groupId>org.slf4j</groupId>
105                         <artifactId>slf4j-simple</artifactId>
106                         <version>1.7.5</version>
107                         <scope>compile</scope>
108                 </dependency>
109                 <dependency>
110                         <groupId>org.openecomp.sdnc.core</groupId>
111                         <artifactId>sli-common</artifactId>
112                         <version>${sdnctl.sli.version}</version>
113                 </dependency>
114                 <dependency>
115                         <groupId>org.antlr</groupId>
116                         <artifactId>antlr4</artifactId>
117                         <version>${antlr.version}</version>
118                         <type>jar</type>
119                         <scope>compile</scope>
120                 </dependency>
121                 <dependency>
122                         <groupId>mysql</groupId>
123                         <artifactId>mysql-connector-java</artifactId>
124                         <version>${mysql.connector.version}</version>
125                         <type>jar</type>
126                         <scope>compile</scope>
127                 </dependency>
128         </dependencies>
129
130 </project>