[SDC-29] Amdocs OnBoard 1707 initial commit.
[sdc.git] / openecomp-be / lib / openecomp-sdc-validation-lib / openecomp-sdc-validation-core / pom.xml
1 <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2          xmlns="http://maven.apache.org/POM/4.0.0"
3          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4     <modelVersion>4.0.0</modelVersion>
5
6     <name>openecomp-sdc-validation-core</name>
7     <artifactId>openecomp-sdc-validation-core</artifactId>
8
9
10     <parent>
11         <groupId>org.openecomp.sdc</groupId>
12         <artifactId>openecomp-sdc-lib</artifactId>
13         <version>1.1.0-SNAPSHOT</version>
14         <relativePath>../..</relativePath>
15     </parent>
16
17     <dependencies>
18         <dependency>
19             <groupId>ch.qos.logback</groupId>
20             <artifactId>logback-classic</artifactId>
21             <version>${logback.version}</version>
22
23         </dependency>
24         <dependency>
25             <groupId>org.openecomp.sdc</groupId>
26             <artifactId>openecomp-sdc-logging-core</artifactId>
27             <version>${project.version}</version>
28         </dependency>
29         <dependency>
30             <groupId>junit</groupId>
31             <artifactId>junit</artifactId>
32             <version>${junit.version}</version>
33             <scope>test</scope>
34         </dependency>
35         <dependency>
36             <groupId>org.openecomp.core</groupId>
37             <artifactId>openecomp-utilities-lib</artifactId>
38             <version>${project.version}</version>
39         </dependency>
40         <dependency>
41             <groupId>org.openecomp.sdc</groupId>
42             <artifactId>openecomp-sdc-validation-api</artifactId>
43             <version>${project.version}</version>
44         </dependency>
45         <dependency>
46             <groupId>org.openecomp.sdc</groupId>
47             <artifactId>openecomp-sdc-validation-sdk</artifactId>
48             <version>${project.version}</version>
49         </dependency>
50         <dependency>
51             <groupId>org.openecomp.sdc</groupId>
52             <artifactId>openecomp-sdc-datatypes-lib</artifactId>
53             <version>${project.version}</version>
54         </dependency>
55         <dependency>
56             <groupId>org.mockito</groupId>
57             <artifactId>mockito-all</artifactId>
58             <scope>test</scope>
59             <version>${mockito.all.version}</version>
60         </dependency>
61         <dependency>
62             <groupId>org.openecomp.sdc.common</groupId>
63             <artifactId>openecomp-configuration-management-core</artifactId>
64             <version>${openecomp.sdc.common.version}</version>
65             <scope>runtime</scope>
66             <exclusions>
67                 <exclusion>
68                     <groupId>org.slf4j</groupId>
69                     <artifactId>slf4j-log4j12</artifactId>
70                 </exclusion>
71             </exclusions>
72         </dependency>
73         <dependency>
74             <groupId>org.openecomp.core</groupId>
75             <artifactId>openecomp-heat-lib</artifactId>
76             <version>${project.version}</version>
77         </dependency>
78         <dependency>
79             <groupId>org.testng</groupId>
80             <artifactId>testng</artifactId>
81             <version>${testng.version}</version>
82         </dependency>
83     </dependencies>
84
85     <build>
86         <plugins>
87             <plugin>
88                 <groupId>org.apache.maven.plugins</groupId>
89                 <artifactId>maven-surefire-plugin</artifactId>
90                 <version>${mvn.surefire.version}</version>
91                 <configuration>
92                     <useSystemClassLoader>false</useSystemClassLoader>
93                     <redirectTestOutputToFile>true</redirectTestOutputToFile>
94                 </configuration>
95             </plugin>
96         </plugins>
97     </build>
98 </project>