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

Commit

Permalink
feat: add bom (#16)
Browse files Browse the repository at this point in the history
  • Loading branch information
chingor13 committed Oct 2, 2019
1 parent 4b125c2 commit 545f25d
Show file tree
Hide file tree
Showing 2 changed files with 103 additions and 0 deletions.
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

0 comments on commit 545f25d

Please sign in to comment.