blob: 027e470c3c17129d4ef7afcdde8f2d738d0acf44 [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>
31 <dependency>
32 <groupId>org.codehaus.jackson</groupId>
33 <artifactId>jackson-mapper-asl</artifactId>
34 <version>1.9.13</version>
35 </dependency>
36 <dependency>
37 <groupId>org.mockito</groupId>
38 <artifactId>mockito-all</artifactId>
39 <version>1.10.19</version>
40 <scope>test</scope>
41 </dependency>
42 <dependency>
43 <groupId>org.jmockit</groupId>
44 <artifactId>jmockit</artifactId>
45 <version>1.8</version>
46 <scope>test</scope>
47 </dependency>
48 <dependency>
Arthur Martella22e015f2018-02-22 14:24:40 -050049 <groupId>org.onap.so</groupId>
Seshu-Kumar-Mcce429a2017-10-06 20:31:35 +080050 <artifactId>mso-catalog-db</artifactId>
51 <version>${project.version}</version>
52 </dependency>
53
54 <dependency>
55 <groupId>org.jboss.spec.javax.ejb</groupId>
56 <artifactId>jboss-ejb-api_3.2_spec</artifactId>
57 <version>1.0.0.Final</version>
58 <scope>provided</scope>
59 </dependency>
60 <dependency>
61 <groupId>org.jboss.ejb3</groupId>
62 <artifactId>jboss-ejb3-ext-api</artifactId>
63 <version>2.2.0.Final</version>
64 <scope>provided</scope>
65 </dependency>
66
67 <dependency>
68 <groupId>javax.servlet</groupId>
69 <artifactId>javax.servlet-api</artifactId>
70 <version>3.1.0</version>
71 <scope>test</scope>
72 </dependency>
73
74 <!-- <dependency>
75 <groupId>org.openecomp.sdc.sdc-distribution-client</groupId>
76 <artifactId>sdc-distribution-client</artifactId>
77 <version>1.1.16</version>
78 <exclusions>
79 <exclusion>
80 <groupId>org.slf4j</groupId>
81 <artifactId>slf4j-log4j12</artifactId>
82 </exclusion>
83 </exclusions>
84 </dependency> -->
85
86 <dependency>
87 <groupId>org.apache.httpcomponents</groupId>
88 <artifactId>httpclient</artifactId>
89 <version>4.4.1</version>
90 <scope>compile</scope>
91 <exclusions>
92 <exclusion>
93 <groupId>org.apache.httpcomponents</groupId>
94 <artifactId>httpclient</artifactId>
95 </exclusion>
96 </exclusions>
97 </dependency>
98
99 <dependency>
100 <groupId>org.openecomp.sdc.sdc-distribution-client</groupId>
101 <artifactId>sdc-distribution-client</artifactId>
seshukm04a4cc52017-10-31 14:06:44 +0530102 <version>1.1.32</version>
Seshu-Kumar-Mcce429a2017-10-06 20:31:35 +0800103 <exclusions>
104 <exclusion>
105 <groupId>org.slf4j</groupId>
106 <artifactId>slf4j-log4j12</artifactId>
107 </exclusion>
108 </exclusions>
109 </dependency>
110
111
112 <dependency>
113 <groupId>org.openecomp.sdc.sdc-tosca</groupId>
114 <artifactId>sdc-tosca</artifactId>
seshukm6c60c2e2017-10-31 17:46:43 +0530115 <version>1.1.32</version>
Seshu-Kumar-Mcce429a2017-10-06 20:31:35 +0800116 </dependency>
117
118
119 <dependency>
120 <groupId>org.apache.httpcomponents</groupId>
121 <artifactId>httpmime</artifactId>
122 <version>4.5</version>
123 </dependency>
124
125 <dependency>
Arthur Martella22e015f2018-02-22 14:24:40 -0500126 <groupId>org.onap.so</groupId>
Seshu-Kumar-Mcce429a2017-10-06 20:31:35 +0800127 <artifactId>common</artifactId>
128 <version>${project.version}</version>
129 </dependency>
130
131 <dependency>
132 <groupId>org.yaml</groupId>
133 <artifactId>snakeyaml</artifactId>
134 <version>1.15</version>
135 </dependency>
136
137 <dependency>
138 <groupId>javax</groupId>
139 <artifactId>javaee-web-api</artifactId>
140 <version>6.0</version>
141 <scope>provided</scope>
142 </dependency>
143 <dependency>
Arthur Martella22e015f2018-02-22 14:24:40 -0500144 <groupId>org.onap.so</groupId>
Seshu-Kumar-Mcce429a2017-10-06 20:31:35 +0800145 <artifactId>status-control</artifactId>
146 <version>${project.version}</version>
147 </dependency>
148 <dependency>
149 <groupId>commons-io</groupId>
150 <artifactId>commons-io</artifactId>
151 </dependency>
152 </dependencies>
153
154</project>