blob: b53f4159fce38f96e313baa79a5de00dc87e2974 [file] [log] [blame]
AviZi280f8012017-06-09 02:39:56 +03001<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>att-sdc-validation-impl</name>
7 <artifactId>att-sdc-validation-impl</artifactId>
8
9
10 <parent>
11 <groupId>org.openecomp.sdc</groupId>
12 <artifactId>openecomp-sdc-lib</artifactId>
13 <version>1.0-SNAPSHOT</version>
14 <relativePath>../..</relativePath>
15 </parent>
16
17 <dependencies>
18 <dependency>
19 <groupId>org.openecomp.core</groupId>
20 <artifactId>openecomp-facade-core</artifactId>
21 <version>${project.version}</version>
22 </dependency>
23 <dependency>
24 <groupId>org.openecomp.sdc</groupId>
25 <artifactId>openecomp-sdc-datatypes-lib</artifactId>
26 <version>1.0-SNAPSHOT</version>
27 </dependency>
28 <dependency>
29 <groupId>ch.qos.logback</groupId>
30 <artifactId>logback-classic</artifactId>
31 <version>${logback.version}</version>
32 </dependency>
33 <dependency>
34 <groupId>org.openecomp.sdc</groupId>
35 <artifactId>openecomp-sdc-logging-core</artifactId>
36 <version>1.0-SNAPSHOT</version>
37 </dependency>
38 <dependency>
39 <groupId>org.openecomp.sdc</groupId>
40 <artifactId>openecomp-sdc-logging-api</artifactId>
41 <version>1.0-SNAPSHOT</version>
42 </dependency>
43 <dependency>
44 <groupId>org.openecomp.sdc</groupId>
45 <artifactId>openecomp-sdc-validation-api</artifactId>
46 <version>1.0-SNAPSHOT</version>
47 </dependency>
48 <dependency>
49 <groupId>org.openecomp.sdc</groupId>
50 <artifactId>openecomp-sdc-validation-core</artifactId>
51 <version>1.0-SNAPSHOT</version>
52 <scope>test</scope>
53 </dependency>
54 <dependency>
55 <groupId>org.openecomp.sdc</groupId>
56 <artifactId>openecomp-sdc-validation-impl</artifactId>
57 <version>1.0-SNAPSHOT</version>
58 <scope>test</scope>
59 </dependency>
60 <dependency>
61 <groupId>org.openecomp.core</groupId>
62 <artifactId>openecomp-heat-lib</artifactId>
63 <version>1.0-SNAPSHOT</version>
64 </dependency>
65 <dependency>
66 <groupId>org.testng</groupId>
67 <artifactId>testng</artifactId>
68 <version>6.9.10</version>
69 <scope>test</scope>
70 </dependency>
71 <dependency>
72 <groupId>org.openecomp.sdc</groupId>
73 <artifactId>openecomp-sdc-validation-sdk</artifactId>
74 <version>1.0-SNAPSHOT</version>
75 </dependency>
76 </dependencies>
77
78 <build>
79 <plugins>
80 <plugin>
81 <groupId>org.apache.maven.plugins</groupId>
82 <artifactId>maven-surefire-plugin</artifactId>
83 <version>2.19.1</version>
84 <configuration>
85 <useSystemClassLoader>false</useSystemClassLoader>
86 <redirectTestOutputToFile>true</redirectTestOutputToFile>
87 </configuration>
88 </plugin>
89 </plugins>
90 </build>
91
92</project>