|
92 | 92 | <artifactId>google-cloud-core</artifactId> |
93 | 93 | <scope>test</scope> |
94 | 94 | </dependency> |
| 95 | + <dependency> |
| 96 | + <groupId>com.google.cloud</groupId> |
| 97 | + <artifactId>google-cloud-monitoring</artifactId> |
| 98 | + <version>3.93.0-SNAPSHOT</version> <!-- {x-version-update:google-cloud-monitoring:current} --> |
| 99 | + <scope>test</scope> |
| 100 | + </dependency> |
| 101 | + <dependency> |
| 102 | + <groupId>io.opentelemetry</groupId> |
| 103 | + <artifactId>opentelemetry-sdk</artifactId> |
| 104 | + <scope>test</scope> |
| 105 | + </dependency> |
| 106 | + <dependency> |
| 107 | + <groupId>io.opentelemetry</groupId> |
| 108 | + <artifactId>opentelemetry-exporter-otlp</artifactId> |
| 109 | + <scope>test</scope> |
| 110 | + </dependency> |
| 111 | + <dependency> |
| 112 | + <groupId>io.opentelemetry</groupId> |
| 113 | + <artifactId>opentelemetry-sdk-testing</artifactId> |
| 114 | + <scope>test</scope> |
| 115 | + </dependency> |
| 116 | + <!-- Logback dependencies are used to intercept logs for validation in tests, consistent with ITActionableErrorsLogging --> |
| 117 | + <dependency> |
| 118 | + <groupId>ch.qos.logback</groupId> |
| 119 | + <artifactId>logback-classic</artifactId> |
| 120 | + <scope>test</scope> |
| 121 | + </dependency> |
| 122 | + <dependency> |
| 123 | + <groupId>ch.qos.logback</groupId> |
| 124 | + <artifactId>logback-core</artifactId> |
| 125 | + <scope>test</scope> |
| 126 | + </dependency> |
| 127 | + <dependency> |
| 128 | + <groupId>com.google.cloud</groupId> |
| 129 | + <artifactId>google-cloud-trace</artifactId> |
| 130 | + <version>2.92.0-SNAPSHOT</version><!-- {x-version-update:google-cloud-trace:current} --> |
| 131 | + <scope>test</scope> |
| 132 | + </dependency> |
| 133 | + <dependency> |
| 134 | + <groupId>com.google.truth</groupId> |
| 135 | + <artifactId>truth</artifactId> |
| 136 | + <scope>test</scope> |
| 137 | + </dependency> |
95 | 138 |
|
96 | 139 | <!-- Need testing utility classes for generated REST clients tests --> |
97 | 140 | <dependency> |
|
105 | 148 | <artifactId>gax</artifactId> |
106 | 149 | <classifier>testlib</classifier> |
107 | 150 | <scope>test</scope> |
| 151 | + </dependency> |
| 152 | + <!-- Needed for trace client --> |
| 153 | + <dependency> |
| 154 | + <groupId>io.grpc</groupId> |
| 155 | + <artifactId>grpc-netty-shaded</artifactId> |
| 156 | + <scope>test</scope> |
| 157 | + </dependency> |
| 158 | + <dependency> |
| 159 | + <groupId>io.grpc</groupId> |
| 160 | + <artifactId>grpc-auth</artifactId> |
| 161 | + <scope>test</scope> |
108 | 162 | </dependency> |
109 | 163 | </dependencies> |
| 164 | + |
| 165 | + <build> |
| 166 | + <plugins> |
| 167 | + <plugin> |
| 168 | + <groupId>org.apache.maven.plugins</groupId> |
| 169 | + <artifactId>maven-surefire-plugin</artifactId> |
| 170 | + <configuration> |
| 171 | + <environmentVariables> |
| 172 | + <GOOGLE_SDK_JAVA_LOGGING>true</GOOGLE_SDK_JAVA_LOGGING> |
| 173 | + </environmentVariables> |
| 174 | + </configuration> |
| 175 | + </plugin> |
| 176 | + <plugin> |
| 177 | + <groupId>org.apache.maven.plugins</groupId> |
| 178 | + <artifactId>maven-failsafe-plugin</artifactId> |
| 179 | + <configuration> |
| 180 | + <environmentVariables> |
| 181 | + <GOOGLE_SDK_JAVA_LOGGING>true</GOOGLE_SDK_JAVA_LOGGING> |
| 182 | + </environmentVariables> |
| 183 | + </configuration> |
| 184 | + </plugin> |
| 185 | + </plugins> |
| 186 | + </build> |
| 187 | + <profiles> |
| 188 | + <profile> |
| 189 | + <id>enable-integration-tests</id> |
| 190 | + <dependencies> |
| 191 | + <dependency> |
| 192 | + <groupId>org.slf4j</groupId> |
| 193 | + <artifactId>slf4j-api</artifactId> |
| 194 | + <version>2.0.16</version> |
| 195 | + <scope>test</scope> |
| 196 | + </dependency> |
| 197 | + </dependencies> |
| 198 | + </profile> |
| 199 | + </profiles> |
110 | 200 | </project> |
0 commit comments