5ee3fbfa38aaaa18544980640b6c8e1a8e27f5d1
[so.git] / adapters / mso-workflow-message-adapter / pom.xml
1 <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.so</groupId>
6                 <artifactId>adapters</artifactId>
7                 <version>1.1.0-SNAPSHOT</version>
8         </parent>
9         <groupId>org.openecomp.so.adapters</groupId>
10         <artifactId>mso-workflow-message-adapter</artifactId>
11         <packaging>war</packaging>
12         <name>mso-workflow-message-adapter</name>
13         <description>mso workflow message adapter</description>
14
15         <build>
16                 <finalName>${project.artifactId}-${project.version}</finalName>
17                 <plugins>
18
19                         <plugin>
20                                 <artifactId>maven-war-plugin</artifactId>
21                                 <version>2.4</version>
22                                 <configuration>
23                                         <warSourceDirectory>${basedir}/WebContent</warSourceDirectory>
24                                         <failOnMissingWebXml>false</failOnMissingWebXml>
25                                 </configuration>
26                         </plugin>
27                 </plugins>
28         </build>
29
30         <dependencies>
31                 <dependency>
32                         <groupId>org.openecomp.so.adapters</groupId>
33                         <artifactId>mso-adapter-utils</artifactId>
34                         <version>${project.version}</version>
35                 </dependency>
36                 <dependency>
37                         <groupId>org.openecomp.so.adapters</groupId>
38                         <artifactId>mso-adapters-rest-interface</artifactId>
39                         <version>${project.version}</version>
40                 </dependency>
41                 <dependency>
42                         <groupId>javax</groupId>
43                         <artifactId>javaee-web-api</artifactId>
44                         <version>6.0</version>
45                         <scope>provided</scope>
46                 </dependency>
47                 <dependency>
48                         <groupId>org.jboss.spec.javax.ejb</groupId>
49                         <artifactId>jboss-ejb-api_3.1_spec</artifactId>
50                         <version>1.0.0.Final</version>
51                         <scope>provided</scope>
52                 </dependency>
53                 <dependency>
54                         <groupId>org.jboss.ejb3</groupId>
55                         <artifactId>jboss-ejb3-ext-api</artifactId>
56                         <version>1.1.1</version>
57                         <scope>provided</scope>
58                 </dependency>
59                 <dependency>
60                         <groupId>org.apache.httpcomponents</groupId>
61                         <artifactId>httpclient</artifactId>
62                         <version>4.5.2</version>
63                 </dependency>
64                 <dependency>
65                         <groupId>org.openecomp.so</groupId>
66                         <artifactId>status-control</artifactId>
67                         <version>${project.version}</version>
68                 </dependency>
69                 <!-- For UriUtils which does URL encoding according to RFC 3986 Section 2 -->
70                 <dependency>
71                         <groupId>org.springframework</groupId>
72                         <artifactId>spring-web</artifactId>
73                         <version>4.3.2.RELEASE</version>
74                 </dependency>
75         </dependencies>
76 </project>