e9a25fe0fd75d069a8e70887e629f89a276ae385
[sdc.git] / openecomp-be / lib / openecomp-tosca-converter-lib / openecomp-tosca-converter-core / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <project xmlns="http://maven.apache.org/POM/4.0.0"
3   xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
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   <dependencies>
7     <dependency>
8       <groupId>org.openecomp.sdc</groupId>
9       <artifactId>openecomp-tosca-converter-api</artifactId>
10       <version>${project.version}</version>
11     </dependency>
12     <dependency>
13       <groupId>org.openecomp.sdc</groupId>
14       <artifactId>openecomp-sdc-translator-core</artifactId>
15       <version>${project.version}</version>
16     </dependency>
17     <dependency>
18       <groupId>org.openecomp.sdc.be</groupId>
19       <artifactId>common-be-tests-utils</artifactId>
20       <version>${project.version}</version>
21       <scope>test</scope>
22       <exclusions>
23         <exclusion>
24           <groupId>org.springframework</groupId>
25           <artifactId>spring-core</artifactId>
26         </exclusion>
27         <exclusion>
28           <groupId>org.eclipse.jetty</groupId>
29           <artifactId>jetty-server</artifactId>
30         </exclusion>
31         <exclusion>
32           <groupId>org.eclipse.jetty</groupId>
33           <artifactId>jetty-servlet</artifactId>
34         </exclusion>
35       </exclusions>
36     </dependency>
37     <dependency>
38       <groupId>org.hamcrest</groupId>
39       <artifactId>hamcrest</artifactId>
40       <version>${hamcrest.version}</version>
41       <scope>test</scope>
42     </dependency>
43     <dependency>
44       <groupId>org.hamcrest</groupId>
45       <artifactId>hamcrest-library</artifactId>
46       <version>${hamcrest.version}</version>
47       <scope>test</scope>
48     </dependency>
49     <dependency>
50       <groupId>javax.validation</groupId>
51       <artifactId>validation-api</artifactId>
52       <version>${javax.validation.version}</version>
53     </dependency>
54   </dependencies>
55
56   <parent>
57     <groupId>org.openecomp.sdc</groupId>
58     <artifactId>openecomp-tosca-converter-lib</artifactId>
59     <version>1.13.5-SNAPSHOT</version>
60   </parent>
61
62   <artifactId>openecomp-tosca-converter-core</artifactId>
63   <build>
64     <testResources>
65       <testResource>
66         <directory>src/test/resources</directory>
67         <excludes>
68         <exclude>**/*.csar</exclude>
69         </excludes>
70                 <filtering>true</filtering>
71       </testResource>
72       <testResource>
73         <directory>src/test/resources/csar</directory>
74         <includes>
75           <include>**.csar</include>
76         </includes>
77         <filtering>false</filtering>
78         <targetPath>csar</targetPath>
79       </testResource>
80     </testResources>
81   </build>
82 </project>