vFW and vDNS support added to azure-plugin
[multicloud/azure.git] / pom.xml
1 <?xml version="1.0"?>
2 <!--
3   Copyright (c) 2018 Amdocs
4
5   Licensed under the Apache License, Version 2.0 (the "License");
6   you may not use this file except in compliance with the License.
7   You may obtain a copy of the License at:
8
9        http://www.apache.org/licenses/LICENSE-2.0
10
11   Unless required by applicable law or agreed to in writing, software
12   distributed under the License is distributed on an "AS IS" BASIS,
13   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14   -->
15 <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">
16     <parent>
17         <groupId>org.onap.oparent</groupId>
18         <artifactId>oparent</artifactId>
19         <version>1.2.0</version>
20         <relativePath>../oparent</relativePath>
21     </parent>
22     <modelVersion>4.0.0</modelVersion>
23     <groupId>org.onap.multicloud.azure</groupId>
24     <artifactId>multicloud-azure</artifactId>
25     <version>1.2.0-SNAPSHOT</version>
26     <packaging>pom</packaging>
27     <name>multicloud-azure</name>
28     <description>multicloud azure</description>
29     <properties>
30         <encoding>UTF-8</encoding>
31         <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
32         <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
33         <nexusproxy>https://nexus.onap.org</nexusproxy>
34
35         <sonar.sourceEncoding>UTF-8</sonar.sourceEncoding>
36         <sonar.sources>.</sonar.sources>
37         <sonar.junit.reportsPath>xunit-results.xml</sonar.junit.reportsPath>
38         <sonar.python.coverage.reportPath>azure/coverage.xml</sonar.python.coverage.reportPath>
39         <sonar.language>py</sonar.language>
40         <sonar.pluginName>Python</sonar.pluginName>
41         <sonar.inclusions>**/*.py</sonar.inclusions>
42         <sonar.exclusions>**/tests/*,setup.py,**/aria/*</sonar.exclusions>
43     </properties>
44     <build>
45       <pluginManagement>
46         <plugins>
47             <plugin>
48               <groupId>org.codehaus.mojo</groupId>
49               <artifactId>exec-maven-plugin</artifactId>
50               <version>1.2.1</version>
51               <configuration>
52                 <executable>${session.executionRootDirectory}/sonar.sh</executable>
53                 <environmentVariables>
54                   <!-- make mvn properties as env for our script -->
55                   <MVN_PROJECT_GROUPID>${project.groupId}</MVN_PROJECT_GROUPID>
56                   <MVN_PROJECT_ARTIFACTID>${project.artifactId}</MVN_PROJECT_ARTIFACTID>
57                   <MVN_PROJECT_VERSION>${project.version}</MVN_PROJECT_VERSION>
58                 </environmentVariables>
59               </configuration>
60             </plugin>
61         </plugins>
62       </pluginManagement>
63         <plugins>
64         <plugin>
65             <groupId>org.codehaus.mojo</groupId>
66             <artifactId>exec-maven-plugin</artifactId>
67             <version>1.2.1</version>
68             <executions>
69               <execution>
70                 <id>clean phase script</id>
71                 <phase>clean</phase>
72                 <goals>
73                   <goal>exec</goal>
74                 </goals>
75                 <configuration>
76                   <arguments>
77                     <argument>__</argument>
78                     <argument>clean</argument>
79                   </arguments>
80                 </configuration>
81               </execution>
82               <execution>
83                 <id>test script</id>
84                 <phase>test</phase>
85                 <goals>
86                   <goal>exec</goal>
87                 </goals>
88                 <configuration>
89                   <arguments>
90                     <argument>__</argument>
91                     <argument>test</argument>
92                   </arguments>
93                 </configuration>
94               </execution>
95             </executions>
96         </plugin>
97         </plugins>
98     </build>
99 </project>