|
| 1 | +<!-- |
| 2 | + Copyright 2023 Google LLC |
| 3 | + Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 | + you may not use this file except in compliance with the License. |
| 5 | + You may obtain a copy of the License at |
| 6 | + http://www.apache.org/licenses/LICENSE-2.0 |
| 7 | + Unless required by applicable law or agreed to in writing, software |
| 8 | + distributed under the License is distributed on an "AS IS" BASIS, |
| 9 | + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 10 | + See the License for the specific language governing permissions and |
| 11 | + limitations under the License. |
| 12 | +--> |
| 13 | + |
| 14 | +<project xmlns="http://maven.apache.org/POM/4.0.0" |
| 15 | + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 16 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 17 | + |
| 18 | + <modelVersion>4.0.0</modelVersion> |
| 19 | + <groupId>com.google.cloud</groupId> |
| 20 | + <artifactId>google-cloud-spanner-benchmark</artifactId> |
| 21 | + <packaging>jar</packaging> |
| 22 | + <name>Google Cloud Spanner Benchmark</name> |
| 23 | + |
| 24 | + <parent> |
| 25 | + <groupId>com.google.cloud</groupId> |
| 26 | + <artifactId>google-cloud-spanner-parent</artifactId> |
| 27 | + <version>6.65.1-SNAPSHOT</version><!-- {x-version-update:google-cloud-spanner:current} --> |
| 28 | + </parent> |
| 29 | + |
| 30 | + <properties> |
| 31 | + <java.version>1.8</java.version> |
| 32 | + <maven.compiler.source>1.8</maven.compiler.source> |
| 33 | + <maven.compiler.target>1.8</maven.compiler.target> |
| 34 | + <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 35 | + <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> |
| 36 | + <junixsocket.version>2.9.1</junixsocket.version> |
| 37 | + <opentelemetry.version>1.36.0</opentelemetry.version> |
| 38 | + </properties> |
| 39 | + |
| 40 | + <dependencies> |
| 41 | + <dependency> |
| 42 | + <groupId>io.opentelemetry</groupId> |
| 43 | + <artifactId>opentelemetry-api</artifactId> |
| 44 | + </dependency> |
| 45 | + <dependency> |
| 46 | + <groupId>io.opentelemetry</groupId> |
| 47 | + <artifactId>opentelemetry-context</artifactId> |
| 48 | + </dependency> |
| 49 | + <dependency> |
| 50 | + <groupId>com.google.cloud.opentelemetry</groupId> |
| 51 | + <artifactId>exporter-trace</artifactId> |
| 52 | + <version>0.25.2</version> |
| 53 | + </dependency> |
| 54 | + <dependency> |
| 55 | + <groupId>com.google.cloud.opentelemetry</groupId> |
| 56 | + <artifactId>exporter-metrics</artifactId> |
| 57 | + <version>0.25.2</version> |
| 58 | + </dependency> |
| 59 | + <!-- OpenTelemetry test dependencies --> |
| 60 | + <dependency> |
| 61 | + <groupId>io.opentelemetry</groupId> |
| 62 | + <artifactId>opentelemetry-sdk</artifactId> |
| 63 | + <version>${opentelemetry.version}</version> |
| 64 | + </dependency> |
| 65 | + <dependency> |
| 66 | + <groupId>io.opentelemetry</groupId> |
| 67 | + <artifactId>opentelemetry-sdk-metrics</artifactId> |
| 68 | + <version>${opentelemetry.version}</version> |
| 69 | + </dependency> |
| 70 | + <dependency> |
| 71 | + <groupId>io.opentelemetry</groupId> |
| 72 | + <artifactId>opentelemetry-sdk-trace</artifactId> |
| 73 | + <version>${opentelemetry.version}</version> |
| 74 | + </dependency> |
| 75 | + <dependency> |
| 76 | + <groupId>io.opentelemetry</groupId> |
| 77 | + <artifactId>opentelemetry-sdk-testing</artifactId> |
| 78 | + <version>${opentelemetry.version}</version> |
| 79 | + </dependency> |
| 80 | + <dependency> |
| 81 | + <groupId>com.google.re2j</groupId> |
| 82 | + <artifactId>re2j</artifactId> |
| 83 | + <version>1.7</version> |
| 84 | + </dependency> |
| 85 | + <dependency> |
| 86 | + <groupId>io.opentelemetry</groupId> |
| 87 | + <artifactId>opentelemetry-bom</artifactId> |
| 88 | + <version>1.37.0</version> |
| 89 | + <type>pom</type> |
| 90 | + <scope>import</scope> |
| 91 | + </dependency> |
| 92 | + <dependency> |
| 93 | + <groupId>com.google.cloud</groupId> |
| 94 | + <artifactId>google-cloud-spanner</artifactId> |
| 95 | + <version>6.63.0</version> |
| 96 | + </dependency> |
| 97 | + <dependency> |
| 98 | + <groupId>commons-cli</groupId> |
| 99 | + <artifactId>commons-cli</artifactId> |
| 100 | + <version>1.6.0</version> |
| 101 | + </dependency> |
| 102 | + <dependency> |
| 103 | + <groupId>com.google.auto.value</groupId> |
| 104 | + <artifactId>auto-value-annotations</artifactId> |
| 105 | + <version>1.10.4</version> |
| 106 | + </dependency> |
| 107 | + <dependency> |
| 108 | + <groupId>com.kohlschutter.junixsocket</groupId> |
| 109 | + <artifactId>junixsocket-core</artifactId> |
| 110 | + <version>${junixsocket.version}</version> |
| 111 | + <type>pom</type> |
| 112 | + </dependency> |
| 113 | + <dependency> |
| 114 | + <groupId>com.kohlschutter.junixsocket</groupId> |
| 115 | + <artifactId>junixsocket-common</artifactId> |
| 116 | + <version>${junixsocket.version}</version> |
| 117 | + </dependency> |
| 118 | + <dependency> |
| 119 | + <groupId>commons-cli</groupId> |
| 120 | + <artifactId>commons-cli</artifactId> |
| 121 | + <version>1.7.0</version> |
| 122 | + </dependency> |
| 123 | + |
| 124 | + <dependency> |
| 125 | + <groupId>junit</groupId> |
| 126 | + <artifactId>junit</artifactId> |
| 127 | + <version>4.13.2</version> |
| 128 | + <scope>test</scope> |
| 129 | + </dependency> |
| 130 | + </dependencies> |
| 131 | + <build> |
| 132 | + <plugins> |
| 133 | + <plugin> |
| 134 | + <groupId>org.codehaus.mojo</groupId> |
| 135 | + <artifactId>exec-maven-plugin</artifactId> |
| 136 | + <version>3.2.0</version> |
| 137 | + <configuration> |
| 138 | + <mainClass>com.google.cloud.spanner.benchmark.LatencyBenchmark</mainClass> |
| 139 | + <cleanupDaemonThreads>false</cleanupDaemonThreads> |
| 140 | + </configuration> |
| 141 | + </plugin> |
| 142 | + <plugin> |
| 143 | + <groupId>com.coveo</groupId> |
| 144 | + <artifactId>fmt-maven-plugin</artifactId> |
| 145 | + <executions> |
| 146 | + <execution> |
| 147 | + <goals> |
| 148 | + <goal>format</goal> |
| 149 | + </goals> |
| 150 | + </execution> |
| 151 | + </executions> |
| 152 | + </plugin> |
| 153 | + </plugins> |
| 154 | + </build> |
| 155 | +</project> |
0 commit comments