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