Skip to content

Instantly share code, notes, and snippets.

@suztomo
Created June 10, 2025 20:00
Show Gist options
  • Save suztomo/15a30628a8d848f9e7616b4a333ac4e4 to your computer and use it in GitHub Desktop.
Save suztomo/15a30628a8d848f9e7616b4a333ac4e4 to your computer and use it in GitHub Desktop.
datastore-v1-proto-client-2.29.1.pom
suztomo@suztomo2:/tmp/java-datastore-deploy$ cat $local_staging_dir/com/google/cloud/datastore/datastore-v1-proto-client/2.29.1/datastore-v1-proto-client-2.29.1
datastore-v1-proto-client-2.29.1.jar datastore-v1-proto-client-2.29.1-javadoc.jar datastore-v1-proto-client-2.29.1.pom datastore-v1-proto-client-2.29.1-sources.jar
datastore-v1-proto-client-2.29.1.jar.asc datastore-v1-proto-client-2.29.1-javadoc.jar.asc datastore-v1-proto-client-2.29.1.pom.asc datastore-v1-proto-client-2.29.1-sources.jar.asc
datastore-v1-proto-client-2.29.1.jar.md5 datastore-v1-proto-client-2.29.1-javadoc.jar.md5 datastore-v1-proto-client-2.29.1.pom.md5 datastore-v1-proto-client-2.29.1-sources.jar.md5
datastore-v1-proto-client-2.29.1.jar.sha1 datastore-v1-proto-client-2.29.1-javadoc.jar.sha1 datastore-v1-proto-client-2.29.1.pom.sha1 datastore-v1-proto-client-2.29.1-sources.jar.sha1
suztomo@suztomo2:/tmp/java-datastore-deploy$ cat $local_staging_dir/com/google/cloud/datastore/datastore-v1-proto-client/2.29.1/datastore-v1-proto-client-2.29.1.pom
<?xml version="1.0" encoding="UTF-8"?>
<!--
Copyright (C) 2015 Google Inc.
Licensed under the Apache License, Version 2.0 (the "License"); you may not
use this file except in compliance with the License. You may obtain a copy of
the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
License for the specific language governing permissions and limitations under
the License.
-->
<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">
<modelVersion>4.0.0</modelVersion>
<groupId>com.google.cloud.datastore</groupId>
<artifactId>datastore-v1-proto-client</artifactId>
<version>2.29.1</version><!-- {x-version-update:datastore-v1-proto-client:current} -->
<parent>
<groupId>com.google.cloud</groupId>
<artifactId>google-cloud-datastore-parent</artifactId>
<version>2.29.1</version><!-- {x-version-update:google-cloud-datastore:current} -->
</parent>
<packaging>jar</packaging>
<description>
Low level client for accessing Google Cloud Datastore v1.
</description>
<dependencies>
<dependency>
<groupId>com.google.api.grpc</groupId>
<artifactId>proto-google-cloud-datastore-v1</artifactId>
</dependency>
<dependency>
<groupId>com.google.http-client</groupId>
<artifactId>google-http-client</artifactId>
</dependency>
<dependency>
<groupId>com.google.http-client</groupId>
<artifactId>google-http-client-protobuf</artifactId>
</dependency>
<dependency>
<groupId>com.google.http-client</groupId>
<artifactId>google-http-client-gson</artifactId>
</dependency>
<dependency>
<groupId>com.google.oauth-client</groupId>
<artifactId>google-oauth-client</artifactId>
</dependency>
<dependency>
<groupId>com.google.api-client</groupId>
<artifactId>google-api-client</artifactId>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
</dependency>
<dependency>
<groupId>com.google.code.findbugs</groupId>
<artifactId>jsr305</artifactId>
</dependency>
<dependency>
<groupId>com.google.api.grpc</groupId>
<artifactId>proto-google-common-protos</artifactId>
</dependency>
<dependency>
<groupId>com.google.protobuf</groupId>
<artifactId>protobuf-java</artifactId>
</dependency>
<dependency>
<groupId>com.google.api</groupId>
<artifactId>api-common</artifactId>
</dependency>
<!-- Test dependencies. -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.google.truth</groupId>
<artifactId>truth</artifactId>
<version>1.4.4</version>
<scope>test</scope>
<exclusions>
<exclusion>
<groupId>org.checkerframework</groupId>
<artifactId>checker-qual</artifactId>
</exclusion>
</exclusions>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<argLine>-Xmx2048m</argLine>
</configuration>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>native</id>
<properties>
<!-- skip native tests for this module, it will be tested in google-cloud-datastore-->
<skipTests>true</skipTests>
</properties>
</profile>
</profiles>
</project>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment