blob: e49c55be60d9977549f46dece1a4dfeb018c8b8f [file] [log] [blame]
ankitbhatt75a5dad2019-03-05 16:34:18 +05301<?xml version="1.0" encoding="UTF-8"?>
Timoney, Dan (dt5972)fb6f50e2019-04-24 16:41:21 -04002<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">
ankitbhatt75a5dad2019-03-05 16:34:18 +05303 <modelVersion>4.0.0</modelVersion>
4
5 <parent>
6 <groupId>org.onap.sdnc.oam</groupId>
7 <artifactId>sdnc-oam</artifactId>
Dan Timoney57495f02020-05-07 14:49:45 -04008 <version>1.8.3-SNAPSHOT</version>
ankitbhatt75a5dad2019-03-05 16:34:18 +05309 </parent>
10
11 <groupId>org.onap.sdnc.oam</groupId>
12 <artifactId>data-migrator</artifactId>
Dan Timoney57495f02020-05-07 14:49:45 -040013 <version>1.8.3-SNAPSHOT</version>
ankitbhatt75a5dad2019-03-05 16:34:18 +053014 <packaging>jar</packaging>
15
16 <name>sdnc-oam :: data-migrator</name>
17 <description>MDSAL Data Migrator</description>
18
19 <properties>
20 <fasterxml.jackson.version>2.9.4</fasterxml.jackson.version>
21 <velocity.version>2.0</velocity.version>
22 <skip.SWM>true</skip.SWM>
23 <maven.build.timestamp.format>yyyyMMdd'T'HHmmss'Z'</maven.build.timestamp.format>
24 <build.number>${maven.build.timestamp}</build.number>
25 <SWM_VERSION>${project.version}-${build.number}</SWM_VERSION>
26 </properties>
27
28 <dependencyManagement>
29 <dependencies>
30 </dependencies>
31 </dependencyManagement>
32
33 <dependencies>
34 <dependency>
35 <groupId>org.slf4j</groupId>
36 <artifactId>slf4j-api</artifactId>
37 <version>1.7.21</version>
38 </dependency>
39 <dependency>
40 <groupId>org.slf4j</groupId>
41 <artifactId>slf4j-log4j12</artifactId>
42 <version>1.6.1</version>
43 <scope>compile</scope>
44 </dependency>
45 <dependency>
46 <groupId>log4j</groupId>
47 <artifactId>log4j</artifactId>
48 <version>1.2.17</version>
49 </dependency>
50 <dependency>
51 <groupId>junit</groupId>
52 <artifactId>junit</artifactId>
53 <version>${junit.version}</version>
54 <scope>test</scope>
55 </dependency>
56 <dependency>
57 <groupId>com.google.code.gson</groupId>
58 <artifactId>gson</artifactId>
59 <version>2.8.5</version>
60 </dependency>
61 <dependency>
62 <groupId>org.apache.commons</groupId>
63 <artifactId>commons-lang3</artifactId>
64 <version>3.5</version>
65 </dependency>
66 <dependency>
67 <groupId>org.reflections</groupId>
68 <artifactId>reflections</artifactId>
69 <version>0.9.9-RC1</version>
70 </dependency>
71 <dependency>
72 <groupId>com.beust</groupId>
73 <artifactId>jcommander</artifactId>
74 <version>1.48</version>
75 </dependency>
76 <dependency>
77 <groupId>com.github.tomakehurst</groupId>
78 <artifactId>wiremock-standalone</artifactId>
79 <version>2.18.0</version>
80 <scope>test</scope>
81 </dependency>
82 </dependencies>
83
84 <build>
85 <plugins>
86
87 <!-- ================================================== -->
88 <!-- Set the JDK compiler version. -->
89 <!-- ================================================== -->
90 <plugin>
91 <groupId>org.apache.maven.plugins</groupId>
92 <artifactId>maven-compiler-plugin</artifactId>
93 <version>2.5.1</version>
94 <inherited>true</inherited>
95 <configuration>
96 <source>1.8</source>
97 <target>1.8</target>
98 </configuration>
99 </plugin>
100 <plugin>
101 <groupId>org.apache.maven.plugins</groupId>
102 <artifactId>maven-jar-plugin</artifactId>
103 <version>2.6</version>
104 <configuration>
105 <archive>
106 <manifest>
107 <addClasspath>true</addClasspath>
108 <mainClass>org.onap.sdnc.oam.datamigrator.DataMigration</mainClass>
109 </manifest>
110 </archive>
111 </configuration>
112 </plugin>
113 <plugin>
114 <artifactId>maven-assembly-plugin</artifactId>
115 <version>2.6</version>
116 <executions>
117 <execution>
118 <id>create-zip</id>
119 <goals>
120 <goal>single</goal>
121 </goals>
122 <phase>package</phase>
123 <configuration>
124 <attach>true</attach>
125 <finalName>${project.artifactId}.${project.version}</finalName>
126 <attach>true</attach>
127 <descriptors>
128 <descriptor>src/assembly/assemble_zip.xml</descriptor>
129 </descriptors>
130 <appendAssemblyId>false</appendAssemblyId>
131 </configuration>
132 </execution>
133 </executions>
134 </plugin>
135
136 </plugins>
137 </build>
138</project>