blob: 6aee4a21beb36bf53d7185dab7a0b9588629bb53 [file] [log] [blame]
Dan Timoney5363b272017-07-18 20:23:07 -04001<?xml version="1.0" encoding="UTF-8"?>
Timoney, Dan (dt5972)21ec6552019-01-08 12:14:12 -05002<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>
Dan Timoney1dc3bcf2018-02-15 16:13:28 -05004
Timoney, Dan (dt5972)21ec6552019-01-08 12:14:12 -05005 <parent>
6 <groupId>org.onap.ccsdk.parent</groupId>
7 <artifactId>binding-parent</artifactId>
Dan Timoney2173e3e2020-11-25 14:51:48 -05008 <version>2.1.0</version>
Timoney, Dan (dt5972)21ec6552019-01-08 12:14:12 -05009 <relativePath/>
10 </parent>
Dan Timoney1dc3bcf2018-02-15 16:13:28 -050011
Timoney, Dan (dt5972)21ec6552019-01-08 12:14:12 -050012 <groupId>org.onap.ccsdk.sli.adaptors</groupId>
13 <artifactId>aai-service-provider</artifactId>
Dan Timoney8f2fcda2020-12-02 07:48:49 -050014 <version>1.2.0-SNAPSHOT</version>
Timoney, Dan (dt5972)21ec6552019-01-08 12:14:12 -050015 <packaging>bundle</packaging>
Dan Timoney1dc3bcf2018-02-15 16:13:28 -050016
Timoney, Dan (dt5972)21ec6552019-01-08 12:14:12 -050017 <name>ccsdk-sli-adaptors :: aai-service :: ${project.artifactId}</name>
Dan Timoney1dc3bcf2018-02-15 16:13:28 -050018
Timoney, Dan (dt5972)f200a722019-01-03 16:24:22 -050019 <dependencyManagement>
Michael Dürre22649c92020-08-19 10:55:45 +020020 <dependencies>
21 <dependency>
22 <groupId>org.onap.ccsdk.sli.core</groupId>
23 <artifactId>sli-core-artifacts</artifactId>
Dan Timoneybe5662d2020-12-07 12:23:05 -050024 <version>${project.version}</version>
Michael Dürre22649c92020-08-19 10:55:45 +020025 <type>pom</type>
26 <scope>import</scope>
27 </dependency>
28 </dependencies>
Timoney, Dan (dt5972)f200a722019-01-03 16:24:22 -050029 </dependencyManagement>
Timoney, Dan (dt5972)21ec6552019-01-08 12:14:12 -050030 <dependencies>
31 <dependency>
32 <groupId>junit</groupId>
33 <artifactId>junit</artifactId>
34 <scope>test</scope>
35 </dependency>
36 <dependency>
37 <groupId>org.mockito</groupId>
38 <artifactId>mockito-core</artifactId>
39 <scope>test</scope>
40 </dependency>
41 <dependency>
42 <groupId>org.onap.ccsdk.sli.core</groupId>
43 <artifactId>sli-common</artifactId>
Smokowski, Kevin (ks6305)441e0ff2019-10-18 19:22:00 +000044 <scope>provided</scope>
Timoney, Dan (dt5972)21ec6552019-01-08 12:14:12 -050045 </dependency>
Smokowski, Kevin (ks6305)441e0ff2019-10-18 19:22:00 +000046 <!-- let filters project deliver this to the karaf container -->
Timoney, Dan (dt5972)21ec6552019-01-08 12:14:12 -050047 <dependency>
Timoney, Dan (dt5972)91258ae2019-10-10 14:05:46 -040048 <groupId>org.onap.logging-analytics</groupId>
49 <artifactId>logging-filter-base</artifactId>
Dan Timoneya612cdd2020-03-05 11:51:01 -050050 <scope>provided</scope>
Smokowski, Kevin (ks6305)441e0ff2019-10-18 19:22:00 +000051 </dependency>
Timoney, Dan (dt5972)91258ae2019-10-10 14:05:46 -040052 <dependency>
Timoney, Dan (dt5972)21ec6552019-01-08 12:14:12 -050053 <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>
Michael Dürre22649c92020-08-19 10:55:45 +020061 <dependency>
62 <groupId>javax.ws.rs</groupId>
63 <artifactId>javax.ws.rs-api</artifactId>
64 </dependency>
Timoney, Dan (dt5972)21ec6552019-01-08 12:14:12 -050065 <dependency>
66 <groupId>com.fasterxml.jackson.core</groupId>
67 <artifactId>jackson-databind</artifactId>
68 </dependency>
69 <dependency>
70 <groupId>com.fasterxml.jackson.module</groupId>
71 <artifactId>jackson-module-jaxb-annotations</artifactId>
72 </dependency>
73 <dependency>
74 <groupId>com.fasterxml.jackson.core</groupId>
75 <artifactId>jackson-annotations</artifactId>
76 </dependency>
77 <dependency>
78 <groupId>com.fasterxml.jackson.core</groupId>
79 <artifactId>jackson-core</artifactId>
80 </dependency>
81 <dependency>
82 <groupId>commons-lang</groupId>
83 <artifactId>commons-lang</artifactId>
84 </dependency>
Timoney, Dan (dt5972)21ec6552019-01-08 12:14:12 -050085 <dependency>
86 <groupId>org.jsoup</groupId>
87 <artifactId>jsoup</artifactId>
Timoney, Dan (dt5972)21ec6552019-01-08 12:14:12 -050088 <scope>test</scope>
89 </dependency>
90 <dependency>
91 <groupId>org.springframework</groupId>
92 <artifactId>spring-core</artifactId>
Timoney, Dan (dt5972)21ec6552019-01-08 12:14:12 -050093 <scope>test</scope>
94 </dependency>
Smokowski, Kevin (ks6305)5c6b2002019-10-31 14:35:47 +000095 <dependency>
96 <groupId>org.apache.httpcomponents</groupId>
97 <artifactId>httpclient</artifactId>
98 </dependency>
Michael Dürre22649c92020-08-19 10:55:45 +020099 <dependency>
100 <groupId>javax.xml.bind</groupId>
101 <artifactId>jaxb-api</artifactId>
102 </dependency>
Timoney, Dan (dt5972)21ec6552019-01-08 12:14:12 -0500103 </dependencies>
Dan Timoney5363b272017-07-18 20:23:07 -0400104
Timoney, Dan (dt5972)21ec6552019-01-08 12:14:12 -0500105 <build>
106 <plugins>
107 <plugin>
108 <groupId>org.jvnet.jaxb2.maven2</groupId>
109 <artifactId>maven-jaxb2-plugin</artifactId>
Dan Timoneya612cdd2020-03-05 11:51:01 -0500110 <version>0.14.0</version>
Timoney, Dan (dt5972)21ec6552019-01-08 12:14:12 -0500111 <executions>
112 <execution>
113 <id>gen-xjc</id>
114 <goals>
115 <goal>generate</goal>
116 </goals>
117 </execution>
118 </executions>
119 <configuration>
120 <schemaDirectory>${project.basedir}/src/main/resources</schemaDirectory>
121 <schemaIncludes>
Hesam Rahimiffd3dd42020-10-20 11:56:47 -0400122 <value>aai_schema_v21.xsd</value>
Timoney, Dan (dt5972)21ec6552019-01-08 12:14:12 -0500123 </schemaIncludes>
124 <bindingIncludes>
125 <include>aai-schema-bindings.xjb</include>
126 </bindingIncludes>
127 <generateDirectory>${project.build.directory}/generated-sources/main/java</generateDirectory>
Hesam Rahimiffd3dd42020-10-20 11:56:47 -0400128 <generatePackage>org.onap.aai.inventory.v21</generatePackage>
Timoney, Dan (dt5972)21ec6552019-01-08 12:14:12 -0500129 <extension>true</extension>
130 <args>
131 <arg>-Xannotate</arg>
132 </args>
133 <plugins>
134 <plugin>
135 <groupId>org.jvnet.jaxb2_commons</groupId>
136 <artifactId>jaxb2-basics-annotate</artifactId>
Agarwal, Ruchira (ra1926)83559dd2019-11-05 18:16:50 +0000137 <version>0.6.5</version>
Timoney, Dan (dt5972)21ec6552019-01-08 12:14:12 -0500138 </plugin>
139 </plugins>
140 </configuration>
141 </plugin>
142 </plugins>
143 </build>
Dan Timoney5363b272017-07-18 20:23:07 -0400144</project>