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

Commit ed52f2e

Browse files
committed
feat: split texttospeech from google-cloud-java
1 parent 55928c1 commit ed52f2e

File tree

8 files changed

+526
-117
lines changed

8 files changed

+526
-117
lines changed

google-cloud-texttospeech-bom/pom.xml

+103
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,103 @@
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-texttospeech-bom</artifactId>
6+
<version>0.116.1-beta-SNAPSHOT</version><!-- {x-version-update:google-cloud-texttospeech:current} -->
7+
<packaging>pom</packaging>
8+
<parent>
9+
<groupId>com.google.cloud</groupId>
10+
<artifactId>google-cloud-shared-config</artifactId>
11+
<version>0.2.1</version>
12+
</parent>
13+
14+
<name>Google Cloud texttospeech BOM</name>
15+
<url>https://github.com/googleapis/java-texttospeech</url>
16+
<description>
17+
BOM for Google Cloud Text-to-Speech
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-texttospeech.git</connection>
38+
<developerConnection>scm:git:git@github.com:googleapis/java-texttospeech.git</developerConnection>
39+
<url>https://github.com/googleapis/java-texttospeech</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+
64+
<dependency>
65+
<groupId>com.google.cloud</groupId>
66+
<artifactId>google-cloud-texttospeech</artifactId>
67+
<version>0.116.1-beta-SNAPSHOT</version><!-- {x-version-update:google-cloud-texttospeech:current} -->
68+
</dependency>
69+
<dependency>
70+
<groupId>com.google.api.grpc</groupId>
71+
<artifactId>grpc-google-cloud-texttospeech-v1beta1</artifactId>
72+
<version>0.81.1-SNAPSHOT</version><!-- {x-version-update:grpc-google-cloud-texttospeech-v1beta1:current} -->
73+
</dependency>
74+
<dependency>
75+
<groupId>com.google.api.grpc</groupId>
76+
<artifactId>grpc-google-cloud-texttospeech-v1</artifactId>
77+
<version>0.81.1-SNAPSHOT</version><!-- {x-version-update:grpc-google-cloud-texttospeech-v1:current} -->
78+
</dependency>
79+
<dependency>
80+
<groupId>com.google.api.grpc</groupId>
81+
<artifactId>proto-google-cloud-texttospeech-v1</artifactId>
82+
<version>0.81.1-SNAPSHOT</version><!-- {x-version-update:proto-google-cloud-texttospeech-v1:current} -->
83+
</dependency>
84+
<dependency>
85+
<groupId>com.google.api.grpc</groupId>
86+
<artifactId>proto-google-cloud-texttospeech-v1beta1</artifactId>
87+
<version>0.81.1-SNAPSHOT</version><!-- {x-version-update:proto-google-cloud-texttospeech-v1beta1:current} -->
88+
</dependency>
89+
</dependencies>
90+
</dependencyManagement>
91+
92+
<build>
93+
<plugins>
94+
<plugin>
95+
<groupId>org.apache.maven.plugins</groupId>
96+
<artifactId>maven-checkstyle-plugin</artifactId>
97+
<configuration>
98+
<skip>true</skip>
99+
</configuration>
100+
</plugin>
101+
</plugins>
102+
</build>
103+
</project>

google-cloud-texttospeech/pom.xml

