pom.xml 26.2 KB
Newer Older
1 2
<?xml version="1.0" encoding="UTF-8"?>

3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
<!--
  ~ Licensed to the Apache Software Foundation (ASF) under one
  ~ or more contributor license agreements.  See the NOTICE file
  ~ distributed with this work for additional information
  ~ regarding copyright ownership.  The ASF licenses this file
  ~ to you 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.
  -->
20

21
<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/maven-v4_0_0.xsd">
22

23 24
    <modelVersion>4.0.0</modelVersion>
    <parent>
25 26
        <groupId>org.apache.atlas</groupId>
        <artifactId>apache-atlas</artifactId>
27
        <version>1.0.0-SNAPSHOT</version>
28
    </parent>
29 30 31
    <artifactId>atlas-webapp</artifactId>
    <description>Apache Atlas Web Application</description>
    <name>Apache Atlas Web Application</name>
32
    <packaging>war</packaging>
33

Shwetha GS committed
34
    <properties>
35
        <projectBaseDir>${project.basedir}/..</projectBaseDir>
Shwetha GS committed
36
        <debug.jetty.daemon>true</debug.jetty.daemon>
37
        <log4j.configuration.url>file:///${project.build.directory}/../../distro/src/conf/atlas-log4j.xml</log4j.configuration.url>
38
        <packages.to.exclude />
Shwetha GS committed
39
    </properties>
40

41
    <profiles>
42 43 44 45 46 47 48
        <profile>
            <!-- default profile is for external HBase and Solr - hence not packaging those jars -->
            <id>dist</id>
            <activation>
                <activeByDefault>false</activeByDefault>
            </activation>
            <properties>
49
                <packages.to.exclude>WEB-INF/lib/titan-*.jar,WEB-INF/lib/je-*.jar,WEB-INF/lib/elasticsearch-*.jar,WEB-INF/lib/lucene-*.jar</packages.to.exclude>
50 51 52 53 54 55 56 57 58 59 60 61
            </properties>
        </profile>

        <profile>
            <id>berkeley-elasticsearch</id>
            <activation>
                <activeByDefault>false</activeByDefault>
            </activation>
            <properties>
                <packages.to.exclude>WEB-INF/lib/je-*.jar</packages.to.exclude>
            </properties>
        </profile>
62

63 64 65 66 67 68 69 70
        <profile>
            <id>Windows</id>
            <activation>
                <os>
                    <family>windows</family>
                </os>
            </activation>
            <properties>
71
                <log4j.configuration.url>file:/${project.build.directory}/../../distro/src/conf/atlas-log4j.xml</log4j.configuration.url>
72
            </properties>
73
        </profile>
74

75 76
    </profiles>

77
    <dependencies>
78 79 80 81 82
        <dependency>
            <groupId>org.apache.atlas</groupId>
            <artifactId>atlas-graphdb-impls</artifactId>
            <type>pom</type>
        </dependency>
83

84 85 86
        <dependency>
            <groupId>org.apache.atlas</groupId>
            <artifactId>atlas-common</artifactId>
87 88 89 90 91 92
            <exclusions>
                <exclusion>
                    <groupId>com.fasterxml.jackson.core</groupId>
                    <artifactId>*</artifactId>
                </exclusion>
            </exclusions>
93 94
        </dependency>

95
        <dependency>
96 97
            <groupId>org.apache.atlas</groupId>
            <artifactId>atlas-repository</artifactId>
98
        </dependency>
99

100
        <dependency>
101
            <groupId>org.apache.atlas</groupId>
102 103 104 105 106 107
            <artifactId>atlas-client-v1</artifactId>
        </dependency>

        <dependency>
            <groupId>org.apache.atlas</groupId>
            <artifactId>atlas-client-v2</artifactId>
108 109
        </dependency>

110
        <dependency>
111 112
            <groupId>org.apache.atlas</groupId>
            <artifactId>atlas-authorization</artifactId>
113
            <version>${project.version}</version>
114 115
        </dependency>

116 117 118 119
        <dependency>
            <groupId>org.apache.atlas</groupId>
            <artifactId>atlas-notification</artifactId>
        </dependency>
120

