|
| 1 | +<!-- |
| 2 | + Licensed to the Apache Software Foundation (ASF) under one |
| 3 | + or more contributor license agreements. See the NOTICE file |
| 4 | + distributed with this work for additional information |
| 5 | + regarding copyright ownership. The ASF licenses this file |
| 6 | + to you under the Apache License, Version 2.0 (the |
| 7 | + "License"); you may not use this file except in compliance |
| 8 | + with the License. You may obtain a copy of the License at |
| 9 | +
|
| 10 | + http://www.apache.org/licenses/LICENSE-2.0 |
| 11 | +
|
| 12 | + Unless required by applicable law or agreed to in writing, |
| 13 | + software distributed under the License is distributed on an |
| 14 | + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY |
| 15 | + KIND, either express or implied. See the License for the |
| 16 | + specific language governing permissions and limitations |
| 17 | + under the License. |
| 18 | +--> |
| 19 | +<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 20 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 21 | + <modelVersion>4.0.0</modelVersion> |
| 22 | + <artifactId>cloud-plugin-storage-volume-ontap</artifactId> |
| 23 | + <name>Apache CloudStack Plugin - Storage Volume ONTAP Provider</name> |
| 24 | + <parent> |
| 25 | + <groupId>org.apache.cloudstack</groupId> |
| 26 | + <artifactId>cloudstack-plugins</artifactId> |
| 27 | + <version>4.23.0.0-SNAPSHOT</version> |
| 28 | + <relativePath>../../../pom.xml</relativePath> |
| 29 | + </parent> |
| 30 | + <properties> |
| 31 | + <spring-cloud.version>2021.0.7</spring-cloud.version> |
| 32 | + <openfeign.version>11.0</openfeign.version> |
| 33 | + <json.version>20230227</json.version> |
| 34 | + <httpclient.version>4.5.14</httpclient.version> |
| 35 | + <swagger-annotations.version>1.6.2</swagger-annotations.version> |
| 36 | + <maven-compiler-plugin.version>3.8.1</maven-compiler-plugin.version> |
| 37 | + <maven-surefire-plugin.version>2.22.2</maven-surefire-plugin.version> |
| 38 | + <jackson-databind.version>2.13.4</jackson-databind.version> |
| 39 | + <assertj.version>3.24.2</assertj.version> |
| 40 | + </properties> |
| 41 | + <dependencyManagement> |
| 42 | + <dependencies> |
| 43 | + <dependency> |
| 44 | + <groupId>org.springframework.cloud</groupId> |
| 45 | + <artifactId>spring-cloud-dependencies</artifactId> |
| 46 | + <version>${spring-cloud.version}</version> |
| 47 | + <type>pom</type> |
| 48 | + <scope>import</scope> |
| 49 | + </dependency> |
| 50 | + </dependencies> |
| 51 | + </dependencyManagement> |
| 52 | + <dependencies> |
| 53 | + <dependency> |
| 54 | + <groupId>org.apache.cloudstack</groupId> |
| 55 | + <artifactId>cloud-plugin-storage-volume-default</artifactId> |
| 56 | + <version>${project.version}</version> |
| 57 | + </dependency> |
| 58 | + <dependency> |
| 59 | + <groupId>org.json</groupId> |
| 60 | + <artifactId>json</artifactId> |
| 61 | + <version>${json.version}</version> |
| 62 | + </dependency> |
| 63 | + <dependency> |
| 64 | + <groupId>io.github.openfeign</groupId> |
| 65 | + <artifactId>feign-core</artifactId> |
| 66 | + <version>${openfeign.version}</version> |
| 67 | + </dependency> |
| 68 | + <dependency> |
| 69 | + <groupId>io.github.openfeign</groupId> |
| 70 | + <artifactId>feign-httpclient</artifactId> |
| 71 | + <version>${openfeign.version}</version> |
| 72 | + </dependency> |
| 73 | + <dependency> |
| 74 | + <groupId>io.github.openfeign</groupId> |
| 75 | + <artifactId>feign-jackson</artifactId> |
| 76 | + <version>${openfeign.version}</version> |
| 77 | + </dependency> |
| 78 | + <dependency> |
| 79 | + <groupId>com.fasterxml.jackson.core</groupId> |
| 80 | + <artifactId>jackson-databind</artifactId> |
| 81 | + <version>${jackson-databind.version}</version> |
| 82 | + </dependency> |
| 83 | + <dependency> |
| 84 | + <groupId>org.apache.httpcomponents</groupId> |
| 85 | + <artifactId>httpclient</artifactId> |
| 86 | + <version>${httpclient.version}</version> |
| 87 | + </dependency> |
| 88 | + <dependency> |
| 89 | + <groupId>org.apache.cloudstack</groupId> |
| 90 | + <artifactId>cloud-engine-storage-volume</artifactId> |
| 91 | + <version>${project.version}</version> |
| 92 | + </dependency> |
| 93 | + <dependency> |
| 94 | + <groupId>io.swagger</groupId> |
| 95 | + <artifactId>swagger-annotations</artifactId> |
| 96 | + <version>${swagger-annotations.version}</version> |
| 97 | + </dependency> |
| 98 | + <!-- JUnit 5 --> |
| 99 | + <dependency> |
| 100 | + <groupId>org.junit.jupiter</groupId> |
| 101 | + <artifactId>junit-jupiter-engine</artifactId> |
| 102 | + <version>5.8.1</version> |
| 103 | + <scope>test</scope> |
| 104 | + </dependency> |
| 105 | + |
| 106 | + <!-- Mockito --> |
| 107 | + <dependency> |
| 108 | + <groupId>org.mockito</groupId> |
| 109 | + <artifactId>mockito-core</artifactId> |
| 110 | + <version>3.12.4</version> |
| 111 | + <scope>test</scope> |
| 112 | + </dependency> |
| 113 | + <dependency> |
| 114 | + <groupId>org.mockito</groupId> |
| 115 | + <artifactId>mockito-junit-jupiter</artifactId> |
| 116 | + <version>5.2.0</version> |
| 117 | + <scope>test</scope> |
| 118 | + </dependency> |
| 119 | + |
| 120 | + <!-- Mockito Inline (for static method mocking) --> |
| 121 | + <dependency> |
| 122 | + <groupId>org.mockito</groupId> |
| 123 | + <artifactId>mockito-inline</artifactId> |
| 124 | + <version>3.12.4</version> |
| 125 | + <scope>test</scope> |
| 126 | + </dependency> |
| 127 | + <dependency> |
| 128 | + <groupId>org.assertj</groupId> |
| 129 | + <artifactId>assertj-core</artifactId> |
| 130 | + <version>${assertj.version}</version> |
| 131 | + <scope>test</scope> |
| 132 | + </dependency> |
| 133 | + </dependencies> |
| 134 | + <repositories> |
| 135 | + <repository> |
| 136 | + <id>central</id> |
| 137 | + <name>Maven Central</name> |
| 138 | + <url>https://repo.maven.apache.org/maven2</url> |
| 139 | + </repository> |
| 140 | + </repositories> |
| 141 | + <build> |
| 142 | + <plugins> |
| 143 | + <plugin> |
| 144 | + <groupId>org.apache.maven.plugins</groupId> |
| 145 | + <artifactId>maven-compiler-plugin</artifactId> |
| 146 | + <version>${maven-compiler-plugin.version}</version> |
| 147 | + <configuration> |
| 148 | + <source>11</source> |
| 149 | + <target>11</target> |
| 150 | + </configuration> |
| 151 | + </plugin> |
| 152 | + <plugin> |
| 153 | + <artifactId>maven-surefire-plugin</artifactId> |
| 154 | + <version>${maven-surefire-plugin.version}</version> |
| 155 | + <configuration> |
| 156 | + <skipTests>false</skipTests> |
| 157 | + <includes> |
| 158 | + <include>**/*Test.java</include> |
| 159 | + </includes> |
| 160 | + </configuration> |
| 161 | + <executions> |
| 162 | + <execution> |
| 163 | + <phase>integration-test</phase> |
| 164 | + <goals> |
| 165 | + <goal>test</goal> |
| 166 | + </goals> |
| 167 | + </execution> |
| 168 | + </executions> |
| 169 | + </plugin> |
| 170 | + </plugins> |
| 171 | + </build> |
| 172 | +</project> |
0 commit comments