Release ccsdk/sli/adaptors
[ccsdk/sli/adaptors.git] / aai-service / provider / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 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
5     <parent>
6         <groupId>org.onap.ccsdk.parent</groupId>
7         <artifactId>binding-parent</artifactId>
8         <version>1.4.0</version>
9         <relativePath/>
10     </parent>
11
12     <groupId>org.onap.ccsdk.sli.adaptors</groupId>
13     <artifactId>aai-service-provider</artifactId>
14     <version>0.6.0</version>
15     <packaging>bundle</packaging>
16
17     <name>ccsdk-sli-adaptors :: aai-service :: ${project.artifactId}</name>
18     <url>http://maven.apache.org</url>
19
20     <properties>
21         <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
22         <ccsdk.sli.adaptors.version>${project.version}</ccsdk.sli.adaptors.version>
23     </properties>
24     
25     <dependencyManagement>
26         <dependencies>
27                 <dependency>
28                         <groupId>org.onap.ccsdk.sli.core</groupId>
29                         <artifactId>sli-core-artifacts</artifactId>
30                         <version>${ccsdk.sli.core.version}</version>
31                         <type>pom</type>
32                         <scope>import</scope>
33                 </dependency>
34         </dependencies>
35     </dependencyManagement>
36
37     <dependencies>
38         <dependency>
39             <groupId>junit</groupId>
40             <artifactId>junit</artifactId>
41             <scope>test</scope>
42         </dependency>
43         <dependency>
44             <groupId>org.mockito</groupId>
45             <artifactId>mockito-core</artifactId>
46             <scope>test</scope>
47         </dependency>
48         <dependency>
49             <groupId>org.onap.ccsdk.sli.core</groupId>
50             <artifactId>sli-common</artifactId>
51             <scope>compile</scope>
52         </dependency>
53         <dependency>
54             <groupId>org.onap.ccsdk.sli.core</groupId>
55             <artifactId>sli-provider</artifactId>
56             <scope>compile</scope>
57         </dependency>
58         <dependency>
59             <groupId>org.onap.ccsdk.sli.core</groupId>
60             <artifactId>utils-provider</artifactId>
61             <version>${ccsdk.sli.core.version}</version>
62         </dependency>
63         <dependency>
64             <groupId>org.osgi</groupId>
65             <artifactId>org.osgi.core</artifactId>
66             <scope>provided</scope>
67         </dependency>
68         <dependency>
69             <groupId>org.slf4j</groupId>
70             <artifactId>slf4j-api</artifactId>
71         </dependency>
72         <dependency>
73             <groupId>org.slf4j</groupId>
74             <artifactId>jcl-over-slf4j</artifactId>
75         </dependency>
76         <dependency>
77             <groupId>org.glassfish.jersey.core</groupId>
78             <artifactId>jersey-client</artifactId>
79         </dependency>
80         <dependency>
81             <groupId>org.glassfish.jersey.core</groupId>
82             <artifactId>jersey-common</artifactId>
83         </dependency>
84         <dependency>
85             <groupId>org.apache.httpcomponents</groupId>
86             <artifactId>httpcore</artifactId>
87         </dependency>
88         <dependency>
89             <groupId>org.apache.httpcomponents</groupId>
90             <artifactId>httpclient</artifactId>
91         </dependency>
92         <dependency>
93             <groupId>com.fasterxml.jackson.core</groupId>
94             <artifactId>jackson-databind</artifactId>
95         </dependency>
96         <dependency>
97             <groupId>com.fasterxml.jackson.module</groupId>
98             <artifactId>jackson-module-jaxb-annotations</artifactId>
99         </dependency>
100         <dependency>
101             <groupId>com.fasterxml.jackson.core</groupId>
102             <artifactId>jackson-annotations</artifactId>
103         </dependency>
104         <dependency>
105             <groupId>com.fasterxml.jackson.core</groupId>
106             <artifactId>jackson-core</artifactId>
107         </dependency>
108         <dependency>
109             <groupId>commons-lang</groupId>
110             <artifactId>commons-lang</artifactId>
111         </dependency>
112
113         <dependency>
114             <groupId>org.jsoup</groupId>
115             <artifactId>jsoup</artifactId>
116             <scope>test</scope>
117         </dependency>
118         <dependency>
119             <groupId>org.springframework</groupId>
120             <artifactId>spring-core</artifactId>
121             <scope>test</scope>
122         </dependency>
123     </dependencies>
124
125     <build>
126         <plugins>
127             <plugin>
128                 <groupId>org.jvnet.jaxb2.maven2</groupId>
129                 <artifactId>maven-jaxb2-plugin</artifactId>
130                 <version>0.13.1</version>
131                 <executions>
132                     <execution>
133                         <id>gen-xjc</id>
134                         <goals>
135                             <goal>generate</goal>
136                         </goals>
137                     </execution>
138                 </executions>
139                 <configuration>
140                     <schemaDirectory>${project.basedir}/src/main/resources</schemaDirectory>
141                     <schemaIncludes>
142                         <value>aai_schema_v16.xsd</value>
143                     </schemaIncludes>
144                     <bindingIncludes>
145                         <include>aai-schema-bindings.xjb</include>
146                     </bindingIncludes>
147                     <generateDirectory>${project.build.directory}/generated-sources/main/java</generateDirectory>
148                     <generatePackage>org.onap.aai.inventory.v16</generatePackage>
149                     <extension>true</extension>
150                     <args>
151                         <arg>-Xannotate</arg>
152                     </args>
153                     <plugins>
154                         <plugin>
155                             <groupId>org.jvnet.jaxb2_commons</groupId>
156                             <artifactId>jaxb2-basics-annotate</artifactId>
157                             <version>0.6.4</version>
158                         </plugin>
159                     </plugins>
160                 </configuration>
161             </plugin>
162         </plugins>
163     </build>
164 </project>