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