Skip to content
This repository has been archived by the owner on Sep 16, 2023. It is now read-only.

feat: add bom #16

Merged
merged 1 commit into from Oct 2, 2019
Merged
Show file tree
Hide file tree
Changes from all 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
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -13,7 +13,7 @@ Java idiomatic client for [Cloud Auto ML][api-reference].

## Quickstart

[//]: # ({x-version-update-start:automl:released})
[//]: # ({x-version-update-start:google-cloud-automl:released})
If you are using Maven, add this to your pom.xml file
```xml
<dependency>
Expand Down
102 changes: 102 additions & 0 deletions google-cloud-automl-bom/pom.xml
@@ -0,0 +1,102 @@
<?xml version="1.0"?>
<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>google-cloud-automl-bom</artifactId>
<version>0.112.1-SNAPSHOT</version><!-- {x-version-update:google-cloud-automl:current} -->
<packaging>pom</packaging>
<parent>
<groupId>com.google.cloud</groupId>
<artifactId>google-cloud-shared-config</artifactId>
<version>0.1.3</version>
</parent>

<name>Google Cloud Auto ML BOM</name>
<url>https://github.com/googleapis/java-automl</url>
<description>
BOM for Google Cloud Auto ML
</description>

<organization>
<name>Google LLC</name>
</organization>

<developers>
<developer>
<id>chingor13</id>
<name>Jeff Ching</name>
<email>chingor@google.com</email>
<organization>Google LLC</organization>
<roles>
<role>Developer</role>
</roles>
</developer>
</developers>

<scm>
<connection>scm:git:https://github.com/googleapis/java-automl.git</connection>
<developerConnection>scm:git:git@github.com:googleapis/java-automl.git</developerConnection>
<url>https://github.com/googleapis/java-automl</url>
</scm>

<distributionManagement>
<snapshotRepository>
<id>sonatype-nexus-snapshots</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
<repository>
<id>sonatype-nexus-staging</id>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
</distributionManagement>

<licenses>
<license>
<name>The Apache Software License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>

<dependencyManagement>
<dependencies>
<dependency>
<groupId>com.google.api.grpc</groupId>
<artifactId>grpc-google-cloud-automl-v1beta1</artifactId>
<version>0.77.1-SNAPSHOT</version><!-- {x-version-update:grpc-google-cloud-automl-v1beta1:current} -->
</dependency>
<dependency>
<groupId>com.google.api.grpc</groupId>
<artifactId>grpc-google-cloud-automl-v1</artifactId>
<version>0.77.1-SNAPSHOT</version><!-- {x-version-update:grpc-google-cloud-automl-v1:current} -->
</dependency>
<dependency>
<groupId>com.google.api.grpc</groupId>
<artifactId>proto-google-cloud-automl-v1beta1</artifactId>
<version>0.77.1-SNAPSHOT</version><!-- {x-version-update:proto-google-cloud-automl-v1beta1:current} -->
</dependency>
<dependency>
<groupId>com.google.api.grpc</groupId>
<artifactId>proto-google-cloud-automl-v1</artifactId>
<version>0.77.1-SNAPSHOT</version><!-- {x-version-update:proto-google-cloud-automl-v1:current} -->
</dependency>
<dependency>
<groupId>com.google.cloud</groupId>
<artifactId>google-cloud-automl</artifactId>
<version>0.112.1-SNAPSHOT</version><!-- {x-version-update:google-cloud-automl:current} -->
</dependency>
</dependencies>
</dependencyManagement>

<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId>
<configuration>
<skip>true</skip>
</configuration>
</plugin>
</plugins>
</build>
</project>
1 change: 1 addition & 0 deletions pom.xml
Expand Up @@ -193,6 +193,7 @@
<module>grpc-google-cloud-automl-v1beta1</module>
<module>grpc-google-cloud-automl-v1</module>
<module>google-cloud-automl</module>
<module>google-cloud-automl-bom</module>
</modules>

<reporting>
Expand Down