summaryrefslogtreecommitdiffstats
path: root/pom.xml
blob: fcd7ae04b20507a4bc62918994ce49fe38973ee2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
<!--
================================================================================
Copyright (c) 2017-2018 AT&T Intellectual Property. All rights reserved.
Copyright (c) 2018 Nokia. All rights reserved.
================================================================================
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

    http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
============LICENSE_END=========================================================

-->
<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">

	<modelVersion>4.0.0</modelVersion>
	<parent>
		<groupId>org.onap.oparent</groupId>
		<artifactId>oparent</artifactId>
		<version>0.1.1</version>
		<relativePath />
	</parent>
	<groupId>org.onap.dcaegen2.collectors.ves</groupId>
	<artifactId>VESCollector</artifactId>
	<version>1.2.0-SNAPSHOT</version>
	<name>dcaegen2-collectors-ves</name>
	<description>VESCollector</description>

	<properties>
		<compiler.source.version>1.7</compiler.source.version>
		<compiler.target.version>1.7</compiler.target.version>
		<main.basedir>${project.basedir}</main.basedir>
		<compiler.plugin.version>3.3</compiler.plugin.version>
		<jar.plugin.version>2.4</jar.plugin.version>
		<deploy.plugin.version>2.8</deploy.plugin.version>
		<source.plugin.version>2.4</source.plugin.version>
		<javadoc.plugin.version>2.10.4</javadoc.plugin.version>

		<!--TEST SETTINGS -->
		<surefire.redirectTestOutputToFile>true</surefire.redirectTestOutputToFile>

		<!--PLUGIN SETTINGS -->

		<dependency.locations.enabled>false</dependency.locations.enabled>
		<!-- <maven.test.skip>true</maven.test.skip> -->

		<nexusproxy>https://nexus.onap.org</nexusproxy>
		<snapshots.path>content/repositories/snapshots/</snapshots.path>
		<releases.path>content/repositories/releases/</releases.path>
		<site.path>content/sites/site/org/onap/dcaegen2/collectors/ves/${project.artifactId}/${project.version}</site.path>
	</properties>

	<pluginRepositories>
		<!-- Black Duck plugin dependencies -->
		<pluginRepository>
			<id>JCenter</id>
			<name>JCenter Repository</name>
			<url>http://jcenter.bintray.com</url>
		</pluginRepository>

		<pluginRepository>
			<id>Restlet</id>
			<name>Restlet Repository</name>
			<url>http://maven.restlet.com</url>
		</pluginRepository>
	</pluginRepositories>

	<dependencies>

		<!-- JSON libraries -->
		<dependency>
			<groupId>com.googlecode.json-simple</groupId>
			<artifactId>json-simple</artifactId>
			<version>1.1.1</version>
		</dependency>

		<dependency>
			<groupId>com.google.guava</groupId>
			<artifactId>guava</artifactId>
			<version>18.0</version>
		</dependency>

		<dependency>
			<groupId>com.github.fge</groupId>
			<artifactId>json-schema-validator</artifactId>
			<version>2.2.6</version>

		</dependency>
		<dependency>
			<groupId>com.google.code.gson</groupId>
			<artifactId>gson</artifactId>
			<version>2.3.1</version>
		</dependency>

		<dependency>
			<groupId>org.apache.tomcat.embed</groupId>
			<artifactId>tomcat-embed-core</artifactId>
			<version>8.5.23</version>
		</dependency>
		<dependency>
			<groupId>org.apache.tomcat</groupId>
			<artifactId>tomcat-catalina</artifactId>
			<version>8.5.23</version>
		</dependency>
		<dependency>
			<groupId>org.apache.tomcat</groupId>
			<artifactId>tomcat-coyote</artifactId>
			<version>8.5.23</version>
		</dependency>
		<!-- NSA server library -->
		<dependency>
			<groupId>com.att.nsa</groupId>
			<artifactId>nsaServerLibrary</artifactId>
			<version>1.0.10</version>
		</dependency>

		<!-- <dependency> <groupId>com.att.nsa</groupId> <artifactId>saToolkit</artifactId> 
			<version>1.1.3</version> </dependency> -->

		<dependency>
			<groupId>org.slf4j</groupId>
			<artifactId>slf4j-log4j12</artifactId>
			<version>1.7.21</version>
		</dependency>
		<dependency>
			<groupId>log4j</groupId>
			<artifactId>apache-log4j-extras</artifactId>
			<version>1.2.17</version>
		</dependency>


		<!-- https://mvnrepository.com/artifact/org.json/json -->
		<dependency>
			<groupId>org.json</groupId>
			<artifactId>json</artifactId>
			<version>20160810</version>
		</dependency>

		<!-- https://mvnrepository.com/artifact/com.github.fge/jackson-coreutils -->


		<dependency>
			<groupId>commons-configuration</groupId>
			<artifactId>commons-configuration</artifactId>
			<version>1.10</version>
		</dependency>

		<dependency>
			<groupId>org.mockito</groupId>
			<artifactId>mockito-core</artifactId>
			<version>2.18.0</version>
			<scope>test</scope>
		</dependency>

	</dependencies>


	<repositories>
		<repository>
			<id>external-repository</id>
			<url>https://oss.sonatype.org/content/repositories</url>
		</repository>
	</repositories>


	<build>
		<pluginManagement>
			<plugins>

				<!-- COMPILER PLUGIN -->
				<plugin>
					<groupId>org.apache.maven.plugins</groupId>
					<artifactId>maven-compiler-plugin</artifactId>
					<version>${compiler.plugin.version}</version>
					<configuration>
						<source>${compiler.target.version}</source>
						<target>${compiler.source.version}</target>
					</configuration>
				</plugin>

				<!-- MAVEN SOURCE PLUGIN -->
				<plugin>
					<groupId>org.apache.maven.plugins</groupId>
					<artifactId>maven-source-plugin</artifactId>
					<version>${source.plugin.version}</version>
					<configuration>
						<excludeResources>true</excludeResources>
					</configuration>
					<executions>
						<execution>
							<id>attach-sources</id>
							<phase>verify</phase>
							<goals>
								<goal>jar-no-fork</goal>
							</goals>
						</execution>
					</executions>
				</plugin>

				<!-- JAR PLUGIN -->
				<plugin>
					<groupId>org.apache.maven.plugins</groupId>
					<artifactId>maven-jar-plugin</artifactId>
					<version>${jar.plugin.version}</version>
					<configuration>
						<archive>
							<manifest>
								<addDefaultImplementationEntries>true</addDefaultImplementationEntries>
							</manifest>
							<manifestEntries>
								<Implementation-Build-Version>${project.version}</Implementation-Build-Version>
							</manifestEntries>
						</archive>
					</configuration>
				</plugin>

				<plugin>
					<artifactId>maven-assembly-plugin</artifactId>
					<version>2.4.1</version>
					<configuration>
						<descriptors>
							<descriptor>src/assembly/dep.xml</descriptor>
						</descriptors>
					</configuration>

					<executions>
						<execution>
							<id>make-assembly</id> <!-- this is used for inheritance merges -->
							<phase>package</phase> <!-- bind to the packaging phase -->
							<goals>
								<goal>single</goal>
							</goals>
						</execution>
					</executions>
				</plugin>

				<!-- MAVEN JAVADOC PLUGIN -->
				<plugin>
					<groupId>org.apache.maven.plugins</groupId>
					<artifactId>maven-javadoc-plugin</artifactId>
					<version>${javadoc.plugin.version}</version>
					<configuration>
						<!-- minimize console output messages -->
						<quiet>true</quiet>
						<verbose>false</verbose>
						<useStandardDocletOptions>false</useStandardDocletOptions>
					</configuration>
					<executions>
						<execution>
							<id>aggregate</id>
							<phase>site</phase>
							<goals>
								<goal>aggregate</goal>
							</goals>
						</execution>
						<execution>
							<id>attach-javadoc</id>
							<goals>
								<goal>jar</goal>
							</goals>
						</execution>
					</executions>
				</plugin>

				<plugin>
					<groupId>org.codehaus.mojo</groupId>
					<artifactId>exec-maven-plugin</artifactId>
					<version>1.2.1</version>
					<configuration>
						<executable>${session.executionRootDirectory}/mvn-phase-script.sh</executable>
						<environmentVariables>
							<!-- make mvn properties as env for our script -->
							<MVN_PROJECT_GROUPID>${project.groupId}</MVN_PROJECT_GROUPID>
							<MVN_PROJECT_ARTIFACTID>${project.artifactId}</MVN_PROJECT_ARTIFACTID>
							<MVN_PROJECT_VERSION>${project.version}</MVN_PROJECT_VERSION>
							<MVN_NEXUSPROXY>${onap.nexus.url}</MVN_NEXUSPROXY>
							<MVN_RAWREPO_BASEURL_UPLOAD>${onap.nexus.rawrepo.baseurl.upload}</MVN_RAWREPO_BASEURL_UPLOAD>
							<MVN_RAWREPO_BASEURL_DOWNLOAD>${onap.nexus.rawrepo.baseurl.download}</MVN_RAWREPO_BASEURL_DOWNLOAD>
							<MVN_RAWREPO_SERVERID>${onap.nexus.rawrepo.serverid}</MVN_RAWREPO_SERVERID>
							<MVN_DOCKERREGISTRY_DAILY>${onap.nexus.dockerregistry.daily}</MVN_DOCKERREGISTRY_DAILY>
							<MVN_DOCKERREGISTRY_RELEASE>${onap.nexus.dockerregistry.release}</MVN_DOCKERREGISTRY_RELEASE>
						</environmentVariables>
					</configuration>
				</plugin>

			</plugins>
		</pluginManagement>
		<plugins>

			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-compiler-plugin</artifactId>
			</plugin>

			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-jar-plugin</artifactId>
			</plugin>


			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-source-plugin</artifactId>
			</plugin>

			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-javadoc-plugin</artifactId>
			</plugin>

			<plugin>
				<artifactId>maven-assembly-plugin</artifactId>
			</plugin>


			<plugin>
				<groupId>org.codehaus.mojo</groupId>
				<artifactId>exec-maven-plugin</artifactId>
				<version>1.2.1</version>
				<executions>
					<execution>
						<id>deploy script</id>
						<phase>deploy</phase>
						<goals>
							<goal>exec</goal>
						</goals>
						<configuration>
							<arguments>
								<argument>__</argument>
								<argument>deploy</argument>
							</arguments>
						</configuration>
					</execution>
					<execution>
						<id>install script</id>
						<phase>install</phase>
						<goals>
							<goal>exec</goal>
						</goals>
						<configuration>
							<arguments>
								<argument>__</argument>
								<argument>install</argument>
							</arguments>
						</configuration>
					</execution>
				</executions>
			</plugin>

		</plugins>

	</build>

	<reporting>
		<plugins>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-project-info-reports-plugin</artifactId>
				<version>2.6</version>
				<reportSets>
					<reportSet>
						<reports>
							<report>dependencies</report>
							<report>license</report>
						</reports>
					</reportSet>
				</reportSets>

			</plugin>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-javadoc-plugin</artifactId>
				<version>2.10.4</version>
				<configuration>
					<failOnError>false</failOnError>
					<doclet>org.umlgraph.doclet.UmlGraphDoc</doclet>
					<docletArtifact>
						<groupId>org.umlgraph</groupId>
						<artifactId>umlgraph</artifactId>
						<version>5.6</version>
					</docletArtifact>
					<additionalparam>-views</additionalparam>
					<useStandardDocletOptions>true</useStandardDocletOptions>
				</configuration>
			</plugin>

		</plugins>
	</reporting>


	<dependencyManagement>
		<dependencies>
			<dependency>
				<groupId>com.github.fge</groupId>
				<artifactId>json-schema-core</artifactId>
				<version>1.2.5</version>
			</dependency>
			<dependency>
				<groupId>javax.mail</groupId>
				<artifactId>mail</artifactId>
				<version>1.4.7</version>
			</dependency>
			<dependency>
				<groupId>commons-collections</groupId>
				<artifactId>commons-collections</artifactId>
				<version>3.2.2</version>
			</dependency>
			<dependency>
				<groupId>org.apache.httpcomponents</groupId>
				<artifactId>httpclient</artifactId>
				<version>4.5.3</version>
			</dependency>
			<dependency>
				<groupId>com.fasterxml.jackson.core</groupId>
				<artifactId>jackson-databind</artifactId>
				<version>2.8.11</version>
			</dependency>
		</dependencies>
	</dependencyManagement>
