cb0358e0202df387a5c1c062021535d5529fdc55
[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>2.0.1-SNAPSHOT</version>
9         <relativePath/>
10     </parent>
11
12     <groupId>org.onap.ccsdk.sli.adaptors</groupId>
13     <artifactId>aai-service-provider</artifactId>
14     <version>1.0.1-SNAPSHOT</version>
15     <packaging>bundle</packaging>
16
17     <name>ccsdk-sli-adaptors :: aai-service :: ${project.artifactId}</name>
18
19     <properties>
20         <ccsdk.sli.core.version>${project.version}</ccsdk.sli.core.version>
21         <ccsdk.sli.adaptors.version>${project.version}</ccsdk.sli.adaptors.version>
22     </properties>
23
24     <dependencyManagement>
25         <dependencies>
26             <dependency>
27                 <groupId>org.onap.ccsdk.sli.core</groupId>
28                 <artifactId>sli-core-artifacts</artifactId>
29                 <version>${ccsdk.sli.core.version}</version>
30                 <type>pom</type>
31                 <scope>import</scope>
32             </dependency>
33         </dependencies>
34     </dependencyManagement>
35     <dependencies>
36         <dependency>
37             <groupId>junit</groupId>
38             <artifactId>junit</artifactId>
39             <scope>test</scope>
40         </dependency>
41         <dependency>
42             <groupId>org.mockito</groupId>
43             <artifactId>mockito-core</artifactId>
44             <scope>test</scope>
45         </dependency>
46         <dependency>
47             <groupId>org.onap.ccsdk.sli.core</groupId>
48             <artifactId>sli-common</artifactId>
49             <scope>provided</scope>
50         </dependency>
51         <!-- let filters project deliver this to the karaf container -->
52         <dependency>
53             <groupId>org.onap.logging-analytics</groupId>
54             <artifactId>logging-filter-base</artifactId>
55             <scope>provided</scope>
56          </dependency>
57         <dependency>
58             <groupId>org.osgi</groupId>
59             <artifactId>org.osgi.core</artifactId>
60             <scope>provided</scope>
61         </dependency>
62         <dependency>
63             <groupId>org.slf4j</groupId>
64             <artifactId>slf4j-api</artifactId>
65         </dependency>
66         <dependency>
67             <groupId>javax.ws.rs</groupId>
68             <artifactId>javax.ws.rs-api</artifactId>
69         </dependency>
70         <dependency>
71             <groupId>com.fasterxml.jackson.core</groupId>
72             <artifactId>jackson-databind</artifactId>
73         </dependency>
74         <dependency>
75             <groupId>com.fasterxml.jackson.module</groupId>
76             <artifactId>jackson-module-jaxb-annotations</artifactId>
77         </dependency>
78         <dependency>
79             <groupId>com.fasterxml.jackson.core</groupId>
80             <artifactId>jackson-annotations</artifactId>
81         </dependency>
82         <dependency>
83             <groupId>com.fasterxml.jackson.core</groupId>
84             <artifactId>jackson-core</artifactId>
85         </dependency>
86         <dependency>
87             <groupId>commons-lang</groupId>
88             <artifactId>commons-lang</artifactId>
89         </dependency>
90         <dependency>
91             <groupId>org.jsoup</groupId>
92             <artifactId>jsoup</artifactId>
93             <scope>test</scope>
94         </dependency>
95         <dependency>
96             <groupId>org.springframework</groupId>
97             <artifactId>spring-core</artifactId>
98             <scope>test</scope>
99         </dependency>
100         <dependency>
101             <groupId>org.apache.httpcomponents</groupId>
102             <artifactId>httpclient</artifactId>
103         </dependency>
104         <dependency>
105             <groupId>javax.xml.bind</groupId>
106             <artifactId>jaxb-api</artifactId> 
107         </dependency>
108     </dependencies>
109
110     <build>
111         <plugins>
112             <plugin>
113                 <groupId>org.jvnet.jaxb2.maven2</groupId>
114                 <artifactId>maven-jaxb2-plugin</artifactId>
115                 <version>0.14.0</version>
116                 <executions>
117                     <execution>
118                         <id>gen-xjc</id>
119                         <goals>
120                             <goal>generate</goal>
121                         </goals>
122                     </execution>
123                 </executions>
124                 <configuration>
125                     <schemaDirectory>${project.basedir}/src/main/resources</schemaDirectory>
126                     <schemaIncludes>
127                         <value>aai_schema_v19.xsd</value>
128                     </schemaIncludes>
129                     <bindingIncludes>
130                         <include>aai-schema-bindings.xjb</include>
131                     </bindingIncludes>
132                     <generateDirectory>${project.build.directory}/generated-sources/main/java</generateDirectory>
133                     <generatePackage>org.onap.aai.inventory.v19</generatePackage>
134                     <extension>true</extension>
135                     <args>
136                         <arg>-Xannotate</arg>
137                     </args>
138                     <plugins>
139                         <plugin>
140                             <groupId>org.jvnet.jaxb2_commons</groupId>
141                             <artifactId>jaxb2-basics-annotate</artifactId>
142                             <version>0.6.5</version>
143                         </plugin>
144                     </plugins>
145                 </configuration>
146             </plugin>
147         </plugins>
148     </build>
149 </project>