Initial commit for OpenECOMP SDN-C northbound
[sdnc/northbound.git] / ueb-listener / pom.xml
1 <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/xsd/maven-4.0.0.xsd">
2         <modelVersion>4.0.0</modelVersion>
3     <groupId>org.openecomp.sdnc.northbound</groupId>
4         <packaging>jar</packaging>
5         <artifactId>ueb-listener</artifactId>
6         <version>1.0.0</version>
7
8         <name>UEB Listener</name>
9         <description>UEB Listener</description>
10         <parent>
11                 <groupId>org.openecomp.sdnc.northbound</groupId>
12                 <artifactId>sdnc-northbound</artifactId>
13                 <version>1.0.0</version>
14         </parent>
15         <properties>
16                 <sdc.client.version>1.1.0</sdc.client.version>
17                 <skip.SWM>true</skip.SWM>
18                 <ueb.listener.base>/opt/app/ueb-listener</ueb.listener.base>
19                 <maven.build.timestamp.format>yyMMdd-HHmmss</maven.build.timestamp.format>
20                 <build.number>${maven.build.timestamp}</build.number>
21                 <SWM_VERSION>${project.version}-${build.number}</SWM_VERSION>
22         </properties>
23
24         <dependencies>
25
26                 <dependency>
27                         <groupId>org.openecomp.sdc</groupId>
28                         <artifactId>sdc-distribution-client</artifactId>
29                         <version>${sdc.client.version}</version>
30                         <scope>compile</scope>
31                 </dependency>
32
33                 <dependency>
34                         <groupId>org.slf4j</groupId>
35                         <artifactId>slf4j-api</artifactId>
36                         <version>1.7.10</version>
37                 </dependency>
38                 <dependency>
39                         <groupId>org.slf4j</groupId>
40                         <artifactId>slf4j-log4j12</artifactId>
41                         <version>1.6.1</version>
42                         <scope>compile</scope>
43                 </dependency>
44                 <dependency>
45                         <groupId>log4j</groupId>
46                         <artifactId>log4j</artifactId>
47                         <version>1.2.17</version>
48                 </dependency>
49                 <dependency>
50                 <groupId>commons-codec</groupId>
51                 <artifactId>commons-codec</artifactId>
52                 <version>${commons.codec.version}</version>
53                 </dependency>
54         </dependencies>
55         <build>
56                 <plugins>
57
58                         <!-- ================================================== -->
59                         <!-- Set the JDK compiler version. -->
60                         <!-- ================================================== -->
61                         <plugin>
62                                 <groupId>org.apache.maven.plugins</groupId>
63                                 <artifactId>maven-compiler-plugin</artifactId>
64                                 <version>2.5.1</version>
65                                 <inherited>true</inherited>
66                                 <configuration>
67                                         <source>1.7</source>
68                                         <target>1.7</target>
69                                 </configuration>
70                         </plugin>
71
72                         <plugin>
73                                 <groupId>org.apache.maven.plugins</groupId>
74                                 <artifactId>maven-jar-plugin</artifactId>
75                                 <version>2.6</version>
76                                 <configuration>
77                                         <archive>
78                                                 <manifest>
79                                                         <addClasspath>true</addClasspath>
80                                                         <mainClass>org.openecomp.sdnc.uebclient.SdncUebClient</mainClass>
81                                                 </manifest>
82                                         </archive>
83                                 </configuration>
84                         </plugin>
85
86                         <plugin>
87                                 <artifactId>maven-assembly-plugin</artifactId>
88                                 <executions>
89                                         <execution>
90                                                 <id>create-zip</id>
91                                                 <goals>
92                                                         <goal>single</goal>
93                                                 </goals>
94                                                 <phase>package</phase>
95                                                 <configuration>
96                                                         <attach>true</attach>
97                                                         <finalName>${project.artifactId}.${project.version}</finalName>
98                                                         <attach>true</attach>
99                                                         <descriptors>
100                                                                 <descriptor>src/assembly/assemble_zip.xml</descriptor>
101                                                         </descriptors>
102                                                 </configuration>
103                                         </execution>
104                                 </executions>
105                         </plugin>
106
107                 </plugins>
108         </build>
109
110 </project>