</project>
<systemProperty> <key>gen_type</key> <value>YAML</value> </systemProperty> <systemProperty> <key>yamlresponses_url</key> <value>https://wiki.web.att.com/pages/viewpage.action?pageId=607391054 </value> </systemProperty> <systemProperty> <key>yamlresponses_label</key> <value>Response codes found in [response codes]</value> </systemProperty> <systemProperty> <key>schema.configuration.location</key> <value>${schema.configuration.location}</value> </systemProperty> <systemProperty> <key>schema.nodes.location</key> <value>${schema.nodes.location}</value> </systemProperty> <systemProperty> <key>schema.edges.location</key> <value>${schema.edges.location}</value> </systemProperty> <systemProperty> <key>schema.version.list</key> <value>${schema.version.list}</value> </systemProperty> <systemProperty> <key>schema.version.depth.start</key> <value>${schema.version.depth.start}</value> </systemProperty> <systemProperty> <key>schema.version.depth.start</key> <value>${schema.version.depth.start}</value> </systemProperty> <systemProperty> <key>schema.version.related.link.start</key> <value>${schema.version.related.link.start}</value> </systemProperty> <systemProperty> <key>schema.version.app.root.start</key> <value>${schema.version.app.root.start}</value> </systemProperty> <systemProperty> <key>schema.version.edge.label.start</key> <value>${schema.version.app.root.start}</value> </systemProperty> <systemProperty> <key>schema.version.namespace.change.start</key> <value>${schema.version.namespace.change.start}</value> </systemProperty> <systemProperty> <key>schema.version.api.default</key> <value>${schema.version.api.default}</value> </systemProperty> <systemProperty> <key>schema.uri.base.path</key> <value>${schema.uri.base.path}</value> </systemProperty> <systemProperty> <key>aai.release</key> <value>${aai.release}</value> </systemProperty> </systemProperties> </configuration> </execution> </executions> </plugin> </plugins> </build> </profile> <profile> <id>generateHtml</id> <build> <plugins> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>exec-maven-plugin</artifactId> <version>1.1.1</version> <executions> <execution> <phase>process-classes</phase> <goals> <goal>java</goal> </goals> <configuration> <mainClass>org.onap.aai.schemagen.swagger.GenerateSwagger</mainClass> <systemProperties> <property> <key>aai.generate.version</key> <value>${gendoc.version}</value> </property> <property> <key>aai.wiki.link</key> <value>${aai.wiki.link}</value> </property> <systemProperty> <key>schema.configuration.location</key> <value>${schema.configuration.location}</value> </systemProperty> <systemProperty> <key>schema.nodes.location</key> <value>${schema.nodes.location}</value> </systemProperty> <systemProperty> <key>schema.edges.location</key> <value>${schema.edges.location}</value> </systemProperty> <systemProperty> <key>schema.version.list</key> <value>${schema.version.list}</value> </systemProperty> <systemProperty> <key>schema.version.depth.start</key> <value>${schema.version.depth.start}</value> </systemProperty> <systemProperty> <key>schema.version.depth.start</key> <value>${schema.version.depth.start}</value> </systemProperty> <systemProperty> <key>schema.version.related.link.start</key> <value>${schema.version.related.link.start}</value> </systemProperty> <systemProperty> <key>schema.version.app.root.start</key> <value>${schema.version.app.root.start}</value> </systemProperty> <systemProperty> <key>schema.version.edge.label.start</key> <value>${schema.version.app.root.start}</value> </systemProperty> <systemProperty> <key>schema.version.namespace.change.start</key> <value>${schema.version.namespace.change.start}</value> </systemProperty> <systemProperty> <key>schema.version.api.default</key> <value>${schema.version.api.default}</value> </systemProperty> <systemProperty> <key>schema.uri.base.path</key> <value>${schema.uri.base.path}</value> </systemProperty> <systemProperty> <key>aai.release</key> <value>${aai.release}</value> </systemProperty> </systemProperties> </configuration> </execution> </executions> </plugin> </plugins> </build> </profile> <profile> <id>autoGenerate</id> <activation> <property> <name>aai.generate.schema</name> <value>!false</value> </property> </activation> <build> <plugins> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>exec-maven-plugin</artifactId> <version>1.1.1</version> <executions> <execution> <id>autoGenerateXsd</id> <phase>process-classes</phase> <goals> <goal>java</goal> </goals> <configuration> <mainClass>org.onap.aai.schemagen.GenerateXsd</mainClass> <systemProperties> <systemProperty> <key>gen_version</key> <value>ALL</value> </systemProperty> <systemProperty> <key>gen_type</key> <value>XSD</value> </systemProperty> <systemProperty> <key>schema.xsd.maxoccurs</key> <value>${schema.xsd.maxoccurs}</value> </systemProperty> <systemProperty> <key>yamlresponses_url</key> <value></value> </systemProperty> <systemProperty> <key>yamlresponses_label</key> <value></value> </systemProperty> <systemProperty> <key>schema.configuration.location</key> <value>${schema.configuration.location}</value> </systemProperty> <systemProperty> <key>schema.nodes.location</key> <value>${schema.nodes.location}</value> </systemProperty> <systemProperty> <key>schema.edges.location</key> <value>${schema.edges.location}</value> </systemProperty> <systemProperty> <key>schema.version.list</key> <value>${schema.version.list}</value> </systemProperty> <systemProperty> <key>schema.version.depth.start</key> <value>${schema.version.depth.start}</value> </systemProperty> <systemProperty> <key>schema.version.depth.start</key> <value>${schema.version.depth.start}</value> </systemProperty> <systemProperty> <key>schema.version.related.link.start</key> <value>${schema.version.related.link.start}</value> </systemProperty> <systemProperty> <key>schema.version.app.root.start</key> <value>${schema.version.app.root.start}</value> </systemProperty> <systemProperty> <key>schema.version.edge.label.start</key> <value>${schema.version.app.root.start}</value> </systemProperty> <systemProperty> <key>schema.version.namespace.change.start</key> <value>${schema.version.namespace.change.start}</value> </systemProperty> <systemProperty> <key>schema.version.api.default</key> <value>${schema.version.api.default}</value> </systemProperty> <systemProperty> <key>schema.uri.base.path</key> <value>${schema.uri.base.path}</value> </systemProperty> <systemProperty> <key>aai.release</key> <value>${aai.release}</value> </systemProperty> </systemProperties> </configuration> </execution> <execution> <id>autoGenerateYaml</id> <phase>process-classes</phase> <goals> <goal>java</goal> </goals> <configuration> <mainClass>org.onap.aai.schemagen.GenerateXsd</mainClass> <systemProperties> <systemProperty> <key>gen_version</key> <value>ALL</value> </systemProperty> <systemProperty> <key>gen_type</key> <value>YAML</value> </systemProperty> <systemProperty> <key>yamlresponses_url</key> <value>https://wiki.web.att.com/pages/viewpage.action?pageId=607391054 </value> </systemProperty> <systemProperty> <key>yamlresponses_label</key> <value>Response codes found in [response codes]</value> </systemProperty> <systemProperty> <key>schema.configuration.location</key> <value>${schema.configuration.location}</value> </systemProperty> <systemProperty> <key>schema.nodes.location</key> <value>${schema.nodes.location}</value> </systemProperty> <systemProperty> <key>schema.edges.location</key> <value>${schema.edges.location}</value> </systemProperty> <systemProperty> <key>schema.version.list</key> <value>${schema.version.list}</value> </systemProperty> <systemProperty> <key>schema.version.depth.start</key> <value>${schema.version.depth.start}</value> </systemProperty> <systemProperty> <key>schema.version.depth.start</key> <value>${schema.version.depth.start}</value> </systemProperty> <systemProperty> <key>schema.version.related.link.start</key> <value>${schema.version.related.link.start}</value> </systemProperty> <systemProperty> <key>schema.version.app.root.start</key> <value>${schema.version.app.root.start}</value> </systemProperty> <systemProperty> <key>schema.version.edge.label.start</key> <value>${schema.version.app.root.start}</value> </systemProperty> <systemProperty> <key>schema.version.namespace.change.start</key> <value>${schema.version.namespace.change.start}</value> </systemProperty> <systemProperty> <key>schema.version.api.default</key> <value>${schema.version.api.default}</value> </systemProperty> <systemProperty> <key>aai.release</key> <value>${aai.release}</value> </systemProperty> </systemProperties> </configuration> </execution> <execution> <id>autoGenerateHtml</id> <phase>process-classes</phase> <goals> <goal>java</goal> </goals> <configuration> <mainClass>org.onap.aai.schemagen.AutoGenerateHtml</mainClass> <systemProperties> <property> <key>aai.generate.version</key> <value>${gendoc.version}</value> </property> <property> <key>aai.wiki.link</key> <value>${aai.wiki.link}</value> </property> <systemProperty> <key>schema.configuration.location</key> <value>${schema.configuration.location}</value> </systemProperty> <systemProperty> <key>schema.nodes.location</key> <value>${schema.nodes.location}</value> </systemProperty> <systemProperty> <key>schema.edges.location</key> <value>${schema.edges.location}</value> </systemProperty> <systemProperty> <key>schema.version.list</key> <value>${schema.version.list}</value> </systemProperty> <systemProperty> <key>schema.version.depth.start</key> <value>${schema.version.depth.start}</value> </systemProperty> <systemProperty> <key>schema.version.depth.start</key> <value>${schema.version.depth.start}</value> </systemProperty> <systemProperty> <key>schema.version.related.link.start</key> <value>${schema.version.related.link.start}</value> </systemProperty> <systemProperty> <key>schema.version.app.root.start</key> <value>${schema.version.app.root.start}</value> </systemProperty> <systemProperty> <key>schema.version.edge.label.start</key> <value>${schema.version.app.root.start}</value> </systemProperty> <systemProperty> <key>schema.version.namespace.change.start</key> <value>${schema.version.namespace.change.start}</value> </systemProperty> <systemProperty> <key>schema.version.api.default</key> <value>${schema.version.api.default}</value> </systemProperty> <systemProperty> <key>aai.release</key> <value>${aai.release}</value> </systemProperty> </systemProperties> </configuration> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> <dependencyManagement> <dependencies> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-context</artifactId> <version>${springframework.version}</version> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-web</artifactId> <version>${springframework.version}</version> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-core</artifactId> <version>${springframework.version}</version> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-expression</artifactId> <version>${springframework.version}</version> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-webmvc</artifactId> <version>${springframework.version}</version> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-test</artifactId> <version>${springframework.version}</version> <scope>test</scope> </dependency> </dependencies> </dependencyManagement> <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.12</version> <scope>test</scope> </dependency> <dependency> <groupId>org.yaml</groupId> <artifactId>snakeyaml</artifactId> <version>1.18</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.onap.aai.aai-common</groupId> <artifactId>aai-schema-ingest</artifactId> <version>1.4.0</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.freemarker</groupId> <artifactId>freemarker</artifactId> <version>2.3.21</version> </dependency> <dependency> <groupId>com.fasterxml.jackson.dataformat</groupId> <artifactId>jackson-dataformat-yaml</artifactId> <version>2.2.3</version> </dependency> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-lang3</artifactId> <version>3.7</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-text</artifactId> <version>1.2</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.hamcrest</groupId> <artifactId>java-hamcrest</artifactId> <version>2.0.0.0</version> <scope>test</scope> </dependency> <dependency> <groupId>org.hamcrest</groupId> <artifactId>hamcrest-core</artifactId> <version>1.3</version> <scope>test</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-all</artifactId> <version>1.10.19</version> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-site-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-deploy-plugin</artifactId> </plugin> </plugins> <resources> <resource> <directory>src/main/resources</directory> <filtering>false</filtering> <includes> <include>**/*</include> </includes> </resource> </resources> </build> <!-- Start of ONAP Specific Repositories --> <pluginRepositories> <pluginRepository> <id>central</id> <url>http://repo1.maven.org/maven2</url> </pluginRepository> <pluginRepository> <id>EvoSuite</id> <name>EvoSuite Repository</name> <url>http://www.evosuite.org/m2</url> </pluginRepository> </pluginRepositories> <!-- End of ONAP Specific Repositories --> </project>