blob: 84bbea22891691d76e725847c2e573fe9d5ab57c [file] [log] [blame]
Dan Timoney5363b272017-07-18 20:23:07 -04001<?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">
Rich Tabedzki6f3e3e32018-01-23 16:24:06 +00003 <modelVersion>4.0.0</modelVersion>
Dan Timoney1dc3bcf2018-02-15 16:13:28 -05004
Rich Tabedzki6f3e3e32018-01-23 16:24:06 +00005 <parent>
Dan Timoney1dc3bcf2018-02-15 16:13:28 -05006 <groupId>org.onap.ccsdk.parent</groupId>
7 <artifactId>binding-parent</artifactId>
Stilwell, David (stilwelld)590f1d22018-05-23 17:13:04 -04008 <version>1.0.3</version>
Timoney, Dan (dt5972)4caeb142018-03-02 13:10:30 -05009 <relativePath />
Rich Tabedzki6f3e3e32018-01-23 16:24:06 +000010 </parent>
Dan Timoney1dc3bcf2018-02-15 16:13:28 -050011
12 <groupId>org.onap.ccsdk.sli.adaptors</groupId>
Rich Tabedzki6f3e3e32018-01-23 16:24:06 +000013 <artifactId>aai-service-provider</artifactId>
Stilwell, David (stilwelld)ff7de8e2018-05-23 12:37:38 -040014 <version>0.2.3-SNAPSHOT</version>
Rich Tabedzki6f3e3e32018-01-23 16:24:06 +000015 <packaging>bundle</packaging>
Dan Timoney1dc3bcf2018-02-15 16:13:28 -050016
17 <name>ccsdk-sli-adaptors :: aai-service :: ${project.artifactId}</name>
Rich Tabedzki6f3e3e32018-01-23 16:24:06 +000018 <url>http://maven.apache.org</url>
Dan Timoney1dc3bcf2018-02-15 16:13:28 -050019
Rich Tabedzki6f3e3e32018-01-23 16:24:06 +000020 <properties>
21 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
22 </properties>
Dan Timoney1dc3bcf2018-02-15 16:13:28 -050023
Rich Tabedzki6f3e3e32018-01-23 16:24:06 +000024 <dependencies>
25 <dependency>
26 <groupId>junit</groupId>
27 <artifactId>junit</artifactId>
28 <version>${junit.version}</version>
29 <scope>test</scope>
30 </dependency>
31 <dependency>
32 <groupId>org.mockito</groupId>
33 <artifactId>mockito-core</artifactId>
34 <version>${mockito.version}</version>
35 <scope>test</scope>
36 </dependency>
37 <dependency>
38 <groupId>org.onap.ccsdk.sli.core</groupId>
39 <artifactId>sli-common</artifactId>
40 <version>${sdnctl.sli.version}</version>
41 <scope>compile</scope>
42 </dependency>
43 <dependency>
44 <groupId>org.onap.ccsdk.sli.core</groupId>
45 <artifactId>sli-provider</artifactId>
46 <version>${sdnctl.sli.version}</version>
47 <scope>compile</scope>
48 </dependency>
49 <dependency>
50 <groupId>org.onap.ccsdk.sli.core</groupId>
51 <artifactId>utils-provider</artifactId>
Dan Timoney1dc3bcf2018-02-15 16:13:28 -050052 <version>${sdnctl.sli.version}</version>
Rich Tabedzki6f3e3e32018-01-23 16:24:06 +000053 </dependency>
54 <dependency>
55 <groupId>equinoxSDK381</groupId>
56 <artifactId>org.eclipse.osgi</artifactId>
57 <version>${equinox.osgi.version}</version>
58 </dependency>
59 <dependency>
60 <groupId>org.slf4j</groupId>
61 <artifactId>slf4j-api</artifactId>
62 <version>${slf4j.version}</version>
63 </dependency>
64 <dependency>
65 <groupId>org.slf4j</groupId>
66 <artifactId>jcl-over-slf4j</artifactId>
67 <version>${slf4j.version}</version>
68 </dependency>
69 <dependency>
70 <groupId>com.sun.jersey</groupId>
71 <artifactId>jersey-client</artifactId>
72 <version>${jersey.client.version}</version>
73 </dependency>
74 <dependency>
75 <groupId>com.sun.jersey</groupId>
76 <artifactId>jersey-core</artifactId>
77 <version>${jersey.version}</version>
78 </dependency>
79 <dependency>
80 <groupId>org.apache.httpcomponents</groupId>
Dan Timoney1dc3bcf2018-02-15 16:13:28 -050081 <artifactId>httpcore</artifactId>
Rich Tabedzki6f3e3e32018-01-23 16:24:06 +000082 <version>${apache.httpcomponents.core.version}</version>
83 </dependency>
84 <dependency>
85 <groupId>org.apache.httpcomponents</groupId>
Dan Timoney1dc3bcf2018-02-15 16:13:28 -050086 <artifactId>httpclient</artifactId>
Rich Tabedzki6f3e3e32018-01-23 16:24:06 +000087 <version>${apache.httpcomponents.client.version}</version>
88 </dependency>
89 <dependency>
90 <groupId>com.fasterxml.jackson.core</groupId>
91 <artifactId>jackson-databind</artifactId>
92 <!-- <type>bundle</type> -->
93 <version>${jackson.version}</version>
94 </dependency>
95 <dependency>
96 <groupId>com.fasterxml.jackson.module</groupId>
97 <artifactId>jackson-module-jaxb-annotations</artifactId>
98 <version>${jackson.version}</version>
99 </dependency>
100 <dependency>
101 <groupId>com.fasterxml.jackson.core</groupId>
102 <artifactId>jackson-annotations</artifactId>
103 <!-- <type>bundle</type> -->
104 <version>${jackson.version}</version>
105 </dependency>
106 <dependency>
107 <groupId>com.fasterxml.jackson.core</groupId>
108 <artifactId>jackson-core</artifactId>
109 <!-- <type>bundle</type> -->
110 <version>${jackson.version}</version>
111 </dependency>
112 <dependency>
113 <groupId>commons-lang</groupId>
114 <artifactId>commons-lang</artifactId>
115 <version>${commons.lang.version}</version>
116 </dependency>
Dan Timoney1dc3bcf2018-02-15 16:13:28 -0500117
Rich Tabedzki6f3e3e32018-01-23 16:24:06 +0000118 <dependency>
119 <groupId>org.jsoup</groupId>
120 <artifactId>jsoup</artifactId>
121 <version>1.8.3</version>
122 <scope>test</scope>
123 </dependency>
124 <dependency>
125 <groupId>org.springframework</groupId>
126 <artifactId>spring-core</artifactId>
127 <version>4.3.5.RELEASE</version>
128 <scope>test</scope>
129 </dependency>
130 </dependencies>
Dan Timoney5363b272017-07-18 20:23:07 -0400131
Rich Tabedzki6f3e3e32018-01-23 16:24:06 +0000132 <build>
133 <plugins>
134 <plugin>
Rich Tabedzki6f3e3e32018-01-23 16:24:06 +0000135 <groupId>org.jvnet.jaxb2.maven2</groupId>
136 <artifactId>maven-jaxb2-plugin</artifactId>
137 <version>0.13.1</version>
138 <executions>
139 <execution>
140 <id>gen-xjc</id>
141 <goals>
142 <goal>generate</goal>
143 </goals>
144 </execution>
145 </executions>
146 <configuration>
147 <schemaDirectory>${project.basedir}/src/main/resources</schemaDirectory>
148 <schemaIncludes>
Rich Tabedzki8ed112c2018-04-23 15:50:06 -0400149 <value>aai_schema_v13.xsd</value>
Rich Tabedzki6f3e3e32018-01-23 16:24:06 +0000150 </schemaIncludes>
151 <bindingIncludes>
152 <include>aai-schema-bindings.xjb</include>
153 </bindingIncludes>
154 <generateDirectory>${project.build.directory}/generated-sources/main/java</generateDirectory>
Rich Tabedzki8ed112c2018-04-23 15:50:06 -0400155 <generatePackage>org.openecomp.aai.inventory.v13</generatePackage>
Rich Tabedzki6f3e3e32018-01-23 16:24:06 +0000156 <extension>true</extension>
157 <args>
158 <arg>-Xannotate</arg>
159 </args>
160 <plugins>
161 <plugin>
162 <groupId>org.jvnet.jaxb2_commons</groupId>
163 <artifactId>jaxb2-basics-annotate</artifactId>
164 <version>0.6.4</version>
165 </plugin>
166 </plugins>
167 </configuration>
168 </plugin>
169 </plugins>
Rich Tabedzki6f3e3e32018-01-23 16:24:06 +0000170 </build>
Dan Timoney5363b272017-07-18 20:23:07 -0400171</project>