blob: ca3fda2880d4cdd4598aa207799fc6049f1e4b7e [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 Timoney2173e3e2020-11-25 14:51:48 -050014 <version>1.1.1-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)21ec6552019-01-08 12:14:12 -050019 <properties>
Timoney, Dan (dt5972)21ec6552019-01-08 12:14:12 -050020 <ccsdk.sli.adaptors.version>${project.version}</ccsdk.sli.adaptors.version>
21 </properties>
Dan Timoneya612cdd2020-03-05 11:51:01 -050022
Timoney, Dan (dt5972)f200a722019-01-03 16:24:22 -050023 <dependencyManagement>
Michael Dürre22649c92020-08-19 10:55:45 +020024 <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>
Timoney, Dan (dt5972)f200a722019-01-03 16:24:22 -050033 </dependencyManagement>
Timoney, Dan (dt5972)21ec6552019-01-08 12:14:12 -050034 <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>
Smokowski, Kevin (ks6305)441e0ff2019-10-18 19:22:00 +000048 <scope>provided</scope>
Timoney, Dan (dt5972)21ec6552019-01-08 12:14:12 -050049 </dependency>
Smokowski, Kevin (ks6305)441e0ff2019-10-18 19:22:00 +000050 <!-- let filters project deliver this to the karaf container -->
Timoney, Dan (dt5972)21ec6552019-01-08 12:14:12 -050051 <dependency>
Timoney, Dan (dt5972)91258ae2019-10-10 14:05:46 -040052 <groupId>org.onap.logging-analytics</groupId>
53 <artifactId>logging-filter-base</artifactId>
Dan Timoneya612cdd2020-03-05 11:51:01 -050054 <scope>provided</scope>
Smokowski, Kevin (ks6305)441e0ff2019-10-18 19:22:00 +000055 </dependency>
Timoney, Dan (dt5972)91258ae2019-10-10 14:05:46 -040056 <dependency>
Timoney, Dan (dt5972)21ec6552019-01-08 12:14:12 -050057 <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>
Michael Dürre22649c92020-08-19 10:55:45 +020065 <dependency>
66 <groupId>javax.ws.rs</groupId>
67 <artifactId>javax.ws.rs-api</artifactId>
68 </dependency>
Timoney, Dan (dt5972)21ec6552019-01-08 12:14:12 -050069 <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>
Timoney, Dan (dt5972)21ec6552019-01-08 12:14:12 -050089 <dependency>
90 <groupId>org.jsoup</groupId>
91 <artifactId>jsoup</artifactId>
Timoney, Dan (dt5972)21ec6552019-01-08 12:14:12 -050092 <scope>test</scope>
93 </dependency>
94 <dependency>
95 <groupId>org.springframework</groupId>
96 <artifactId>spring-core</artifactId>
Timoney, Dan (dt5972)21ec6552019-01-08 12:14:12 -050097 <scope>test</scope>
98 </dependency>
Smokowski, Kevin (ks6305)5c6b2002019-10-31 14:35:47 +000099 <dependency>
100 <groupId>org.apache.httpcomponents</groupId>
101 <artifactId>httpclient</artifactId>
102 </dependency>
Michael Dürre22649c92020-08-19 10:55:45 +0200103 <dependency>
104 <groupId>javax.xml.bind</groupId>
105 <artifactId>jaxb-api</artifactId>
106 </dependency>
Timoney, Dan (dt5972)21ec6552019-01-08 12:14:12 -0500107 </dependencies>
Dan Timoney5363b272017-07-18 20:23:07 -0400108
Timoney, Dan (dt5972)21ec6552019-01-08 12:14:12 -0500109 <build>
110 <plugins>
111 <plugin>
112 <groupId>org.jvnet.jaxb2.maven2</groupId>
113 <artifactId>maven-jaxb2-plugin</artifactId>
Dan Timoneya612cdd2020-03-05 11:51:01 -0500114 <version>0.14.0</version>
Timoney, Dan (dt5972)21ec6552019-01-08 12:14:12 -0500115 <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>
Hesam Rahimiffd3dd42020-10-20 11:56:47 -0400126 <value>aai_schema_v21.xsd</value>
Timoney, Dan (dt5972)21ec6552019-01-08 12:14:12 -0500127 </schemaIncludes>
128 <bindingIncludes>
129 <include>aai-schema-bindings.xjb</include>
130 </bindingIncludes>
131 <generateDirectory>${project.build.directory}/generated-sources/main/java</generateDirectory>
Hesam Rahimiffd3dd42020-10-20 11:56:47 -0400132 <generatePackage>org.onap.aai.inventory.v21</generatePackage>
Timoney, Dan (dt5972)21ec6552019-01-08 12:14:12 -0500133 <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>
Agarwal, Ruchira (ra1926)83559dd2019-11-05 18:16:50 +0000141 <version>0.6.5</version>
Timoney, Dan (dt5972)21ec6552019-01-08 12:14:12 -0500142 </plugin>
143 </plugins>
144 </configuration>
145 </plugin>
146 </plugins>
147 </build>
Dan Timoney5363b272017-07-18 20:23:07 -0400148</project>