blob: 75896d28bc5f772611a7a88ee04d0d8983345ca6 [file] [log] [blame]
Seshu-Kumar-Mcce429a2017-10-06 20:31:35 +08001<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3 <modelVersion>4.0.0</modelVersion>
4 <parent>
Arthur Martella22e015f2018-02-22 14:24:40 -05005 <groupId>org.onap.so</groupId>
Seshu-Kumar-Mcce429a2017-10-06 20:31:35 +08006 <artifactId>so</artifactId>
Jessica Wagantall777f6372017-11-20 11:10:28 -08007 <version>1.2.0-SNAPSHOT</version>
Seshu-Kumar-Mcce429a2017-10-06 20:31:35 +08008 </parent>
9
Seshu-Kumar-Mcce429a2017-10-06 20:31:35 +080010 <artifactId>asdc-controller</artifactId>
11 <name>asdc-controller</name>
12 <description>ASDC CLient and Controller</description>
13 <packaging>war</packaging>
14
15 <build>
16 <finalName>${project.artifactId}-${project.version}</finalName>
17 <plugins>
18 <plugin>
19 <artifactId>maven-war-plugin</artifactId>
20 <version>2.4</version>
21 <configuration>
22 <warSourceDirectory>WebContent</warSourceDirectory>
23 <failOnMissingWebXml>false</failOnMissingWebXml>
24 <attachClasses>true</attachClasses>
25 </configuration>
26 </plugin>
27 </plugins>
28 </build>
29
30 <dependencies>
Seshu-Kumar-Mcce429a2017-10-06 20:31:35 +080031 <dependency>
32 <groupId>org.mockito</groupId>
33 <artifactId>mockito-all</artifactId>
34 <version>1.10.19</version>
35 <scope>test</scope>
36 </dependency>
37 <dependency>
38 <groupId>org.jmockit</groupId>
39 <artifactId>jmockit</artifactId>
40 <version>1.8</version>
41 <scope>test</scope>
42 </dependency>
43 <dependency>
Arthur Martella22e015f2018-02-22 14:24:40 -050044 <groupId>org.onap.so</groupId>
Seshu-Kumar-Mcce429a2017-10-06 20:31:35 +080045 <artifactId>mso-catalog-db</artifactId>
46 <version>${project.version}</version>
47 </dependency>
48
49 <dependency>
50 <groupId>org.jboss.spec.javax.ejb</groupId>
51 <artifactId>jboss-ejb-api_3.2_spec</artifactId>
52 <version>1.0.0.Final</version>
53 <scope>provided</scope>
54 </dependency>
55 <dependency>
56 <groupId>org.jboss.ejb3</groupId>
57 <artifactId>jboss-ejb3-ext-api</artifactId>
58 <version>2.2.0.Final</version>
59 <scope>provided</scope>
60 </dependency>
61
62 <dependency>
63 <groupId>javax.servlet</groupId>
64 <artifactId>javax.servlet-api</artifactId>
65 <version>3.1.0</version>
66 <scope>test</scope>
67 </dependency>
68
69 <!-- <dependency>
70 <groupId>org.openecomp.sdc.sdc-distribution-client</groupId>
71 <artifactId>sdc-distribution-client</artifactId>
72 <version>1.1.16</version>
73 <exclusions>
74 <exclusion>
75 <groupId>org.slf4j</groupId>
76 <artifactId>slf4j-log4j12</artifactId>
77 </exclusion>
78 </exclusions>
79 </dependency> -->
80
81 <dependency>
82 <groupId>org.apache.httpcomponents</groupId>
83 <artifactId>httpclient</artifactId>
84 <version>4.4.1</version>
85 <scope>compile</scope>
86 <exclusions>
87 <exclusion>
88 <groupId>org.apache.httpcomponents</groupId>
89 <artifactId>httpclient</artifactId>
90 </exclusion>
91 </exclusions>
92 </dependency>
93
94 <dependency>
95 <groupId>org.openecomp.sdc.sdc-distribution-client</groupId>
96 <artifactId>sdc-distribution-client</artifactId>
Rob Daugherty38f72072018-03-14 02:07:32 -040097 <version>1.2.2</version>
Seshu-Kumar-Mcce429a2017-10-06 20:31:35 +080098 <exclusions>
99 <exclusion>
100 <groupId>org.slf4j</groupId>
101 <artifactId>slf4j-log4j12</artifactId>
102 </exclusion>
103 </exclusions>
104 </dependency>
105
106
107 <dependency>
108 <groupId>org.openecomp.sdc.sdc-tosca</groupId>
109 <artifactId>sdc-tosca</artifactId>
Rob Daugherty38f72072018-03-14 02:07:32 -0400110 <version>1.2.3</version>
Seshu-Kumar-Mcce429a2017-10-06 20:31:35 +0800111 </dependency>
112
113
114 <dependency>
115 <groupId>org.apache.httpcomponents</groupId>
116 <artifactId>httpmime</artifactId>
117 <version>4.5</version>
118 </dependency>
119
120 <dependency>
Arthur Martella22e015f2018-02-22 14:24:40 -0500121 <groupId>org.onap.so</groupId>
Seshu-Kumar-Mcce429a2017-10-06 20:31:35 +0800122 <artifactId>common</artifactId>
123 <version>${project.version}</version>
124 </dependency>
125
126 <dependency>
127 <groupId>org.yaml</groupId>
128 <artifactId>snakeyaml</artifactId>
129 <version>1.15</version>
130 </dependency>
131
132 <dependency>
133 <groupId>javax</groupId>
134 <artifactId>javaee-web-api</artifactId>
135 <version>6.0</version>
136 <scope>provided</scope>
137 </dependency>
138 <dependency>
Arthur Martella22e015f2018-02-22 14:24:40 -0500139 <groupId>org.onap.so</groupId>
Seshu-Kumar-Mcce429a2017-10-06 20:31:35 +0800140 <artifactId>status-control</artifactId>
141 <version>${project.version}</version>
142 </dependency>
143 <dependency>
144 <groupId>commons-io</groupId>
145 <artifactId>commons-io</artifactId>
146 </dependency>
Rob Daugherty38f72072018-03-14 02:07:32 -0400147 <dependency>
148 <groupId>org.onap.so</groupId>
149 <artifactId>mso-requests-db</artifactId>
150 <version>${project.version}</version>
151 </dependency>
Seshu-Kumar-Mcce429a2017-10-06 20:31:35 +0800152 </dependencies>
153
154</project>