121 122 123 124
        <dependency>
            <groupId>org.apache.atlas</groupId>
            <artifactId>atlas-intg</artifactId>
        </dependency>
125

Jon Maron committed
126 127 128
        <dependency>
            <groupId>org.apache.hadoop</groupId>
            <artifactId>hadoop-common</artifactId>
129 130 131 132 133 134
            <exclusions>
                <exclusion>
                    <groupId>javax.servlet</groupId>
                    <artifactId>servlet-api</artifactId>
                </exclusion>
            </exclusions>
Jon Maron committed
135
        </dependency>
136

137 138 139 140 141 142 143 144
        <dependency>
            <groupId>org.apache.hadoop</groupId>
            <artifactId>hadoop-minikdc</artifactId>
        </dependency>

        <dependency>
            <groupId>org.apache.hadoop</groupId>
            <artifactId>hadoop-hdfs</artifactId>
145 146 147 148 149 150
            <exclusions>
                <exclusion>
                    <groupId>javax.servlet</groupId>
                    <artifactId>servlet-api</artifactId>
                </exclusion>
            </exclusions>
151
        </dependency>
152

153 154 155 156 157 158 159 160 161 162 163
        <!-- Zookeeper, curator -->
        <dependency>
            <groupId>org.apache.curator</groupId>
            <artifactId>curator-framework</artifactId>
        </dependency>

        <dependency>
            <groupId>org.apache.curator</groupId>
            <artifactId>curator-recipes</artifactId>
        </dependency>

164 165 166 167 168
        <dependency>
            <groupId>org.apache.curator</groupId>
            <artifactId>curator-client</artifactId>
        </dependency>

169
        <dependency>
170 171
            <groupId>org.apache.zookeeper</groupId>
            <artifactId>zookeeper</artifactId>
172

173 174

        </dependency>
175 176 177 178 179 180
        <!-- supports simple auth handler -->
        <dependency>
            <groupId>org.apache.httpcomponents</groupId>
            <artifactId>httpclient</artifactId>
        </dependency>

181 182 183 184
        <dependency>
            <groupId>joda-time</groupId>
            <artifactId>joda-time</artifactId>
        </dependency>
185

186 187 188 189
        <dependency>
            <groupId>commons-configuration</groupId>
            <artifactId>commons-configuration</artifactId>
        </dependency>
190

191 192 193 194
        <dependency>
            <groupId>commons-cli</groupId>
            <artifactId>commons-cli</artifactId>
        </dependency>
195

196 197 198 199 200
        <dependency>
            <groupId>org.apache.commons</groupId>
            <artifactId>commons-lang3</artifactId>
        </dependency>

201 202 203 204
        <dependency>
            <groupId>com.googlecode.json-simple</groupId>
            <artifactId>json-simple</artifactId>
        </dependency>
205

206 207 208 209
        <dependency>
            <groupId>javax.servlet.jsp</groupId>
            <artifactId>jsp-api</artifactId>
        </dependency>
210

211
        <dependency>
212 213
            <groupId>org.eclipse.jetty</groupId>
            <artifactId>jetty-server</artifactId>
214
        </dependency>
215

216
        <dependency>
217 218
            <groupId>org.eclipse.jetty</groupId>
            <artifactId>jetty-webapp</artifactId>
219
        </dependency>
220

221 222 223 224
        <dependency>
            <groupId>com.sun.jersey</groupId>
            <artifactId>jersey-core</artifactId>
        </dependency>
225

226 227 228 229
        <dependency>
            <groupId>com.sun.jersey</groupId>
            <artifactId>jersey-server</artifactId>
        </dependency>
230

231 232 233 234
        <dependency>
            <groupId>com.sun.jersey</groupId>
            <artifactId>jersey-client</artifactId>
        </dependency>
235

236 237 238 239
        <dependency>
            <groupId>com.sun.jersey</groupId>
            <artifactId>jersey-json</artifactId>
        </dependency>
240

241 242 243 244 245
        <dependency>
            <groupId>com.sun.jersey.contribs</groupId>
            <artifactId>jersey-multipart</artifactId>
        </dependency>

