|
| 1 | +<?xml version="1.0" encoding="UTF-8"?> |
| 2 | +<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 3 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/maven-v4_0_0.xsd"> |
| 4 | + <modelVersion>4.0.0</modelVersion> |
| 5 | + |
| 6 | + <artifactId>couchbase-client-bom</artifactId> |
| 7 | + <version>${revision}</version> |
| 8 | + <packaging>pom</packaging> |
| 9 | + |
| 10 | + <parent> |
| 11 | + <groupId>com.couchbase.client</groupId> |
| 12 | + <artifactId>couchbase-jvm-clients</artifactId> |
| 13 | + <version>${revision}</version> |
| 14 | + </parent> |
| 15 | + |
| 16 | + <name>Couchbase JVM Client BOM</name> |
| 17 | + <description>Bill of Materials POM for Couchbase JVM SDKs</description> |
| 18 | + |
| 19 | + <dependencyManagement> |
| 20 | + <dependencies> |
| 21 | + <dependency> |
| 22 | + <groupId>com.couchbase.client</groupId> |
| 23 | + <artifactId>core-io</artifactId> |
| 24 | + <version>${revision}</version> |
| 25 | + </dependency> |
| 26 | + <dependency> |
| 27 | + <groupId>com.couchbase.client</groupId> |
| 28 | + <artifactId>java-client</artifactId> |
| 29 | + <version>${revision}</version> |
| 30 | + </dependency> |
| 31 | + <dependency> |
| 32 | + <groupId>com.couchbase.client</groupId> |
| 33 | + <artifactId>scala-client_2.12</artifactId> |
| 34 | + <version>${revision}</version> |
| 35 | + </dependency> |
| 36 | + <dependency> |
| 37 | + <groupId>com.couchbase.client</groupId> |
| 38 | + <artifactId>scala-client_2.13</artifactId> |
| 39 | + <version>${revision}</version> |
| 40 | + </dependency> |
| 41 | + <dependency> |
| 42 | + <groupId>com.couchbase.client</groupId> |
| 43 | + <artifactId>kotlin-client</artifactId> |
| 44 | + <version>${revision}</version> |
| 45 | + </dependency> |
| 46 | + <dependency> |
| 47 | + <groupId>com.couchbase.client</groupId> |
| 48 | + <artifactId>couchbase-columnar-java-client</artifactId> |
| 49 | + <version>${revision}</version> |
| 50 | + </dependency> |
| 51 | + <dependency> |
| 52 | + <groupId>com.couchbase.client</groupId> |
| 53 | + <artifactId>metrics-micrometer</artifactId> |
| 54 | + <version>${revision}</version> |
| 55 | + </dependency> |
| 56 | + <dependency> |
| 57 | + <groupId>com.couchbase.client</groupId> |
| 58 | + <artifactId>metrics-opentelemetry</artifactId> |
| 59 | + <version>${revision}</version> |
| 60 | + </dependency> |
| 61 | + <dependency> |
| 62 | + <groupId>com.couchbase.client</groupId> |
| 63 | + <artifactId>tracing-micrometer-observation</artifactId> |
| 64 | + <version>${revision}</version> |
| 65 | + </dependency> |
| 66 | + <dependency> |
| 67 | + <groupId>com.couchbase.client</groupId> |
| 68 | + <artifactId>tracing-opentelemetry</artifactId> |
| 69 | + <version>${revision}</version> |
| 70 | + </dependency> |
| 71 | + <dependency> |
| 72 | + <groupId>com.couchbase.client</groupId> |
| 73 | + <artifactId>tracing-opentracing</artifactId> |
| 74 | + <version>${revision}</version> |
| 75 | + </dependency> |
| 76 | + </dependencies> |
| 77 | + </dependencyManagement> |
| 78 | + |
| 79 | + <build> |
| 80 | + <plugins> |
| 81 | + <plugin> |
| 82 | + <groupId>org.sonatype.central</groupId> |
| 83 | + <artifactId>central-publishing-maven-plugin</artifactId> |
| 84 | + </plugin> |
| 85 | + <plugin> |
| 86 | + <groupId>org.codehaus.mojo</groupId> |
| 87 | + <artifactId>flatten-maven-plugin</artifactId> |
| 88 | + <configuration> |
| 89 | + <flattenMode>bom</flattenMode> |
| 90 | + </configuration> |
| 91 | + </plugin> |
| 92 | + </plugins> |
| 93 | + </build> |
| 94 | + |
| 95 | +</project> |
0 commit comments