update sdc version
[sdc.git] / openecomp-be / lib / openecomp-sdc-validation-lib / openecomp-sdc-validation-sdk / 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     <artifactId>openecomp-sdc-validation-sdk</artifactId>
7
8     <parent>
9         <groupId>org.openecomp.sdc</groupId>
10         <artifactId>openecomp-sdc-lib</artifactId>
11         <version>1.3.0-SNAPSHOT</version>
12         <relativePath>../..</relativePath>
13     </parent>
14
15     <dependencies>
16         <dependency>
17             <groupId>org.openecomp.sdc</groupId>
18             <artifactId>openecomp-sdc-logging-core</artifactId>
19             <version>${project.version}</version>
20             <scope>runtime</scope>
21         </dependency>
22         <dependency>
23             <groupId>org.testng</groupId>
24             <artifactId>testng</artifactId>
25             <version>${testng.version}</version>
26             <scope>test</scope>
27         </dependency>
28         <dependency>
29             <groupId>org.openecomp.sdc</groupId>
30             <artifactId>openecomp-sdc-validation-api</artifactId>
31             <version>${project.version}</version>
32         </dependency>
33         <dependency>
34             <groupId>org.openecomp.sdc.core</groupId>
35             <artifactId>openecomp-heat-lib</artifactId>
36             <version>${project.version}</version>
37         </dependency>
38         <dependency>
39             <groupId>commons-io</groupId>
40             <artifactId>commons-io</artifactId>
41             <version>${commons.io.version}</version>
42         </dependency>
43     </dependencies>
44
45     <build>
46         <plugins>
47             <plugin>
48                 <groupId>org.apache.maven.plugins</groupId>
49                 <artifactId>maven-jar-plugin</artifactId>
50                 <version>${mvn.jar.version}</version>
51                 <executions>
52                     <execution>
53                         <goals>
54                             <goal>test-jar</goal>
55                         </goals>
56                     </execution>
57                 </executions>
58             </plugin>
59         </plugins>
60     </build>
61
62
63 </project>