246 247 248 249
        <dependency>
            <groupId>org.mockito</groupId>
            <artifactId>mockito-all</artifactId>
        </dependency>
250

251
        <dependency>
252 253
            <groupId>org.testng</groupId>
            <artifactId>testng</artifactId>
254
        </dependency>
255

256 257 258 259 260 261 262
        <dependency>
            <groupId>com.google.inject</groupId>
            <artifactId>guice</artifactId>
            <version>${guice.version}</version>
            <scope>test</scope>
        </dependency>

263 264
        <dependency>
            <groupId>com.google.inject.extensions</groupId>
265 266 267
            <artifactId>guice-throwingproviders</artifactId>
            <version>${guice.version}</version>
            <scope>test</scope>
268
        </dependency>
269

270
        <dependency>
271 272 273 274
            <groupId>com.google.inject.extensions</groupId>
            <artifactId>guice-multibindings</artifactId>
            <version>${guice.version}</version>
            <scope>test</scope>
275
        </dependency>
276

Shwetha GS committed
277
        <dependency>
278 279 280 281
            <groupId>org.eclipse.jetty</groupId>
            <artifactId>jetty-jsp</artifactId>
        </dependency>

282 283 284 285
        <dependency>
            <groupId>org.glassfish</groupId>
            <artifactId>javax.el</artifactId>
        </dependency>
286 287 288 289 290

        <dependency>
            <groupId>commons-io</groupId>
            <artifactId>commons-io</artifactId>
        </dependency>
291

292
        <dependency>
293 294
                <groupId>org.springframework</groupId>
                <artifactId>spring-core</artifactId>
295 296
        </dependency>

297
        <dependency>
298 299
                <groupId>org.springframework</groupId>
                <artifactId>spring-web</artifactId>
300 301 302
        </dependency>

        <dependency>
303 304
                <groupId>org.springframework</groupId>
                <artifactId>spring-webmvc</artifactId>
305 306 307
        </dependency>

        <dependency>
308 309
                <groupId>org.springframework.security</groupId>
                <artifactId>spring-security-core</artifactId>
310 311 312
        </dependency>

        <dependency>
313 314
                <groupId>org.springframework.security</groupId>
                <artifactId>spring-security-web</artifactId>
315 316 317
        </dependency>

        <dependency>
318 319
                <groupId>org.springframework.security</groupId>
                <artifactId>spring-security-config</artifactId>
320 321 322
        </dependency>

        <dependency>
323 324 325 326 327 328 329 330 331 332
                <groupId>org.springframework.security</groupId>
                <artifactId>spring-security-ldap</artifactId>
        </dependency>
        <dependency>
                <groupId>javax.servlet</groupId>
                <artifactId>javax.servlet-api</artifactId>
        </dependency>
        <dependency>
                <groupId>org.springframework.ldap</groupId>
                <artifactId>spring-ldap-core</artifactId>
333 334
        </dependency>

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
        <!-- Jersey + Spring -->
        <dependency>
            <groupId>com.sun.jersey.contribs</groupId>
            <artifactId>jersey-spring</artifactId>
            <version>1.8</version>
            <exclusions>
                <exclusion>
                    <groupId>org.springframework</groupId>
                    <artifactId>spring</artifactId>
                </exclusion>
                <exclusion>
                    <groupId>org.springframework</groupId>
                    <artifactId>spring-core</artifactId>
                </exclusion>
                <exclusion>
                    <groupId>org.springframework</groupId>
                    <artifactId>spring-web</artifactId>
                </exclusion>
                <exclusion>
                    <groupId>org.springframework</groupId>
                    <artifactId>spring-beans</artifactId>
                </exclusion>
                <exclusion>
                    <groupId>org.springframework</groupId>
                    <artifactId>spring-context</artifactId>
                </exclusion>
            </exclusions>
        </dependency>
363
        <dependency>
364 365
            <groupId>com.sun.jersey</groupId>
            <artifactId>jersey-servlet</artifactId>
366
        </dependency>
367
        <!-- Required for Spring configuration processing -->
368
        <dependency>
