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

Commit 545f25d

Browse files
authored
feat: add bom (#16)
1 parent 4b125c2 commit 545f25d

File tree

2 files changed

+103
-0
lines changed

2 files changed

+103
-0
lines changed

google-cloud-automl-bom/pom.xml

Lines changed: 102 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,102 @@
1+
<?xml version="1.0"?>
2+
<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">
3+
<modelVersion>4.0.0</modelVersion>
4+
<groupId>com.google.cloud</groupId>
5+
<artifactId>google-cloud-automl-bom</artifactId>
6+
<version>0.112.1-SNAPSHOT</version><!-- {x-version-update:google-cloud-automl:current} -->
7+
<packaging>pom</packaging>
8+
<parent>
9+
<groupId>com.google.cloud</groupId>
10+
<artifactId>google-cloud-shared-config</artifactId>
11+
<version>0.1.3</version>
12+
</parent>
13+
14+
<name>Google Cloud Auto ML BOM</name>
15+
<url>https://github.com/googleapis/java-automl</url>
16+
<description>
17+
BOM for Google Cloud Auto ML
18+
</description>
19+
20+
<organization>
21+
<name>Google LLC</name>
22+
</organization>
23+
24+
<developers>
25+
<developer>
26+
<id>chingor13</id>
27+
<name>Jeff Ching</name>
28+
<email>chingor@google.com</email>
29+
<organization>Google LLC</organization>
30+
<roles>
31+
<role>Developer</role>
32+
</roles>
33+
</developer>
34+
</developers>
35+
36+
<scm>
37+
<connection>scm:git:https://github.com/googleapis/java-automl.git</connection>
38+
<developerConnection>scm:git:git@github.com:googleapis/java-automl.git</developerConnection>
39+
<url>https://github.com/googleapis/java-automl</url>
40+
</scm>
41+
42+
<distributionManagement>
43+
<snapshotRepository>
44+
<id>sonatype-nexus-snapshots</id>
45+
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
46+
</snapshotRepository>
47+
<repository>
48+
<id>sonatype-nexus-staging</id>
49+
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
50+
</repository>
51+
</distributionManagement>
52+
53+
<licenses>
54+
<license>
55+
<name>The Apache Software License, Version 2.0</name>
56+
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
57+
<distribution>repo</distribution>
58+
</license>
59+
</licenses>
60+
61+
<dependencyManagement>
62+
<dependencies>
63+
<dependency>
64+
<groupId>com.google.api.grpc</groupId>
65+
<artifactId>grpc-google-cloud-automl-v1beta1</artifactId>
66+
<version>0.77.1-SNAPSHOT</version><!-- {x-version-update:grpc-google-cloud-automl-v1beta1:current} -->
67+
</dependency>
68+
<dependency>
69+
<groupId>com.google.api.grpc</groupId>
70+
<artifactId>grpc-google-cloud-automl-v1</artifactId>
71+
<version>0.77.1-SNAPSHOT</version><!-- {x-version-update:grpc-google-cloud-automl-v1:current} -->
72+
</dependency>
73+
<dependency>
74+
<groupId>com.google.api.grpc</groupId>
75+
<artifactId>proto-google-cloud-automl-v1beta1</artifactId>
76+
<version>0.77.1-SNAPSHOT</version><!-- {x-version-update:proto-google-cloud-automl-v1beta1:current} -->
77+
</dependency>
78+
<dependency>
79+
<groupId>com.google.api.grpc</groupId>
80+
<artifactId>proto-google-cloud-automl-v1</artifactId>
81+
<version>0.77.1-SNAPSHOT</version><!-- {x-version-update:proto-google-cloud-automl-v1:current} -->
82+
</dependency>
83+
<dependency>
84+
<groupId>com.google.cloud</groupId>
85+
<artifactId>google-cloud-automl</artifactId>
86+
<version>0.112.1-SNAPSHOT</version><!-- {x-version-update:google-cloud-automl:current} -->
87+
</dependency>
88+
</dependencies>
89+
</dependencyManagement>
90+
91+
<build>
92+
<plugins>
93+
<plugin>
94+
<groupId>org.apache.maven.plugins</groupId>
95+
<artifactId>maven-checkstyle-plugin</artifactId>
96+
<configuration>
97+
<skip>true</skip>
98+
</configuration>
99+
</plugin>
100+
</plugins>
101+
</build>
102+
</project>

pom.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -193,6 +193,7 @@
193193
<module>grpc-google-cloud-automl-v1beta1</module>
194194
<module>grpc-google-cloud-automl-v1</module>
195195
<module>google-cloud-automl</module>
196+
<module>google-cloud-automl-bom</module>
196197
</modules>
197198

198199
<reporting>

0 commit comments

Comments
 (0)