+62-44
Original file line numberDiff line numberDiff line change
@@ -1,42 +1,79 @@
11
<?xml version="1.0"?>
22
<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">
33
<modelVersion>4.0.0</modelVersion>
4+
<groupId>com.google.cloud</groupId>
45
<artifactId>google-cloud-texttospeech</artifactId>
56
<version>0.116.1-beta-SNAPSHOT</version><!-- {x-version-update:google-cloud-texttospeech:current} -->
67
<packaging>jar</packaging>
78
<name>Google Cloud Text-to-Speech</name>
8-
<url>https://github.com/googleapis/google-cloud-java/tree/master/google-cloud-clients/google-cloud-texttospeech</url>
9-
<description>
10-
Java idiomatic client for Google Cloud Text-to-Speech
11-
</description>
9+
<url>https://github.com/googleapis/java-texttospeech</url>
10+
<description>Java idiomatic client for Google Cloud Text-to-Speech</description>
1211
<parent>
1312
<groupId>com.google.cloud</groupId>
14-
<artifactId>google-cloud-clients</artifactId>
15-
<version>0.116.1-alpha-SNAPSHOT</version><!-- {x-version-update:google-cloud-clients:current} -->
13+
<artifactId>google-cloud-texttospeech-parent</artifactId>
14+
<version>0.116.1-beta-SNAPSHOT</version><!-- {x-version-update:google-cloud-texttospeech:current} -->
1615
</parent>
1716
<properties>
18-
<site.installationModule>google-cloud-texttospeech-v1beta1</site.installationModule>
17+
<site.installationModule>google-cloud-texttospeech</site.installationModule>
1918
</properties>
2019
<dependencies>
2120
<dependency>
22-
<groupId>${project.groupId}</groupId>
23-
<artifactId>google-cloud-core-grpc</artifactId>
21+
<groupId>io.grpc</groupId>
22+
<artifactId>grpc-api</artifactId>
23+
</dependency>
24+
<dependency>
25+
<groupId>io.grpc</groupId>
26+
<artifactId>grpc-stub</artifactId>
27+
</dependency>
28+
<dependency>
29+
<groupId>io.grpc</groupId>
30+
<artifactId>grpc-protobuf</artifactId>
31+
</dependency>
32+
<dependency>
33+
<groupId>com.google.api</groupId>
34+
<artifactId>api-common</artifactId>
35+
</dependency>
36+
<dependency>
37+
<groupId>com.google.protobuf</groupId>
38+
<artifactId>protobuf-java</artifactId>
2439
</dependency>
2540
<dependency>
2641
<groupId>com.google.api.grpc</groupId>
27-
<artifactId>proto-google-cloud-texttospeech-v1beta1</artifactId>
42+
<artifactId>proto-google-common-protos</artifactId>
2843
</dependency>
44+
2945
<dependency>
3046
<groupId>com.google.api.grpc</groupId>
3147
<artifactId>proto-google-cloud-texttospeech-v1</artifactId>
3248
</dependency>
49+
<dependency>
50+
<groupId>com.google.api.grpc</groupId>
51+
<artifactId>proto-google-cloud-texttospeech-v1beta1</artifactId>
52+
</dependency>
53+
<dependency>
54+
<groupId>com.google.guava</groupId>
55+
<artifactId>guava</artifactId>
56+
</dependency>
57+
<dependency>
58+
<groupId>com.google.api</groupId>
59+
<artifactId>gax</artifactId>
60+
</dependency>
61+
<dependency>
62+
<groupId>com.google.api</groupId>
63+
<artifactId>gax-grpc</artifactId>
64+
</dependency>
65+
<dependency>
66+
<groupId>org.threeten</groupId>
67+
<artifactId>threetenbp</artifactId>
68+
</dependency>
3369

3470
<!-- Test dependencies -->
3571
<dependency>
3672
<groupId>junit</groupId>
3773
<artifactId>junit</artifactId>
3874
<scope>test</scope>
3975
</dependency>
76+
4077
<dependency>
4178
<groupId>com.google.api.grpc</groupId>
4279
<artifactId>grpc-google-cloud-texttospeech-v1beta1</artifactId>
@@ -56,37 +93,18 @@
5693
</dependency>
5794
</dependencies>
5895

59-
<reporting>
60-
<plugins>
61-
<plugin>
62-
<groupId>org.apache.maven.plugins</groupId>
63-
<artifactId>maven-javadoc-plugin</artifactId>
64-
<version>3.1.1</version>
65-
<configuration>
66-
<show>protected</show>
67-
<nohelp>true</nohelp>
68-
<doclint>none</doclint>
69-
<splitindex>true</splitindex>
70-
<offlineLinks>
71-
<offlineLink>
72-
<url>${project.javadoc.protobufBaseURL}</url>
73-
<location>../../../../../google-api-grpc/proto-google-cloud-texttospeech-v1/target/site/apidocs/</location>
74-
</offlineLink>
75-
<offlineLink>
76-
<url>${project.javadoc.protobufBaseURL}</url>
77-
<location>../../../../../google-api-grpc/grpc-google-cloud-texttospeech-v1/target/site/apidocs/</location>
78-
</offlineLink>
79-
<offlineLink>
80-
<url>${project.javadoc.protobufBaseURL}</url>
81-
<location>../../../../../google-api-grpc/proto-google-cloud-texttospeech-v1beta1/target/site/apidocs/</location>
82-
</offlineLink>
83-
<offlineLink>
84-
<url>${project.javadoc.protobufBaseURL}</url>
85-
<location>../../../../../google-api-grpc/grpc-google-cloud-texttospeech-v1beta1/target/site/apidocs/</location>
86-
</offlineLink>
87-
</offlineLinks>
88-
</configuration>
89-
</plugin>
90-
</plugins>
91-
</reporting>
92-
</project>
96+
<profiles>
97+
<profile>
98+
<id>java9</id>
99+
<activation>
100+
<jdk>[9,)</jdk>
101+
</activation>
102+
<dependencies>
103+
<dependency>
104+
<groupId>javax.annotation</groupId>
105+
<artifactId>javax.annotation-api</artifactId>
106+
</dependency>
107+
</dependencies>
108+
</profile>
109+
</profiles>
110+
</project>