369 370 371 372 373 374 375 376 377 378 379 380
            <groupId>org.springframework</groupId>
            <artifactId>spring-aop</artifactId>
        </dependency>
        <dependency>
            <groupId>org.aspectj</groupId>
            <artifactId>aspectjrt</artifactId>
            <version>1.8.9</version>
        </dependency>
        <dependency>
            <groupId>org.aspectj</groupId>
            <artifactId>aspectjweaver</artifactId>
            <version>1.8.9</version>
381
        </dependency>
382
        <dependency>
383 384 385
            <groupId>org.apache.atlas</groupId>
            <artifactId>atlas-dashboardv2</artifactId>
            <type>war</type>
386
        </dependency>
387 388 389 390 391 392
        <dependency>
            <groupId>org.easymock</groupId>
            <artifactId>easymock</artifactId>
            <version>3.4</version>
            <scope>test</scope>
        </dependency>
393

394 395 396 397 398 399
        <dependency>
            <groupId>org.apache.atlas</groupId>
            <artifactId>atlas-intg</artifactId>
            <classifier>tests</classifier>
            <scope>test</scope>
        </dependency>
400

401
        <dependency>
402 403 404 405 406
            <groupId>org.apache.atlas</groupId>
            <artifactId>atlas-repository</artifactId>
            <classifier>tests</classifier>
            <scope>test</scope>
        </dependency>
407

408 409 410 411 412 413
        <dependency>
            <groupId>org.apache.atlas</groupId>
            <artifactId>atlas-graphdb-common</artifactId>
            <classifier>tests</classifier>
            <scope>test</scope>
        </dependency>
414

415
        <dependency>
416 417 418 419 420 421 422 423 424 425 426
            <groupId>com.nimbusds</groupId>
            <artifactId>nimbus-jose-jwt</artifactId>
            <version>3.9</version>
            <scope>compile</scope>
            <exclusions>
                <exclusion>
                    <groupId>org.bouncycastle</groupId>
                    <artifactId>bcprov-jdk15on</artifactId>
                </exclusion>
            </exclusions>
        </dependency>
427 428 429 430 431

        <dependency>
            <groupId>org.apache.atlas</groupId>
            <artifactId>atlas-server-api</artifactId>
        </dependency>
432 433 434 435 436

        <dependency>
            <groupId>com.webcohesion.enunciate</groupId>
            <artifactId>enunciate-core-annotations</artifactId>
        </dependency>
437 438 439 440 441 442 443 444 445 446 447 448
        <!-- PAM -->
        <dependency>
            <groupId>org.kohsuke</groupId>
            <artifactId>libpam4j</artifactId>
            <version>1.8</version>
        </dependency>

        <dependency>
            <groupId>net.java.dev.jna</groupId>
            <artifactId>jna</artifactId>
            <version>4.1.0</version>
        </dependency>
449
    </dependencies>
450

451
    <build>
452 453 454 455 456
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-war-plugin</artifactId>
                <configuration>
457
                    <archiveClasses>true</archiveClasses>
458
                    <attachClasses>true</attachClasses>
459
                    <overlays>
460
                        <overlay>
461 462
                            <groupId>org.apache.atlas</groupId>
                            <artifactId>atlas-dashboardv2</artifactId>
463
                        </overlay>
464
                        <overlay>
465
                            <!-- empty groupId/artifactId represents the current build -->
466
                        </overlay>
467
                    </overlays>
468 469 470 471 472
                    <archive>
                        <manifest>
                            <addClasspath>true</addClasspath>
                        </manifest>
                    </archive>
473
                    <packagingExcludes>
474 475
                        <!-- Titan and hbase jars should be excluded because an uber jar with shaded dependencies is created.
                        But mvn 3.3.x includes them for some reason. So, excluding them explicitly here -->
476
                        WEB-INF/lib/titan*.jar,WEB-INF/lib/hbase*.jar,WEB-INF/lib/junit*.jar,${packages.to.exclude}
477
                    </packagingExcludes>
478 479
                </configuration>
            </plugin>
480

481 482 483
            <plugin>
                <groupId>org.codehaus.mojo</groupId>
                <artifactId>keytool-maven-plugin</artifactId>
484
                <version>1.5</version>
