[SDC-29] Amdocs OnBoard 1707 initial commit.
[sdc.git] / openecomp-be / lib / openecomp-sdc-vendor-software-product-lib / openecomp-sdc-vendor-software-product-core / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3          xmlns="http://maven.apache.org/POM/4.0.0"
4          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5     <modelVersion>4.0.0</modelVersion>
6
7     <artifactId>openecomp-sdc-vendor-software-product-core</artifactId>
8
9     <parent>
10         <groupId>org.openecomp.sdc</groupId>
11         <artifactId>openecomp-sdc-vendor-software-product-lib</artifactId>
12         <version>1.1.0-SNAPSHOT</version>
13     </parent>
14
15     <dependencies>
16         <dependency>
17             <groupId>org.openecomp.sdc</groupId>
18             <artifactId>openecomp-sdc-vendor-software-product-api</artifactId>
19             <version>${project.version}</version>
20         </dependency>
21         <dependency>
22             <groupId>org.openecomp.core</groupId>
23             <artifactId>openecomp-nosqldb-api</artifactId>
24             <version>${project.version}</version>
25         </dependency>
26         <dependency>
27             <groupId>org.freemarker</groupId>
28             <artifactId>freemarker</artifactId>
29             <version>${freemarker.version}</version>
30         </dependency>
31         <dependency>
32             <groupId>org.testng</groupId>
33             <artifactId>testng</artifactId>
34             <version>${testng.version}</version>
35             <scope>test</scope>
36         </dependency>
37         <dependency>
38             <groupId>org.openecomp.core</groupId>
39             <artifactId>openecomp-config-lib</artifactId>
40             <version>${project.version}</version>
41         </dependency>
42         <dependency>
43             <groupId>org.openecomp.sdc</groupId>
44             <artifactId>openecomp-sdc-model-impl</artifactId>
45             <version>${project.version}</version>
46             <scope>test</scope>
47         </dependency>
48         <dependency>
49             <groupId>org.apache.xmlgraphics</groupId>
50             <artifactId>fop</artifactId>
51             <version>${fop.version}</version>
52         </dependency>
53         <dependency>
54             <groupId>com.fasterxml.jackson.dataformat</groupId>
55             <artifactId>jackson-dataformat-xml</artifactId>
56             <version>${jackson.dataformat.version}</version>
57         </dependency>
58         <dependency>
59             <groupId>commons-io</groupId>
60             <artifactId>commons-io</artifactId>
61             <version>${commons.io.version}</version>
62         </dependency>
63         <dependency>
64             <groupId>org.mockito</groupId>
65             <artifactId>mockito-all</artifactId>
66             <version>${mockito.all.version}</version>
67         </dependency>
68         <dependency>
69             <groupId>junit</groupId>
70             <artifactId>junit</artifactId>
71             <version>4.12</version>
72             <scope>test</scope>
73         </dependency>
74         <dependency>
75             <groupId>org.openecomp.sdc.common</groupId>
76             <artifactId>openecomp-configuration-management-core</artifactId>
77             <version>${openecomp.sdc.common.version}</version>
78             <scope>runtime</scope>
79             <exclusions>
80                 <exclusion>
81                     <groupId>org.slf4j</groupId>
82                     <artifactId>slf4j-log4j12</artifactId>
83                 </exclusion>
84             </exclusions>
85         </dependency>
86         <dependency>
87             <groupId>org.openecomp.sdc.common</groupId>
88             <artifactId>openecomp-configuration-management-api</artifactId>
89             <version>${openecomp.sdc.common.version}</version>
90         </dependency>
91         <dependency>
92             <groupId>org.openecomp.core</groupId>
93             <artifactId>openecomp-zusammen-api</artifactId>
94             <version>${project.version}</version>
95         </dependency>
96         <dependency>
97             <groupId>org.openecomp.core</groupId>
98             <artifactId>openecomp-zusammen-core</artifactId>
99             <version>${project.version}</version>
100             <scope>runtime</scope>
101         </dependency>
102         <dependency>
103             <groupId>org.apache.commons</groupId>
104             <artifactId>commons-lang3</artifactId>
105             <version>3.4</version>
106         </dependency>
107
108
109         <dependency>
110             <groupId>org.openecomp.sdc.common</groupId>
111             <artifactId>openecomp-tosca-datatype</artifactId>
112             <version>${openecomp.sdc.common.version}</version>
113         </dependency>
114     </dependencies>
115
116     <build>
117         <plugins>
118             <plugin>
119                 <groupId>org.apache.maven.plugins</groupId>
120                 <artifactId>maven-surefire-plugin</artifactId>
121                 <version>${mvn.surefire.version}</version>
122                 <configuration>
123                     <skipTests>true</skipTests>
124                     <useSystemClassLoader>false</useSystemClassLoader>
125                     <redirectTestOutputToFile>true</redirectTestOutputToFile>
126                 </configuration>
127             </plugin>
128         </plugins>
129     </build>
130
131 </project>