Merged
Show file tree
Hide file tree
Changes from all commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Failed to load files.
Original file line numberDiff line numberDiff line change
Expand Up@@ -49,7 +49,7 @@ If you are using Maven without BOM, add this to your dependencies:
If you are using Gradle 5.x or later, add this to your dependencies

```Groovy
implementation platform('com.google.cloud:libraries-bom:24.3.0')
implementation platform('com.google.cloud:libraries-bom:24.4.0')

implementation 'com.google.cloud:google-cloud-datastore'
```
Expand Down
Original file line numberDiff line numberDiff line change
Expand Up@@ -17,8 +17,9 @@
</parent>

<properties>
<maven.compiler.target>11</maven.compiler.target>
<maven.compiler.source>11</maven.compiler.source>
<!-- Java 8 because the Kokoro Sample test uses that Java version -->
<maven.compiler.target>1.8</maven.compiler.target>
<maven.compiler.source>1.8</maven.compiler.source>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>

Expand DownExpand Up@@ -62,8 +63,7 @@
<configuration>
<archive>
<manifest>
<mainClass>com.example.datastore.NativeImageDatastoreSample
</mainClass>
<mainClass>com.example.datastore.NativeImageDatastoreSample</mainClass>
</manifest>
</archive>
</configuration>
Expand DownExpand Up@@ -115,8 +115,7 @@
<version>0.9.10</version>
<extensions>true</extensions>
<configuration>
<mainClass>com.example.datastore.NativeImageDatastoreSample
</mainClass>
<mainClass>com.example.datastore.NativeImageDatastoreSample</mainClass>
<buildArgs>
<buildArg>--no-fallback</buildArg>
<buildArg>--no-server</buildArg>
Expand Down