|
| 1 | +<?xml version="1.0" encoding="UTF-8"?> |
| 2 | +<!-- |
| 3 | +
|
| 4 | + Licensed to the Apache Software Foundation (ASF) under one |
| 5 | + or more contributor license agreements. See the NOTICE file |
| 6 | + distributed with this work for additional information |
| 7 | + regarding copyright ownership. The ASF licenses this file |
| 8 | + to you under the Apache License, Version 2.0 (the |
| 9 | + "License"); you may not use this file except in compliance |
| 10 | + with the License. You may obtain a copy of the License at |
| 11 | +
|
| 12 | + http://www.apache.org/licenses/LICENSE-2.0 |
| 13 | +
|
| 14 | + Unless required by applicable law or agreed to in writing, software |
| 15 | + distributed under the License is distributed on an "AS IS" BASIS, |
| 16 | + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 17 | + See the License for the specific language governing permissions and |
| 18 | + limitations under the License. |
| 19 | +
|
| 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 | + <modelVersion>4.0.0</modelVersion> |
| 23 | + <parent> |
| 24 | + <groupId>com.datastax.oss</groupId> |
| 25 | + <artifactId>java-driver-parent</artifactId> |
| 26 | + <version>4.17.1-SNAPSHOT</version> |
| 27 | + </parent> |
| 28 | + <artifactId>java-driver-distribution-tests</artifactId> |
| 29 | + <name>Apache Cassandra Java Driver - distribution tests</name> |
| 30 | + <dependencyManagement> |
| 31 | + <dependencies> |
| 32 | + <dependency> |
| 33 | + <groupId>${project.groupId}</groupId> |
| 34 | + <artifactId>java-driver-bom</artifactId> |
| 35 | + <version>${project.version}</version> |
| 36 | + <type>pom</type> |
| 37 | + <scope>import</scope> |
| 38 | + </dependency> |
| 39 | + </dependencies> |
| 40 | + </dependencyManagement> |
| 41 | + <dependencies> |
| 42 | + <dependency> |
| 43 | + <groupId>com.datastax.oss</groupId> |
| 44 | + <artifactId>java-driver-test-infra</artifactId> |
| 45 | + <scope>test</scope> |
| 46 | + </dependency> |
| 47 | + <dependency> |
| 48 | + <groupId>com.datastax.oss</groupId> |
| 49 | + <artifactId>java-driver-query-builder</artifactId> |
| 50 | + <scope>test</scope> |
| 51 | + </dependency> |
| 52 | + <dependency> |
| 53 | + <groupId>com.datastax.oss</groupId> |
| 54 | + <artifactId>java-driver-mapper-processor</artifactId> |
| 55 | + <scope>test</scope> |
| 56 | + </dependency> |
| 57 | + <dependency> |
| 58 | + <groupId>com.datastax.oss</groupId> |
| 59 | + <artifactId>java-driver-mapper-runtime</artifactId> |
| 60 | + <scope>test</scope> |
| 61 | + </dependency> |
| 62 | + <dependency> |
| 63 | + <groupId>com.datastax.oss</groupId> |
| 64 | + <artifactId>java-driver-core</artifactId> |
| 65 | + <scope>test</scope> |
| 66 | + </dependency> |
| 67 | + <dependency> |
| 68 | + <groupId>com.datastax.oss</groupId> |
| 69 | + <artifactId>java-driver-metrics-micrometer</artifactId> |
| 70 | + <scope>test</scope> |
| 71 | + </dependency> |
| 72 | + <dependency> |
| 73 | + <groupId>com.datastax.oss</groupId> |
| 74 | + <artifactId>java-driver-metrics-microprofile</artifactId> |
| 75 | + <scope>test</scope> |
| 76 | + </dependency> |
| 77 | + <dependency> |
| 78 | + <groupId>junit</groupId> |
| 79 | + <artifactId>junit</artifactId> |
| 80 | + <scope>test</scope> |
| 81 | + </dependency> |
| 82 | + </dependencies> |
| 83 | + <build> |
| 84 | + <plugins> |
| 85 | + <plugin> |
| 86 | + <groupId>org.apache.maven.plugins</groupId> |
| 87 | + <artifactId>maven-surefire-plugin</artifactId> |
| 88 | + <configuration> |
| 89 | + <jvm>${testing.jvm}/bin/java</jvm> |
| 90 | + <argLine>${mockitoopens.argline}</argLine> |
| 91 | + <threadCount>1</threadCount> |
| 92 | + </configuration> |
| 93 | + </plugin> |
| 94 | + <plugin> |
| 95 | + <groupId>org.revapi</groupId> |
| 96 | + <artifactId>revapi-maven-plugin</artifactId> |
| 97 | + <configuration> |
| 98 | + <skip>true</skip> |
| 99 | + </configuration> |
| 100 | + </plugin> |
| 101 | + <plugin> |
| 102 | + <artifactId>maven-install-plugin</artifactId> |
| 103 | + <configuration> |
| 104 | + <skip>true</skip> |
| 105 | + </configuration> |
| 106 | + </plugin> |
| 107 | + <plugin> |
| 108 | + <artifactId>maven-deploy-plugin</artifactId> |
| 109 | + <configuration> |
| 110 | + <skip>true</skip> |
| 111 | + </configuration> |
| 112 | + </plugin> |
| 113 | + <plugin> |
| 114 | + <groupId>org.sonatype.plugins</groupId> |
| 115 | + <artifactId>nexus-staging-maven-plugin</artifactId> |
| 116 | + <configuration> |
| 117 | + <skipNexusStagingDeployMojo>true</skipNexusStagingDeployMojo> |
| 118 | + </configuration> |
| 119 | + </plugin> |
| 120 | + </plugins> |
| 121 | + </build> |
| 122 | +</project> |
0 commit comments