[SDC-29] catalog 1707 rebase commit pom fix.
[sdc.git] / openecomp-be / lib / openecomp-sdc-enrichment-lib / openecomp-sdc-enrichment-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-enrichment-core</name>
7     <artifactId>openecomp-sdc-enrichment-core</artifactId>
8
9     <parent>
10         <groupId>org.openecomp.sdc</groupId>
11         <artifactId>openecomp-sdc-lib</artifactId>
12         <version>1.1.0-SNAPSHOT</version>
13         <relativePath>../..</relativePath>
14     </parent>
15
16     <dependencies>
17         <dependency>
18             <groupId>ch.qos.logback</groupId>
19             <artifactId>logback-classic</artifactId>
20             <version>${logback.version}</version>
21         </dependency>
22         <dependency>
23             <groupId>org.testng</groupId>
24             <artifactId>testng</artifactId>
25             <scope>test</scope>
26             <version>6.8.5</version>
27             <exclusions>
28                 <exclusion>
29                     <artifactId>snakeyaml</artifactId>
30                     <groupId>org.yaml</groupId>
31                 </exclusion>
32             </exclusions>
33         </dependency>
34         <dependency>
35             <groupId>junit</groupId>
36             <artifactId>junit</artifactId>
37             <version>${junit.version}</version>
38             <scope>test</scope>
39         </dependency>
40         <dependency>
41             <groupId>org.openecomp.sdc.core</groupId>
42             <artifactId>openecomp-utilities-lib</artifactId>
43             <version>${project.version}</version>
44         </dependency>
45         <dependency>
46             <groupId>org.openecomp.sdc</groupId>
47             <artifactId>openecomp-sdc-enrichment-api</artifactId>
48             <version>${project.version}</version>
49         </dependency>
50         <dependency>
51             <groupId>org.openecomp.sdc</groupId>
52             <artifactId>openecomp-sdc-enrichment-impl</artifactId>
53             <version>${project.version}</version>
54             <!--scope>runtime</scope-->
55         </dependency>
56         <dependency>
57             <groupId>org.openecomp.sdc</groupId>
58             <artifactId>openecomp-sdc-datatypes-lib</artifactId>
59             <version>${project.version}</version>
60         </dependency>
61         <dependency>
62             <groupId>org.mockito</groupId>
63             <artifactId>mockito-all</artifactId>
64             <scope>test</scope>
65             <version>${mockito.all.version}</version>
66         </dependency>
67         <dependency>
68             <groupId>org.openecomp.sdc</groupId>
69             <artifactId>openecomp-sdc-model-impl</artifactId>
70             <version>${project.version}</version>
71             <scope>test</scope>
72         </dependency>
73         <dependency>
74             <groupId>org.openecomp.sdc.core</groupId>
75             <artifactId>openecomp-tosca-lib</artifactId>
76             <version>${project.version}</version>
77         </dependency>
78     </dependencies>
79     <build>
80         <plugins>
81             <plugin>
82                 <groupId>org.apache.maven.plugins</groupId>
83                 <artifactId>maven-surefire-plugin</artifactId>
84                 <version>${mvn.surefire.version}</version>
85                 <configuration>
86                     <useSystemClassLoader>false</useSystemClassLoader>
87                     <redirectTestOutputToFile>true</redirectTestOutputToFile>
88                 </configuration>
89             </plugin>
90         </plugins>
91     </build>
92 </project>