485 486 487 488 489 490 491 492 493
                <executions>
                    <execution>
                        <id>clean</id>
                        <phase>generate-resources</phase>
                        <goals>
                            <goal>clean</goal>
                        </goals>
                    </execution>
                    <execution>
Jon Maron committed
494
                        <id>generateKeyPair</id>
495 496 497 498 499 500 501
                        <phase>generate-resources</phase>
                        <goals>
                            <goal>generateKeyPair</goal>
                        </goals>
                    </execution>
                </executions>
                <configuration>
502
                    <dname>cn=atlas.apache.org</dname>
503
                    <keystore>${project.build.directory}/atlas.keystore</keystore>
Jon Maron committed
504 505
                    <keypass>keypass</keypass>
                    <storepass>keypass</storepass>
506
                    <alias>atlas</alias>
507 508 509 510 511
                    <keyalg>RSA</keyalg>
                    <validity>100000</validity>
                </configuration>
            </plugin>

512 513 514 515 516 517 518 519 520 521 522 523
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-surefire-plugin</artifactId>
                <configuration>
                    <systemProperties>
                        <user.dir>${project.basedir}</user.dir>
                        <projectBaseDir>${project.basedir}/..</projectBaseDir>
                    </systemProperties>
                    <forkMode>always</forkMode>
                    <redirectTestOutputToFile>true</redirectTestOutputToFile>
                    <argLine>-Djava.awt.headless=true -Dproject.version=${project.version}
                        -Dhadoop.tmp.dir=${project.build.directory}/tmp-hadoop-${user.name}
524
                        -Xmx1024m
525 526 527
                    </argLine>
                </configuration>
                <executions>
528
                    <!-- Needed for explicit separation of UTs, SSL/Kerberos/Secure server tests and ITs-->
529 530
                    <execution>
                        <id>default-test</id>
