Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: new artifact for sdk-platform-java configs. #2315

Merged
merged 4 commits into from Jan 3, 2024
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 1 addition & 0 deletions pom.xml
Expand Up @@ -23,6 +23,7 @@
<module>java-core</module>
<module>gapic-generator-java-bom</module>
<module>java-shared-dependencies</module>
<module>sdk-platform-java-config</module>
</modules>
<!-- Do not deploy the aggregator POM -->
<build>
Expand Down
23 changes: 23 additions & 0 deletions sdk-platform-java-config/pom.xml
@@ -0,0 +1,23 @@
<?xml version='1.0' encoding='UTF-8'?>
<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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.google.cloud</groupId>
<artifactId>sdk-platform-java-config</artifactId>
<packaging>pom</packaging>
<version>3.20.1-SNAPSHOT</version> <!-- {x-version-update:google-cloud-shared-dependencies:current} -->
<name>SDK Platform For Java Configurations</name>
<description>
Shared build configuration for Google Cloud Java libraries.
</description>

<parent>
<groupId>com.google.cloud</groupId>
<artifactId>google-cloud-shared-config</artifactId>
<version>1.7.1</version>
</parent>

<properties>
<checkstyle.skip>true</checkstyle.skip>
suztomo marked this conversation as resolved.
Show resolved Hide resolved
<shared-dependencies.version>3.20.1-SNAPSHOT</shared-dependencies.version> <!-- {x-version-update:google-cloud-shared-dependencies:current} -->
</properties>
</project>