blob: 75665bc01d200e695b9db221d881ab91c21af80b [file] [log] [blame]
ChrisC025301d2017-01-31 11:40:03 +01001<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>
5 <groupId>org.openecomp</groupId>
6 <artifactId>mso</artifactId>
7 <version>0.0.4-SNAPSHOT</version>
8 </parent>
9
10 <groupId>org.openecomp.mso</groupId>
11 <artifactId>asdc-controller</artifactId>
12 <name>asdc-controller</name>
13 <description>ASDC CLient and Controller</description>
14 <packaging>war</packaging>
15
16 <build>
17 <finalName>${project.artifactId}-${project.version}</finalName>
18 <plugins>
19 <plugin>
20 <artifactId>maven-war-plugin</artifactId>
21 <version>2.3</version>
22 <configuration>
23 <warSourceDirectory>WebContent</warSourceDirectory>
24 <failOnMissingWebXml>false</failOnMissingWebXml>
25 <attachClasses>true</attachClasses>
26 </configuration>
27 </plugin>
28 </plugins>
29 </build>
30
31 <dependencies>
32 <dependency>
33 <groupId>org.mockito</groupId>
34 <artifactId>mockito-all</artifactId>
35 <version>1.10.19</version>
36 <scope>test</scope>
37 </dependency>
38 <dependency>
39 <groupId>org.openecomp.mso</groupId>
40 <artifactId>mso-catalog-db</artifactId>
41 <version>${project.version}</version>
42 </dependency>
43
44 <dependency>
45 <groupId>org.jboss.spec.javax.ejb</groupId>
46 <artifactId>jboss-ejb-api_3.2_spec</artifactId>
47 <version>1.0.0.Final</version>
48 <scope>provided</scope>
49 </dependency>
50 <dependency>
51 <groupId>org.jboss.ejb3</groupId>
52 <artifactId>jboss-ejb3-ext-api</artifactId>
53 <version>2.2.0.Final</version>
54 <scope>provided</scope>
55 </dependency>
56
57 <dependency>
58 <groupId>javax.servlet</groupId>
59 <artifactId>javax.servlet-api</artifactId>
60 <version>3.1.0</version>
61 <scope>test</scope>
62 </dependency>
63
64 <dependency>
65 <groupId>org.openecomp.sdc</groupId>
66 <artifactId>sdc-distribution-client</artifactId>
ChrisCe5cd0e12017-03-06 06:46:42 -080067 <version>1.0.0</version>
ChrisC025301d2017-01-31 11:40:03 +010068 <exclusions>
69 <exclusion> <!-- declare the exclusion here -->
70 <groupId>org.slf4j</groupId>
71 <artifactId>slf4j-log4j12</artifactId>
72 </exclusion>
73 </exclusions>
74 </dependency>
75
76 <dependency>
77 <groupId>org.apache.httpcomponents</groupId>
78 <artifactId>httpmime</artifactId>
79 <version>4.5</version>
80 </dependency>
81
82 <dependency>
83 <groupId>org.openecomp.mso</groupId>
84 <artifactId>common</artifactId>
85 <version>${project.version}</version>
86 </dependency>
87
88 <dependency>
89 <groupId>org.yaml</groupId>
90 <artifactId>snakeyaml</artifactId>
91 <version>1.15</version>
92 </dependency>
93
94 <dependency>
95 <groupId>javax</groupId>
96 <artifactId>javaee-web-api</artifactId>
97 <version>6.0</version>
98 <scope>provided</scope>
99 </dependency>
100 <dependency>
101 <groupId>org.openecomp.mso</groupId>
102 <artifactId>status-control</artifactId>
103 <version>${project.version}</version>
104 </dependency>
105 <dependency>
106 <groupId>commons-io</groupId>
107 <artifactId>commons-io</artifactId>
108 </dependency>
109 </dependencies>
110
111</project>