Merge "[1707-OS] Updated license text according to the"
[sdc.git] / openecomp-be / api / openecomp-sdc-rest-webapp / action-library-rest / action-library-rest-services / pom.xml
1 <?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>action-library-rest-services</artifactId>
8     <parent>
9         <groupId>org.openecomp.sdc.onboarding</groupId>
10         <artifactId>action-library-rest</artifactId>
11         <version>1.1.0-SNAPSHOT</version>
12     </parent>
13
14
15     <properties>
16         <errorcode.dir>${project.build.directory}/generated-sources/error-codes</errorcode.dir>
17     </properties>
18
19     <dependencies>
20         <dependency>
21             <groupId>${project.groupId}</groupId>
22             <artifactId>action-library-rest-types</artifactId>
23             <version>${project.version}</version>
24         </dependency>
25
26         <!-- Spring -->
27         <dependency>
28             <groupId>org.springframework</groupId>
29             <artifactId>spring-core</artifactId>
30             <version>${spring.framework.version}</version>
31         </dependency>
32         <dependency>
33             <groupId>org.springframework</groupId>
34             <artifactId>spring-context</artifactId>
35             <version>${spring.framework.version}</version>
36         </dependency>
37         <dependency>
38             <groupId>org.springframework</groupId>
39             <artifactId>spring-context-support</artifactId>
40             <version>${spring.framework.version}</version>
41         </dependency>
42         <dependency>
43             <groupId>org.springframework</groupId>
44             <artifactId>spring-web</artifactId>
45             <version>${spring.framework.version}</version>
46         </dependency>
47         <dependency>
48             <groupId>org.springframework</groupId>
49             <artifactId>spring-beans</artifactId>
50             <version>${spring.framework.version}</version>
51         </dependency>
52
53         <!-- CXF -->
54         <dependency>
55             <groupId>org.apache.cxf</groupId>
56             <artifactId>cxf-rt-frontend-jaxrs</artifactId>
57             <version>${cxf.version}</version>
58         </dependency>
59         <dependency>
60             <groupId>org.apache.httpcomponents</groupId>
61             <artifactId>httpclient</artifactId>
62             <version>${http.client.version}</version>
63         </dependency>
64         <dependency>
65             <groupId>org.apache.httpcomponents</groupId>
66             <artifactId>httpcore</artifactId>
67             <version>${http.client.version}</version>
68         </dependency>
69
70         <dependency>
71             <groupId>javax.ws.rs</groupId>
72             <artifactId>javax.ws.rs-api</artifactId>
73             <version>${ws.rs.version}</version>
74         </dependency>
75
76         <!-- Other Stuff-->
77         <!--dependency>
78             <groupId>cglib</groupId>
79             <artifactId>cglib-nodep</artifactId>
80             <version>${cglib.nodep.version}</version>
81             <scope>runtime</scope>
82         </dependency-->
83
84         <!-- Java Stuff -->
85         <dependency>
86             <groupId>javax.inject</groupId>
87             <artifactId>javax.inject</artifactId>
88             <version>${javax.inject.version}</version>
89             <scope>provided</scope>
90         </dependency>
91         <dependency>
92             <groupId>org.openecomp.sdc</groupId>
93             <artifactId>openecomp-sdc-action-manager</artifactId>
94             <version>${project.version}</version>
95         </dependency>
96         <dependency>
97             <groupId>org.openecomp.sdc</groupId>
98             <artifactId>openecomp-sdc-action-api</artifactId>
99             <version>${project.version}</version>
100         </dependency>
101         <dependency>
102             <groupId>org.openecomp.sdc</groupId>
103             <artifactId>openecomp-sdc-logging-api</artifactId>
104             <version>${project.version}</version>
105         </dependency>
106         <dependency>
107             <groupId>org.slf4j</groupId>
108             <artifactId>slf4j-api</artifactId>
109             <version>${slf4j.version}</version>
110         </dependency>
111         <dependency>
112             <groupId>com.sun.jersey.contribs</groupId>
113             <artifactId>jersey-multipart</artifactId>
114             <version>${jersey.multipart.version}</version>
115             <scope>provided</scope>
116         </dependency>
117     </dependencies>
118
119     <build>
120         <plugins>
121             <plugin>
122                 <groupId>org.apache.maven.plugins</groupId>
123                 <artifactId>maven-surefire-plugin</artifactId>
124                 <configuration>
125                     <includes>
126                         <include>test/core/unittest/offline/**</include>
127                     </includes>
128                     <skipTests>true</skipTests>
129                 </configuration>
130             </plugin>
131             <!-- Error codes generator plugin -->
132             <!--plugin>
133                 <groupId>org.openecomp.nfv.tools</groupId>
134                 <artifactId>error-codes-maven-plugin</artifactId>
135             </plugin-->
136         </plugins>
137     </build>
138
139
140
141
142 </project>