531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561
                        <configuration>
                            <skip>true</skip>
                        </configuration>
                    </execution>

                    <!-- Unit tests don't rely of WAR being built and don't interact with real server -->
                    <execution>
                        <id>unit-tests</id>
                        <phase>test</phase>
                        <goals>
                            <goal>test</goal>
                        </goals>
                        <configuration>
                            <includes>
                                <include>**/*Test.java</include>
                            </includes>
                            <excludes>
                                <exclude>**/*SSL*.java</exclude>
                                <exclude>**/*Kerberos*.java</exclude>
                                <exclude>**/*Base*.java</exclude>
                                <exclude>**/*Secure*.java</exclude>
                                <exclude>**/*Server*.java</exclude>
                                <exclude>**/*$*.java</exclude>
                            </excludes>
                        </configuration>
                    </execution>

                    <!-- Secure tests rely on the generated WAR and (may) start atlas server for tests -->
                    <!-- Eventually all these server interaction tests need to move to IT phase -->
                    <execution>
                        <id>secure-tests</id>
562 563 564 565
                        <phase>pre-integration-test</phase>
                        <goals>
                            <goal>test</goal>
                        </goals>
566 567 568 569 570 571 572 573 574 575 576 577
                        <configuration>
                            <includes>
                                <include>**/*SSL*Test.java</include>
                                <include>**/*Kerberos*Test.java</include>
                                <include>**/*Secure*Test.java</include>
                                <include>**/*Server*Test.java</include>
                                <include>**/*$*.java</include>
                            </includes>
                            <excludes>
                                <exclude>**/*Base*.java</exclude>
                            </excludes>
                        </configuration>
578 579 580 581
                    </execution>
                </executions>
            </plugin>

582
            <plugin>
583 584
                <groupId>org.eclipse.jetty</groupId>
                <artifactId>jetty-maven-plugin</artifactId>
585
                <configuration>
586
                    <skip>${skipITs}</skip>
587
                    <!--only skip int tests -->
588
                    <httpConnector>
589
                        <port>31000</port>
590 591 592 593
                        <idleTimeout>60000</idleTimeout>
                    </httpConnector>
                    <war>${project.build.directory}/atlas-webapp-${project.version}.war</war>
                    <daemon>true</daemon>
594
                    <webAppSourceDirectory>webapp/src/test/webapp</webAppSourceDirectory>
595 596
                    <webApp>
                        <contextPath>/</contextPath>
597
                        <descriptor>${project.basedir}/src/test/webapp/WEB-INF/web.xml</descriptor>
598
                        <extraClasspath>${project.build.testOutputDirectory}</extraClasspath>
599 600
                    </webApp>
                    <useTestScope>true</useTestScope>
601
                    <systemProperties>
602 603
                        <systemProperty>
                            <name>log4j.configuration</name>
604
                            <value>${log4j.configuration.url}</value>
605 606 607 608
                        </systemProperty>
                        <systemProperty>
                            <name>atlas.log.file</name>
                            <value>application.log</value>
609
                        </systemProperty>
610
                        <systemProperty>
611
                            <name>atlas.log.dir</name>
612 613
                            <value>${project.build.directory}/logs</value>
                        </systemProperty>
614 615 616 617
                        <systemProperty>
                            <name>atlas.graphdb.backend</name>
                            <value>${graphdb.backend.impl}</value>
                        </systemProperty>
618 619
                        <systemProperty>
                            <name>keystore.file</name>
620
                            <value>${project.build.directory}/atlas.keystore
621 622 623 624
                            </value>
                        </systemProperty>
                        <systemProperty>
                            <name>truststore.file</name>
625
                            <value>${project.build.directory}/atlas.keystore</value>
626
                        </systemProperty>
627
                        <systemProperty>
628
                            <name>atlas.home</name>
629 630
                            <value>${project.build.directory}</value>
                        </systemProperty>
631 632 633 634
                        <systemProperty>
                            <name>atlas.data</name>
                            <value>${project.build.directory}/data</value>
                        </systemProperty>
635 636
                        <systemProperty>
                            <key>atlas.conf</key>
637
                            <value>${project.build.directory}/../../intg/target/test-classes</value>
638
                        </systemProperty>
639
                    </systemProperties>
640
                    <stopKey>atlas-stop</stopKey>
641
                    <stopPort>31001</stopPort>
642
                    <stopWait>${jetty-maven-plugin.stopWait}</stopWait>
Shwetha GS committed
643
                    <daemon>${debug.jetty.daemon}</daemon>
644
                    <testClassesDirectory>${project.build.testOutputDirectory}</testClassesDirectory>
645
                    <useTestClasspath>true</useTestClasspath>
646 647 648 649 650 651
                </configuration>
                <executions>
                    <execution>
                        <id>start-jetty</id>
                        <phase>pre-integration-test</phase>
                        <goals>
652
                            <goal>deploy-war</goal>
653 654 655 656 657 658 659 660 661 662 663
                        </goals>
                    </execution>
                    <execution>
                        <id>stop-jetty</id>
                        <phase>post-integration-test</phase>
                        <goals>
                            <goal>stop</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>
664
           <plugin>
665 666 667 668 669 670 671 672 673 674
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-resources-plugin</artifactId>
                <executions>
                    <execution>
                        <id>copy-resources</id>
                        <phase>validate</phase>
                        <goals>
                            <goal>copy-resources</goal>
                        </goals>
                        <configuration>
675
                            <outputDirectory>${basedir}/target/models/</outputDirectory>
676 677
                            <resources>
                                <resource>
678
                                    <directory>${basedir}/../addons/models/</directory>
679 680 681 682 683 684 685
                                    <filtering>true</filtering>
                                </resource>
                            </resources>
                        </configuration>
                    </execution>
                </executions>
            </plugin>
686

687 688 689
            <plugin>
                <groupId>com.webcohesion.enunciate</groupId>
                <artifactId>enunciate-maven-plugin</artifactId>
690
                <version>${enunciate-maven-plugin.version}</version>
691 692 693 694
                <configuration>
                    <configFile>${project.parent.basedir}/build-tools/src/main/resources/enunciate.xml</configFile>
                    <enunciateArtifactId/>
                    <docsDir>${project.build.directory}/api/v2/</docsDir>
695 696
                    <source>1.8</source>
                    <target>1.8</target>
697 698 699
                    <skipEnunciate>${skipEnunciate}</skipEnunciate>
                </configuration>
            </plugin>
700
        </plugins>
701
    </build>
702 703


704
</project>