blob: 839a192ec5e851a3071e5f5ff894744022f650b4 [file] [log] [blame]
AviZi280f8012017-06-09 02:39:56 +03001<?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
7 <artifactId>openecomp-sdc-vendor-software-product-manager</artifactId>
8 <version>1.0-SNAPSHOT</version>
9 <dependencies>
10 <dependency>
11 <groupId>org.openecomp.core</groupId>
12 <artifactId>openecomp-utilities-lib</artifactId>
13 <version>1.0-SNAPSHOT</version>
14 </dependency>
15 <dependency>
16 <groupId>org.openecomp.core</groupId>
17 <artifactId>openecomp-nosqldb-core</artifactId>
18 <version>1.0-SNAPSHOT</version>
19 </dependency>
20 <dependency>
21 <groupId>org.openecomp.sdc</groupId>
22 <artifactId>openecomp-sdc-vendor-software-product-core</artifactId>
23 <version>1.0-SNAPSHOT</version>
24 </dependency>
25 <dependency>
26 <groupId>org.openecomp.core</groupId>
27 <artifactId>openecomp-heat-lib</artifactId>
28 <version>${project.version}</version>
29 </dependency>
30 <dependency>
31 <groupId>org.openecomp.core</groupId>
32 <artifactId>openecomp-tosca-lib</artifactId>
33 <version>${project.version}</version>
34 </dependency>
35 <dependency>
36 <groupId>org.testng</groupId>
37 <artifactId>testng</artifactId>
38 <version>6.9.10</version>
39 <scope>test</scope>
40 </dependency>
41 <dependency>
42 <groupId>junit</groupId>
43 <artifactId>junit</artifactId>
44 <version>RELEASE</version>
45 <scope>test</scope>
46 </dependency>
47 <dependency>
48 <groupId>org.mockito</groupId>
49 <artifactId>mockito-all</artifactId>
50 <version>1.10.19</version>
51 <scope>test</scope>
52 </dependency>
53 <dependency>
54 <groupId>org.openecomp.sdc</groupId>
55 <artifactId>openecomp-sdc-translator-core</artifactId>
56 <version>1.0-SNAPSHOT</version>
57 </dependency>
58 <dependency>
59 <groupId>com.fasterxml.jackson.dataformat</groupId>
60 <artifactId>jackson-dataformat-xml</artifactId>
61 <version>2.7.4</version>
62 </dependency>
63 <dependency>
64 <groupId>org.codehaus.woodstox</groupId>
65 <artifactId>woodstox-core-asl</artifactId>
66 <version>4.4.1</version>
67 </dependency>
68
69 <dependency>
70 <groupId>org.openecomp.sdc</groupId>
71 <artifactId>openecomp-sdc-vendor-license-core</artifactId>
72 <version>1.0-SNAPSHOT</version>
73 </dependency>
74 <dependency>
75 <groupId>org.openecomp.sdc</groupId>
76 <artifactId>openecomp-sdc-enrichment-core</artifactId>
77 <version>1.0-SNAPSHOT</version>
78 </dependency>
79 <dependency>
80 <groupId>org.openecomp.sdc</groupId>
81 <artifactId>openecomp-sdc-validation-api</artifactId>
82 <version>1.0-SNAPSHOT</version>
83 </dependency>
84 <dependency>
85 <groupId>org.openecomp.sdc</groupId>
86 <artifactId>openecomp-sdc-validation-impl</artifactId>
87 <version>1.0-SNAPSHOT</version>
88 <scope>runtime</scope>
89 </dependency>
90 <dependency>
91 <groupId>org.openecomp.sdc</groupId>
92 <artifactId>openecomp-sdc-enrichment-impl</artifactId>
93 <version>1.0-SNAPSHOT</version>
94 </dependency>
95 <dependency>
96 <groupId>commons-io</groupId>
97 <artifactId>commons-io</artifactId>
98 <version>${commons.io.version}</version>
99 </dependency>
100 <dependency>
101 <groupId>org.openecomp.sdc</groupId>
102 <artifactId>openecomp-sdc-model-impl</artifactId>
103 <version>1.0-SNAPSHOT</version>
104 </dependency>
105 <dependency>
106 <groupId>org.openecomp.sdc</groupId>
107 <artifactId>openecomp-sdc-validation-manager</artifactId>
108 <version>1.0-SNAPSHOT</version>
109 </dependency>
110 <dependency>
111 <groupId>org.openecomp.sdc</groupId>
112 <artifactId>openecomp-sdc-logging-core</artifactId>
113 <version>1.0-SNAPSHOT</version>
114 </dependency>
115 <dependency>
116 <groupId>org.openecomp.sdc</groupId>
117 <artifactId>openecomp-sdc-logging-api</artifactId>
118 <version>1.0-SNAPSHOT</version>
119 </dependency>
120 <dependency>
121 <groupId>org.openecomp.sdc</groupId>
122 <artifactId>openecomp-sdc-healing-core</artifactId>
123 <version>1.0-SNAPSHOT</version>
124 <scope>runtime</scope>
125 </dependency>
126 <dependency>
127 <groupId>org.openecomp.sdc</groupId>
128 <artifactId>openecomp-sdc-healing-impl</artifactId>
129 <version>1.0-SNAPSHOT</version>
130 <scope>runtime</scope>
131 </dependency>
132 <dependency>
133 <groupId>org.openecomp.sdc</groupId>
134 <artifactId>openecomp-sdc-healing-api</artifactId>
135 <version>1.0-SNAPSHOT</version>
136 </dependency>
137 </dependencies>
138 <build>
139 <plugins>
140 <plugin>
141 <groupId>org.apache.maven.plugins</groupId>
142 <artifactId>maven-surefire-plugin</artifactId>
143 <version>2.19.1</version>
144 <configuration>
145 <useSystemClassLoader>false</useSystemClassLoader>
146 <redirectTestOutputToFile>true</redirectTestOutputToFile>
147 </configuration>
148 </plugin>
149 </plugins>
150 </build>
151
152 <parent>
153 <groupId>org.openecomp.sdc</groupId>
154 <artifactId>backend</artifactId>
155 <version>1.0-SNAPSHOT</version>
156 </parent>
157
158
159</project>