aboutsummaryrefslogtreecommitdiffstats
path: root/participant/participant-impl/participant-impl-kubernetes/pom.xml
blob: a81f129275d498600f3c75f304dc5846e08a7c8b (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
<!--
  ============LICENSE_START=======================================================
  Copyright (C) 2021 Nordix Foundation.
  ================================================================================
  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.

  SPDX-License-Identifier: Apache-2.0
  ============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.policy.clamp.participant</groupId>
        <artifactId>policy-clamp-participant-impl</artifactId>
        <version>6.4.0-SNAPSHOT</version>
    </parent>

    <artifactId>policy-clamp-participant-impl-kubernetes</artifactId>
    <name>${project.artifactId}</name>
    <description>Kubernetes participant, that allows k8s pods to partake in automation compositions</description>

    <build>
        <resources>
            <!-- Output the version of the automation composition system -->
            <resource>
                <directory>src/main/resources</directory>
                <filtering>true</filtering>
                <includes>
                    <include>**/version.txt</include>
                </includes>
            </resource>
            <resource>
                <directory>src/main/resources</directory>
                <filtering>false</filtering>
                <excludes>
                    <exclude>**/version.txt</exclude>
                </excludes>
            </resource>
        </resources>
        <plugins>
            <plugin>
                <groupId>io.swagger.codegen.v3</groupId>
                <artifactId>swagger-codegen-maven-plugin</artifactId>
                <version>${version.swagger.codegen.v3}</version>
                <executions>
                    <execution>
                        <id>code-gen</id>
                        <goals>
                            <goal>generate</goal>
                        </goals>
                        <configuration>
                            <inputSpec>${project.basedir}/src/main/resources/openapi/openapi.yaml</inputSpec>
                            <invokerPackage>org.onap.policy.clamp.acm.participant.kubernetes.controller</invokerPackage>
                            <apiPackage>org.onap.policy.clamp.acm.participant.kubernetes.controller.genapi</apiPackage>
                            <language>spring</language>
                            <generateModels>false</generateModels>
                            <generateSupportingFiles>false</generateSupportingFiles>
                            <importMappings>
                                ChartList=org.onap.policy.clamp.acm.participant.kubernetes.models.ChartList,
                                InstallationInfo=org.onap.policy.clamp.acm.participant.kubernetes.models.InstallationInfo
                            </importMappings>
                            <configOptions>
                                <sourceFolder>src/gen/java</sourceFolder>
                                <dateLibrary>java11</dateLibrary>
                                <interfaceOnly>true</interfaceOnly>
                                <useTags>true</useTags>
                            </configOptions>
                        </configuration>
                    </execution>
                </executions>
            </plugin>
            <plugin>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-maven-plugin</artifactId>
                <executions>
                    <execution>
                        <goals>
                            <goal>repackage</goal>
                        </goals>
                        <phase>package</phase>
                    </execution>
                </executions>
            </plugin>
        </plugins>
    </build>
</project>
'n557' href='#n557'>557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027
<?xml version="1.0" encoding="UTF-8"?>
<!--
  ============LICENSE_START=======================================================
  ONAP CLAMP
  ================================================================================
  Copyright (C) 2017-2018 AT&T Intellectual Property. 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>
		<groupId>org.onap.clamp</groupId>
		<artifactId>clds</artifactId>
		<version>3.0.0-SNAPSHOT</version>
		<name>clamp</name>

		<parent>
				<groupId>org.onap.oparent</groupId>
				<artifactId>oparent</artifactId>
				<version>1.1.0</version>
		</parent>

		<description>
           This project build the ONAP CLAMP JAR that contains CLAMP back-end code and its UI part.

           By Default "mvn clean install" command will execute also the unit tests
           and the integration tests. The integration tests require a docker engine running.

           If you want to skip the integration test you can by doing:
           "mvn clean install -DskipITs=true"

           For Spring it's possible to specify the application.properties location
           "mvn clean install -Dspring.config.location=classpath:application-test.properties"

           The application.properties contains the location of the CLAMP parameters files:
				- org.onap.clamp.config.files.cldsUsers=classpath:/clds/clds-users.json
				- org.onap.clamp.config.files.globalClds=classpath:/clds/globalClds.properties

		</description>

		<properties>
				<maven.build.timestamp.format>yyyyMMdd'T'HHmmss'Z'</maven.build.timestamp.format>
				<clamp.project.version>${project.version}</clamp.project.version>
				<clamp.build.timestamp>${maven.build.timestamp}</clamp.build.timestamp>
				<maven.compiler.source>1.8</maven.compiler.source>
				<maven.compiler.target>1.8</maven.compiler.target>
				<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
				<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>

				<docker.mariadb.port.host>3306</docker.mariadb.port.host>
				<docker.http-cache.port.host>8085</docker.http-cache.port.host>
				<project.scm.id>git-server</project.scm.id>
				<java.version>1.8</java.version>

				<eelf.core.version>1.0.0</eelf.core.version>
				<camel.version>2.22.0</camel.version>
				<springboot.version>2.0.2.RELEASE</springboot.version>

				<sonar.language>java</sonar.language>
				<sonar.java.coveragePlugin>jacoco</sonar.java.coveragePlugin>
				<sonar.surefire.reportsPath>${project.build.directory}/surefire-reports</sonar.surefire.reportsPath>
				<sonar.jacoco.reportPath>${project.build.directory}/coverage-reports/jacoco.exec</sonar.jacoco.reportPath>
				<sonar.jacoco.itReportPath>${project.build.directory}/coverage-reports/jacoco-it.exec</sonar.jacoco.itReportPath>
				<sonar.jacoco.reportMissing.force.zero>true</sonar.jacoco.reportMissing.force.zero>
				<sonar.projectVersion>${project.version}</sonar.projectVersion>

				<docker.push.registry>localhost:5000</docker.push.registry>
				<docker.pull.registry>nexus3.onap.org:10001</docker.pull.registry>
				<docker.skip.build>true</docker.skip.build>
				<docker.skip.push>true</docker.skip.push>
				<docker.skip.tag>true</docker.skip.tag>
				<skip.staging.artifacts>false</skip.staging.artifacts>
				<python.http.proxy.param></python.http.proxy.param>
				<tomcat.version>8.5.32</tomcat.version>
		</properties>

		<profiles>
				<profile>
						<id>without-test</id>
						<activation>
							<property>
								<name>maven.test.skip</name>
								<value>true</value>
							</property>
						</activation>
						<properties>
							<docker.skip.run>true</docker.skip.run>
							<docker.skip>true</docker.skip>
						</properties>
				</profile>
				<profile>
						<id>without-IT-only</id>
						<activation>
							<property>
								<name>skipITs</name>
								<value>true</value>
							</property>
						</activation>
						<properties>
							<docker.skip.run>true</docker.skip.run>
							<docker.skip>true</docker.skip>
						</properties>
				</profile>
				<profile>
						<id>without-IT-only2</id>
						<activation>
							<property>
								<name>skipTests</name>
								<value>true</value>
							</property>
						</activation>
						<properties>
							<docker.skip.run>true</docker.skip.run>
							<docker.skip>true</docker.skip>
						</properties>
				</profile>
				<profile>
						<id>docker</id>
						<properties>
								<skip.staging.artifacts>true</skip.staging.artifacts>
								<docker.skip.build>false</docker.skip.build>
								<docker.skip.tag>false</docker.skip.tag>
								<docker.skip.push>false</docker.skip.push>
								<docker.skip>false</docker.skip>
						</properties>
				</profile>
		</profiles>

		<distributionManagement>
				<repository>
						<id>ecomp-releases</id>
						<name>Clamp Release Repository</name>
						<url>https://nexus.onap.org/content/repositories/releases/</url>
				</repository>
				<snapshotRepository>
						<id>ecomp-snapshots</id>
						<name>Clamp Snapshot Repository</name>
						<url>https://nexus.onap.org/content/repositories/snapshots/</url>
				</snapshotRepository>
				<site>
						<id>ecomp-site</id>
						<url>dav:https://nexus.onap.org/content/sites/site/org/onap/clamp/${project.version}</url>
				</site>
		</distributionManagement>

		<repositories>
				<repository>
						<id>central</id>
						<name>Maven 2 repository 2</name>
						<url>http://repo2.maven.org/maven2/</url>
				</repository>
				<repository>
						<id>ecomp-releases</id>
						<name>ONAP Release Repository</name>
						<url>https://nexus.onap.org/content/repositories/releases/</url>
				</repository>
				<repository>
						<id>ecomp-staging</id>
						<name>ONAP Staging Repository</name>
						<url>https://nexus.onap.org/content/repositories/staging/</url>
				</repository>
				<repository>
						<id>ecomp-snapshots</id>
						<name>ONAP Snapshot Repository</name>
						<url>https://nexus.onap.org/content/repositories/snapshots/</url>
						<snapshots>
								<enabled>true</enabled>
						</snapshots>
						<releases>
								<enabled>false</enabled>
						</releases>
				</repository>
				<repository>
						<id>spring-repo</id>
						<name>Spring repo</name>
						<url>https://artifacts.alfresco.com/nexus/content/repositories/public/</url>
				</repository>
				<repository>
						<id>repository.jboss.org-public</id>
						<name>JBoss.org Maven repository</name>
						<url>https://repository.jboss.org/nexus/content/groups/public</url>
				</repository>
		</repositories>

		<dependencyManagement>
				<dependencies>
						<!-- Spring Boot BOM -->
						<dependency>
								<groupId>org.springframework.boot</groupId>
								<artifactId>spring-boot-dependencies</artifactId>
								<version>${springboot.version}</version>
								<type>pom</type>
								<scope>import</scope>
						</dependency>
						<!-- Camel BOM -->
						<dependency>
								<groupId>org.apache.camel</groupId>
								<artifactId>camel-spring-boot-dependencies</artifactId>
								<version>${camel.version}</version>
								<type>pom</type>
								<scope>import</scope>
						</dependency>
				</dependencies>
		</dependencyManagement>

		<dependencies>
				<dependency>
						<groupId>com.att.eelf</groupId>
						<artifactId>eelf-core</artifactId>
						<version>${eelf.core.version}</version>
				</dependency>
				<dependency>
						<groupId>org.apache.tomcat.embed</groupId>
						<artifactId>tomcat-embed-core</artifactId>
						<version>${tomcat.version}</version>
				</dependency>
				<dependency>
						<groupId>org.apache.tomcat.embed</groupId>
						<artifactId>tomcat-embed-el</artifactId>
						<version>${tomcat.version}</version>
				</dependency>
				<dependency>
						<groupId>org.apache.tomcat.embed</groupId>
						<artifactId>tomcat-embed-websocket</artifactId>
						<version>${tomcat.version}</version>
				</dependency>
				<dependency>
						<groupId>org.apache.tomcat</groupId>
						<artifactId>tomcat-annotations-api</artifactId>
						<version>${tomcat.version}</version>
				</dependency>
				<!-- For CAMEL -->
				<dependency>
						<groupId>org.apache.camel</groupId>
						<artifactId>camel-spring-boot-starter</artifactId>
				</dependency>
				<dependency>
						<groupId>org.apache.camel</groupId>
						<artifactId>camel-jaxb-starter</artifactId>
				</dependency>
				<dependency>
						<groupId>org.apache.camel</groupId>
						<artifactId>camel-servlet-starter</artifactId>
				</dependency>
				<dependency>
					<groupId>org.apache.camel</groupId> 
					<artifactId>camel-jackson-starter</artifactId>
				</dependency>
				<dependency>
					<groupId>org.apache.camel</groupId>
					<artifactId>camel-swagger-java-starter</artifactId>
					<exclusions>
						<exclusion>
							<groupId>javax.ws.rs</groupId>
							<artifactId>jsr311-api</artifactId>
						</exclusion>
					</exclusions>
				</dependency>
				<dependency>
						<groupId>javax.xml.bind</groupId>
						<artifactId>jaxb-api</artifactId>
						<version>2.3.0</version>
				</dependency>
				<dependency>
					<groupId>org.glassfish.jersey.core</groupId>
					<artifactId>jersey-common</artifactId>
					<version>2.27</version>
				</dependency>
				<!-- Spring famework -->
				<dependency>
						<groupId>org.springframework.boot</groupId>
						<artifactId>spring-boot-starter-web</artifactId>
				</dependency>
				<dependency>
						<groupId>org.springframework.boot</groupId>
						<artifactId>spring-boot-starter-tomcat</artifactId>
				</dependency>
				<dependency>
						<groupId>org.springframework</groupId>
						<artifactId>spring-jdbc</artifactId>
				</dependency>
				<dependency>
						<groupId>org.springframework.boot</groupId>
						<artifactId>spring-boot-starter-security</artifactId>
				</dependency>
				<dependency>
						<groupId>org.springframework.boot</groupId>
						<artifactId>spring-boot-starter-actuator</artifactId>
				</dependency>
				<dependency>
						<groupId>org.springframework.boot</groupId>
					<artifactId>spring-boot-autoconfigure</artifactId>
				</dependency>
				<dependency>
						<groupId>org.springframework.boot</groupId>
						<artifactId>spring-boot-starter-test</artifactId>
						<scope>test</scope>
						<exclusions>
								<exclusion>
										<groupId>com.vaadin.external.google</groupId>
										<artifactId>android-json</artifactId>
								</exclusion>
						</exclusions>
				</dependency>
				<!-- Others dependencies -->
				<dependency>
					<groupId>org.onap.aaf.authz</groupId>
					<artifactId>aaf-cadi-aaf</artifactId>
					<version>2.1.1</version>
					<exclusions>
						<exclusion>
							<groupId>javax.servlet</groupId>
							<artifactId>servlet-api</artifactId>
						</exclusion>
					</exclusions>
				</dependency>
				<dependency>
						<groupId>ch.qos.logback</groupId>
						<artifactId>logback-core</artifactId>
						<version>1.2.3</version>
				</dependency>
				<dependency>
						<groupId>ch.qos.logback</groupId>
						<artifactId>logback-classic</artifactId>
						<version>1.2.3</version>
				</dependency>
				<dependency>
						<groupId>commons-dbcp</groupId>
						<artifactId>commons-dbcp</artifactId>
						<version>1.4</version>
				</dependency>
				<dependency>
						<groupId>commons-io</groupId>
						<artifactId>commons-io</artifactId>
						<version>2.6</version>
				</dependency>
				<dependency>
						<groupId>com.googlecode.json-simple</groupId>
						<artifactId>json-simple</artifactId>
				</dependency>
				<dependency>
						<groupId>org.apache.commons</groupId>
						<artifactId>commons-vfs2</artifactId>
						<version>2.2</version>
				</dependency>
				<dependency>
						<groupId>joda-time</groupId>
						<artifactId>joda-time</artifactId>
				</dependency>
				<dependency>
						<groupId>org.slf4j</groupId>
						<artifactId>slf4j-api</artifactId>
				</dependency>
				<dependency>
						<groupId>javax.ws.rs</groupId>
						<artifactId>javax.ws.rs-api</artifactId>
						<version>2.0</version>
				</dependency>
				<dependency>
						<groupId>junit</groupId>
						<artifactId>junit</artifactId>
				</dependency>
				<dependency>
						<groupId>javax.transaction</groupId>
						<artifactId>jta</artifactId>
						<version>1.1</version>
				</dependency>
				<dependency>
						<groupId>javax.persistence</groupId>
						<artifactId>persistence-api</artifactId>
						<version>1.0.2</version>
				</dependency>
				<dependency>
						<groupId>org.onap.policy.engine</groupId>
						<artifactId>PolicyEngineAPI</artifactId>
						<version>1.2.0</version>
						<exclusions>
								<exclusion>
										<groupId>com.google.guava</groupId>
										<artifactId>guava</artifactId>
								</exclusion>
								<exclusion>
										<artifactId>log4j</artifactId>
										<groupId>log4j</groupId>
								</exclusion>
								<exclusion>
										<groupId>org.slf4j</groupId>
										<artifactId>slf4j-log4j12</artifactId>
								</exclusion>
								<exclusion>
										<artifactId>apache-log4j-extras</artifactId>
										<groupId>log4j</groupId>
								</exclusion>
								<exclusion>
										<groupId>mysql</groupId>
										<artifactId>mysql-connector-java</artifactId>
								</exclusion>
								<exclusion>
										<groupId>commons-io</groupId>
										<artifactId>commons-io</artifactId>
								</exclusion>
								<exclusion>
										<artifactId>grizzly-http-server</artifactId>
										<groupId>org.glassfish.grizzly</groupId>
								</exclusion>
								<exclusion>
										<groupId>org.onap.dmaap.messagerouter.dmaapclient</groupId>
										<artifactId>dmaapClient</artifactId>
								</exclusion>
								<exclusion>
										<groupId>org.onap.policy.common</groupId>
										<artifactId>integrity-monitor</artifactId>
								</exclusion>
								<exclusion>
										<groupId>org.onap.policy.common</groupId>
										<artifactId>integrity-audit</artifactId>
								</exclusion>
								<exclusion>
										<groupId>org.onap.aaf.cadi</groupId>
										<artifactId>cadi-aaf</artifactId>
								</exclusion>
								<exclusion>
										<groupId>javax.jms</groupId>
										<artifactId>jms</artifactId>
								</exclusion>
						</exclusions>
				</dependency>
				<dependency>
						<groupId>org.onap.policy.common</groupId>
						<artifactId>ONAP-Logging</artifactId>
						<version>1.1.3</version>
						<exclusions>
								<exclusion>
										<artifactId>log4j</artifactId>
										<groupId>log4j</groupId>
								</exclusion>
								<exclusion>
										<groupId>org.slf4j</groupId>
										<artifactId>slf4j-log4j12</artifactId>
								</exclusion>
								<exclusion>
										<artifactId>apache-log4j-extras</artifactId>
										<groupId>log4j</groupId>
								</exclusion>
						</exclusions>
				</dependency>
				<dependency>
						<groupId>org.onap.policy.drools-applications</groupId>
						<artifactId>policy-yaml</artifactId>
						<version>1.1.3</version>
						<exclusions>
								<exclusion>
										<artifactId>log4j</artifactId>
										<groupId>log4j</groupId>
								</exclusion>
								<exclusion>
										<groupId>org.slf4j</groupId>
										<artifactId>slf4j-log4j12</artifactId>
								</exclusion>
								<exclusion>
										<artifactId>apache-log4j-extras</artifactId>
										<groupId>log4j</groupId>
								</exclusion>
						</exclusions>
				</dependency>
				<dependency>
						<groupId>org.onap.policy.drools-applications</groupId>
						<artifactId>sdc</artifactId>
						<version>1.1.3</version>
						<exclusions>
								<exclusion>
										<artifactId>log4j</artifactId>
										<groupId>log4j</groupId>
								</exclusion>
								<exclusion>
										<groupId>org.slf4j</groupId>
										<artifactId>slf4j-log4j12</artifactId>
								</exclusion>
								<exclusion>
										<artifactId>apache-log4j-extras</artifactId>
										<groupId>log4j</groupId>
								</exclusion>
						</exclusions>
				</dependency>
				<dependency>
						<groupId>org.onap.policy.drools-applications</groupId>
						<artifactId>aai</artifactId>
						<version>1.1.3</version>
						<exclusions>
								<exclusion>
										<artifactId>log4j</artifactId>
										<groupId>log4j</groupId>
								</exclusion>
								<exclusion>
										<groupId>org.slf4j</groupId>
										<artifactId>slf4j-log4j12</artifactId>
								</exclusion>
								<exclusion>
										<artifactId>apache-log4j-extras</artifactId>
										<groupId>log4j</groupId>
								</exclusion>
						</exclusions>
				</dependency>
				<dependency>
						<groupId>org.apache.commons</groupId>
						<artifactId>commons-csv</artifactId>
						<version>1.3</version>
				</dependency>
				<!-- Other dependencies to fix nexus IQ reported vulnerabilities -->
				<dependency>
						<groupId>org.codehaus.plexus</groupId>
						<artifactId>plexus-utils</artifactId>
						<version>3.0.24</version>
				</dependency>
				<dependency>
						<groupId>commons-fileupload</groupId>
						<artifactId>commons-fileupload</artifactId>
						<version>1.3.3</version>
				</dependency>
				<dependency>
						<groupId>org.jboss.spec.javax.ws.rs</groupId>
						<artifactId>jboss-jaxrs-api_2.0_spec</artifactId>
						<version>1.0.1.Final</version>
				</dependency>
				<dependency>
						<groupId>com.google.guava</groupId>
						<artifactId>guava</artifactId>
						<version>25.1-jre</version>
				</dependency>
				<!-- Remove the MYSQL connector and replace it by Mariadb -->
				<dependency>
						<groupId>org.mariadb.jdbc</groupId>
						<artifactId>mariadb-java-client</artifactId>
						<version>2.2.1</version>
				</dependency>
				<!-- For SDC Controller -->
				<dependency>
						<groupId>org.onap.sdc.sdc-distribution-client</groupId>
						<artifactId>sdc-distribution-client</artifactId>
						<version>1.3.0</version>
				</dependency>
				<dependency>
						<groupId>org.onap.sdc.sdc-tosca</groupId>
						<artifactId>sdc-tosca</artifactId>
						<version>1.3.0</version>
				</dependency>
				<!-- TESTING -->
				<dependency>
						<groupId>org.assertj</groupId>
						<artifactId>assertj-core</artifactId>
						<version>3.10.0</version>
						<scope>test</scope>
				</dependency>
				<dependency>
					<groupId>org.mockito</groupId>
					<artifactId>mockito-core</artifactId>
					<version>1.10.19</version>
					<scope>test</scope>
				</dependency>
		</dependencies>
		<pluginRepositories>
				<pluginRepository>
						<id>central-for-plugins</id>
						<name>Maven 2 repository 2</name>
						<url>http://repo2.maven.org/maven2/</url>
				</pluginRepository>
				<pluginRepository>
						<snapshots>
								<enabled>false</enabled>
						</snapshots>
						<id>jcenter-releases-for-plugins</id>
						<name>jcenter</name>
						<url>http://jcenter.bintray.com</url>
				</pluginRepository>
		</pluginRepositories>
		<build>
				<finalName>clamp</finalName>

				<testResources>
						<testResource>
								<directory>src/test/resources</directory>
								<excludes>
										<exclude>**/*.jks</exclude>
										<exclude>**/*.csar</exclude>
								</excludes>
								<filtering>true</filtering>
						</testResource>
						<testResource>
								<directory>src/test/resources/https</directory>
								<includes>
										<include>**.jks</include>
								</includes>
								<filtering>false</filtering>
								<targetPath>https</targetPath>
						</testResource>
						<testResource>
								<directory>src/test/resources/example/sdc</directory>
								<includes>
										<include>**.csar</include>
								</includes>
								<filtering>false</filtering>
								<targetPath>example/sdc</targetPath>
						</testResource>
				</testResources>
				<resources>
						<resource>
								<directory>src/main/resources</directory>
								<filtering>true</filtering>
						</resource>
						<resource>
								<directory>src/main/docker</directory>
								<includes>
										<include>**/*</include>
								</includes>
								<filtering>true</filtering>
						</resource>
				</resources>

				<plugins>
						<!-- Read the swagger.json file and the definition from SwaggerConfig.java; 
							generate a list of .adoc files containing the APIs info in more structured 
							way -->
						<plugin>
								<groupId>io.github.swagger2markup</groupId>
								<artifactId>swagger2markup-maven-plugin</artifactId>
								<version>1.3.3</version>
								<dependencies>
										<dependency>
												<groupId>io.github.swagger2markup</groupId>
												<artifactId>swagger2markup-import-files-ext</artifactId>
												<version>1.3.3</version>
										</dependency>
										<dependency>
												<groupId>io.github.swagger2markup</groupId>
												<artifactId>swagger2markup-spring-restdocs-ext</artifactId>
												<version>1.3.3</version>
										</dependency>
								</dependencies>
								<configuration>
										<swaggerInput>${project.basedir}/docs/swagger/swagger.json</swaggerInput>
										<outputDir>${project.build.directory}/asciidoc/generated</outputDir>
										<config>
												<swagger2markup.markupLanguage>ASCIIDOC</swagger2markup.markupLanguage>
										</config>
								</configuration>
								<executions>
										<execution>
												<phase>post-integration-test</phase>
												<goals>
														<goal>convertSwagger2markup</goal>
												</goals>
										</execution>
								</executions>
						</plugin>

						<!-- Run the generated asciidoc through Asciidoctor to generate other 
								documentation types, such as PDFs or HTML5 -->
						<plugin>
								<groupId>org.asciidoctor</groupId>
								<artifactId>asciidoctor-maven-plugin</artifactId>
								<version>1.5.6</version>
								<dependencies>
										<dependency>
												<groupId>org.asciidoctor</groupId>
												<artifactId>asciidoctorj-pdf</artifactId>
												<version>1.5.0-alpha.10.1</version>
										</dependency>
										<dependency>
												<groupId>org.jruby</groupId>
												<artifactId>jruby-complete</artifactId>
												<version>1.7.21</version>
										</dependency>
								</dependencies>
								<configuration>
										<sourceDirectory>${project.basedir}/src/main/resources/asciidoc</sourceDirectory>
										<sourceDocumentName>swagger.adoc</sourceDocumentName>
										<attributes>
												<doctype>book</doctype>
												<toc>left</toc>
												<toclevels>3</toclevels>
												<numbered></numbered>
												<hardbreaks></hardbreaks>
												<sectlinks></sectlinks>
												<sectanchors></sectanchors>
												<generated>${project.build.directory}/asciidoc/generated</generated>
										</attributes>
								</configuration>

								<executions>
										<execution>
												<id>output-html</id>
												<phase>post-integration-test</phase>
												<goals>
														<goal>process-asciidoc</goal>
												</goals>
												<configuration>
														<backend>html5</backend>
														<outputDirectory>${project.basedir}/docs/swagger</outputDirectory>
														<outputDirectory>${project.basedir}/src/main/resources/META-INF/resources/</outputDirectory>
												</configuration>
										</execution>
										<execution>
												<id>output-pdf</id>
												<phase>post-integration-test</phase>
												<goals>
														<goal>process-asciidoc</goal>
												</goals>
												<configuration>
														<backend>pdf</backend>
														<outputDirectory>${project.basedir}/docs/swagger</outputDirectory>
												</configuration>
										</execution>
								</executions>
						</plugin>
						<plugin>
								<groupId>org.codehaus.groovy.maven</groupId>
								<artifactId>gmaven-plugin</artifactId>
								<version>1.0</version>
								<executions>
										<execution>
												<phase>validate</phase>
												<goals>
														<goal>execute</goal>
												</goals>
												<configuration>
														<source>${project.basedir}/src/main/script/TagVersion.groovy</source>
												</configuration>
										</execution>
								</executions>
						</plugin>
						<plugin>
								<groupId>org.apache.maven.plugins</groupId>
								<artifactId>maven-jar-plugin</artifactId>
								<version>3.0.2</version>
								<executions>
										<execution>
												<id>jar-with-only-classes</id>
												<phase>package</phase>
												<goals>
														<goal>jar</goal>
												</goals>
												<configuration>
														<classifier>classes</classifier>
														<includes>
																<include>org/**</include>
														</includes>
												</configuration>
										</execution>
								</executions>
						</plugin>
						<plugin>
								<groupId>org.codehaus.mojo</groupId>
								<artifactId>build-helper-maven-plugin</artifactId>
								<version>3.0.0</version>
								<executions>
										<execution>
												<goals>
														<goal>attach-artifact</goal>
												</goals>
												<phase>package</phase>
												<configuration>
														<artifacts>
																<artifact>
																		<file>${project.build.directory}/clamp-classes.jar</file>
																		<type>jar</type>
																		<classifier>classes</classifier>
																</artifact>
														</artifacts>
												</configuration>
										</execution>
								</executions>
						</plugin>

						<plugin>
								<groupId>org.springframework.boot</groupId>
								<artifactId>spring-boot-maven-plugin</artifactId>
								<!-- Temporary fix -->
								<version>1.5.13.RELEASE</version>
								<!-- <version>${springboot.version}</version> -->
								<executions>
										<execution>
												<goals>
														<goal>repackage</goal>
												</goals>
												<phase>package</phase>
										</execution>
								</executions>
						</plugin>
						<plugin>
								<groupId>org.sonatype.plugins</groupId>
								<artifactId>nexus-staging-maven-plugin</artifactId>
								<version>1.6.7</version>
								<extensions>true</extensions>
								<configuration>
										<nexusUrl>https://nexus.onap.org</nexusUrl>
										<stagingProfileId>176c31dfe190a</stagingProfileId>
										<serverId>ecomp-staging</serverId>
										<skipNexusStagingDeployMojo>${skip.staging.artifacts}</skipNexusStagingDeployMojo>
								</configuration>
						</plugin>

						<plugin>
								<groupId>org.apache.maven.plugins</groupId>
								<artifactId>maven-surefire-plugin</artifactId>
								<version>2.19.1</version>
								<configuration>
										<forkCount>1</forkCount>
										<reuseForks>false</reuseForks>
								</configuration>
						</plugin>

						<plugin>
								<groupId>org.apache.maven.plugins</groupId>
								<artifactId>maven-failsafe-plugin</artifactId>
								<version>2.17</version>

								<executions>
										<execution>
												<id>integration-tests</id>
												<goals>
														<goal>integration-test</goal>
														<goal>verify</goal>
												</goals>
												<configuration>
														<includes>
																<include>**/*ItCase.java</include>
														</includes>
														<forkCount>1</forkCount>
														<reuseForks>false</reuseForks>
												</configuration>
										</execution>
								</executions>

						</plugin>
						<plugin>
								<groupId>io.fabric8</groupId>
								<artifactId>docker-maven-plugin</artifactId>
								<version>0.26.0</version>
								<configuration>
										<verbose>true</verbose>
										<apiVersion>1.23</apiVersion>
										<images>
												<image>
														<name>library/mariadb:10.1.11</name>
														<alias>mariadb</alias>
														<run>
																<env>
																		<MYSQL_ROOT_PASSWORD>strong_pitchou</MYSQL_ROOT_PASSWORD>
																</env>
																<hostname>mariadb</hostname>
																<volumes>
																		<bind>
																				<volume>${project.basedir}/extra/sql/:/docker-entrypoint-initdb.d</volume>
																				<volume>${project.basedir}/extra/docker/mariadb/conf1:/etc/mysql/conf.d</volume>
																		</bind>
																</volumes>
																<wait>
																		<log>socket: '/var/run/mysqld/mysqld.sock'  port: 3306  mariadb.org binary distribution</log>
																		<time>600000</time>
																</wait>
																<ports>
																		<port>${docker.mariadb.port.host}:3306</port>
																</ports>
														</run>
												</image>
												<image>
														<name>library/python:2-slim</name>
														<alias>python</alias>
														<run>
																<hostname>python</hostname>
																<volumes>
																		<bind>
																				<volume>${project.basedir}/src/test/resources/http-cache/:/usr/src/http-cache-app</volume>
																				<volume>${project.basedir}/src/test/resources/http-cache/example/:/usr/src/http-cache-app/data-cache</volume>
																		</bind>
																</volumes>
																<wait>
																		<tcp>
																				<ports>
																						<port>8080</port>
																				</ports>
																				<mode>direct</mode>
																		</tcp>
																		<time>120000</time>
																</wait>
																<ports>
																		<port>${docker.http-cache.port.host}:8080</port>
																</ports>
																<workingDir>/usr/src/http-cache-app</workingDir>
																<cmd>
																		<shell>./start_http_cache.sh ${python.http.proxy.param} --python_proxyaddress=localhost:${docker.http-cache.port.host}</shell>
																</cmd>
														</run>
												</image>
												<image>
														<name>onap/clamp</name>
														<alias>onap-clamp</alias>
														<run>
															<skip>true</skip>
														</run>
														<build>
																<cleanup>true</cleanup>
																<tags>
																		<tag>latest</tag>
																		<tag>${project.docker.latesttagtimestamp.version}</tag>
																		<tag>${project.docker.latesttag.version}</tag>
																</tags>
																<!-- A relative path is looked up in ${project.basedir}/src/main/docker 
																		by default -->
																<dockerFile>Dockerfile</dockerFile>
																<assembly>
																		<descriptor>assembly/clamp-files.xml</descriptor>
																		<name>onap-clamp</name>
																</assembly>
														</build>
												</image>
										</images>
								</configuration>

								<executions>
										<execution>
												<id>generate-images</id>
												<phase>install</phase>
												<goals>
														<goal>build</goal>
												</goals>
										</execution>
										<execution>
												<id>push-images</id>
												<phase>deploy</phase>
												<goals>
														<goal>push</goal>
												</goals>
										</execution>
										<execution>
												<id>docker-start-for-it</id>
												<phase>pre-integration-test</phase>
												<goals>
														<goal>start</goal>
												</goals>
										</execution>
										<execution>
												<id>docker-stop-for-it</id>
												<phase>post-integration-test</phase>
												<goals>
														<goal>stop</goal>
												</goals>
										</execution>
								</executions>
						</plugin>

						<plugin>
								<groupId>org.jacoco</groupId>
								<artifactId>jacoco-maven-plugin</artifactId>
								<version>0.7.7.201606060606</version>
								<configuration>
										<dumpOnExit>true</dumpOnExit>
										<includes>
												<include>org.onap.clamp.*</include>
										</includes>
								</configuration>
								<executions>
										<execution>
												<id>pre-unit-test</id>
												<goals>
														<goal>prepare-agent</goal>
												</goals>
												<configuration>
														<destFile>${project.build.directory}/coverage-reports/jacoco.exec</destFile>
														<!-- <append>true</append> -->
												</configuration>
										</execution>
										<execution>
												<id>pre-integration-test</id>
												<phase>pre-integration-test</phase>
												<goals>
														<goal>prepare-agent</goal>
												</goals>
												<configuration>
														<destFile>${project.build.directory}/coverage-reports/jacoco-it.exec</destFile>
														<!-- <append>true</append> -->
												</configuration>
										</execution>
										<execution>
												<goals>
														<goal>merge</goal>
												</goals>
												<phase>post-integration-test</phase>
												<configuration>
														<fileSets>
																<fileSet implementation="org.apache.maven.shared.model.fileset.FileSet">
																		<directory>${project.build.directory}/coverage-reports</directory>
																		<includes>
																				<include>*.exec</include>
																		</includes>
																</fileSet>
														</fileSets>
														<destFile>${project.build.directory}/jacoco-dev.exec</destFile>
												</configuration>
										</execution>
								</executions>
						</plugin>

						<!-- This plugin will be useful when we will have multi-modules project -->
						<plugin>
								<groupId>org.codehaus.mojo</groupId>
								<artifactId>versions-maven-plugin</artifactId>
								<version>1.3.1</version>
						</plugin>
				</plugins>
		</build>
</project>