grpc-google-cloud-texttospeech-v1/pom.xml

+32-28
Original file line numberDiff line numberDiff line change
@@ -2,51 +2,55 @@
22
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
33
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
44
<modelVersion>4.0.0</modelVersion>
5+
<groupId>com.google.api.grpc</groupId>
56
<artifactId>grpc-google-cloud-texttospeech-v1</artifactId>
67
<version>0.81.1-SNAPSHOT</version><!-- {x-version-update:grpc-google-cloud-texttospeech-v1:current} -->
78
<name>grpc-google-cloud-texttospeech-v1</name>
89
<description>GRPC library for grpc-google-cloud-texttospeech-v1</description>
910
<parent>
10-
<groupId>com.google.api.grpc</groupId>
11-
<artifactId>google-api-grpc</artifactId>
12-
<version>0.81.1-SNAPSHOT</version><!-- {x-version-update:google-api-grpc:current} -->
11+
<groupId>com.google.cloud</groupId>
12+
<artifactId>google-cloud-texttospeech-parent</artifactId>
13+
<version>0.116.1-beta-SNAPSHOT</version><!-- {x-version-update:google-cloud-texttospeech:current} -->
1314
</parent>
1415
<dependencies>
16+
<dependency>
17+
<groupId>io.grpc</groupId>
18+
<artifactId>grpc-api</artifactId>
19+
</dependency>
1520
<dependency>
1621
<groupId>io.grpc</groupId>
1722
<artifactId>grpc-stub</artifactId>
18-
<scope>compile</scope>
1923
</dependency>
2024
<dependency>
2125
<groupId>io.grpc</groupId>
2226
<artifactId>grpc-protobuf</artifactId>
23-
<scope>compile</scope>
27+
</dependency>
28+
<dependency>
29+
<groupId>com.google.protobuf</groupId>
30+
<artifactId>protobuf-java</artifactId>
2431
</dependency>
2532
<dependency>
2633
<groupId>com.google.api.grpc</groupId>
2734
<artifactId>proto-google-cloud-texttospeech-v1</artifactId>
28-
<scope>compile</scope>
35+
</dependency>
36+
<dependency>
37+
<groupId>com.google.guava</groupId>
38+
<artifactId>guava</artifactId>
2939
</dependency>
3040
</dependencies>
31-
<reporting>
32-
<plugins>
33-
<plugin>
34-
<groupId>org.apache.maven.plugins</groupId>
35-
<artifactId>maven-javadoc-plugin</artifactId>
36-
<version>3.1.1</version>
37-
<configuration>
38-
<show>protected</show>
39-
<nohelp>true</nohelp>
40-
<doclint>none</doclint>
41-
<splitindex>true</splitindex>
42-
<offlineLinks>
43-
<offlineLink>
44-
<url>${project.javadoc.protobufBaseURL}</url>
45-
<location>../../../../proto-google-cloud-texttospeech-v1/target/site/apidocs/</location>
46-
</offlineLink>
47-
</offlineLinks>
48-
</configuration>
49-
</plugin>
50-
</plugins>
51-
</reporting>
52-
</project>
41+
42+
<profiles>
43+
<profile>
44+
<id>java9</id>
45+
<activation>
46+
<jdk>[9,)</jdk>
47+
</activation>
48+
<dependencies>
49+
<dependency>
50+
<groupId>javax.annotation</groupId>
51+
<artifactId>javax.annotation-api</artifactId>
52+
</dependency>
53+
</dependencies>
54+
</profile>
55+
</profiles>
56+
</project>

0 commit comments

Comments
 (0)