Skip to content

Commit

Permalink
feat: move graal-sdk dependency management to java-shared-config
Browse files Browse the repository at this point in the history
  • Loading branch information
mpeddada1 committed Oct 12, 2023
1 parent 3c6ed88 commit 6f1fe2a
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<groupId>com.google.cloud</groupId>
<artifactId>google-cloud-shared-config</artifactId>
<packaging>pom</packaging>
<version>1.5.8</version><!-- {x-version-update:google-cloud-shared-config:current} -->
<version>1.5.9-SNAPSHOT</version><!-- {x-version-update:google-cloud-shared-config:current} -->
<name>Google Cloud</name>
<url>https://github.com/googleapis/java-shared-config</url>
<description>
Expand Down Expand Up @@ -65,6 +65,7 @@
<skipITs>true</skipITs>
<auto-value.version>1.10.4</auto-value.version>
<surefire.version>3.1.2</surefire.version>
<graal-sdk.version>22.3.2</graal-sdk.version>
<docRoot>/java/docs/reference/</docRoot>
</properties>

Expand Down Expand Up @@ -540,6 +541,17 @@
<artifactId>auto-value-annotations</artifactId>
<version>${auto-value.version}</version>
</dependency>

<!--
java-shared-config comes first in the release train. Defining the graal-sdk
version here will allow us manage the dependency from a single location
instead of needing to define it multiple repos (e.g gax, java-spanner)
-->
<dependency>
<groupId>org.graalvm.sdk</groupId>
<artifactId>graal-sdk</artifactId>
<version>${graal-sdk.version}</version>
</dependency>
</dependencies>
</dependencyManagement>

Expand Down

0 comments on commit 6f1fe2a

Please sign in to comment.