Skip to content

Commit eabcf64

Browse files
committed
Add Speech v1
1 parent a7967f4 commit eabcf64

File tree

16 files changed

+1476
-5
lines changed

16 files changed

+1476
-5
lines changed

google-cloud-speech-v1/pom.xml

Lines changed: 154 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,154 @@
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+
<artifactId>google-cloud-speech-v1</artifactId>
5+
<packaging>jar</packaging>
6+
<name>Google Cloud Speech v1</name>
7+
<url>https://github.com/GoogleCloudPlatform/google-cloud-java/tree/master/google-cloud-speech-v1</url>
8+
<description>
9+
Java idiomatic client for Google Cloud Speech.
10+
</description>
11+
<parent>
12+
<groupId>com.google.cloud</groupId>
13+
<artifactId>google-cloud-pom</artifactId>
14+
<version>0.11.2-alpha-SNAPSHOT</version>
15+
</parent>
16+
<properties>
17+
<site.installationModule>google-cloud-speech-v1</site.installationModule>
18+
<artifact.version>${project.version}</artifact.version>
19+
</properties>
20+
<dependencies>
21+
<dependency>
22+
<groupId>io.netty</groupId>
23+
<artifactId>netty-tcnative-boringssl-static</artifactId>
24+
<version>1.1.33.Fork19</version>
25+
</dependency>
26+
<dependency>
27+
<groupId>${project.groupId}</groupId>
28+
<artifactId>google-cloud-core</artifactId>
29+
<version>${core.version}</version>
30+
</dependency>
31+
<dependency>
32+
<groupId>com.google.api.grpc</groupId>
33+
<artifactId>grpc-google-cloud-speech-v1</artifactId>
34+
<version>0.1.6</version>
35+
<exclusions>
36+
<exclusion>
37+
<groupId>io.grpc</groupId>
38+
<artifactId>grpc-all</artifactId>
39+
</exclusion>
40+
</exclusions>
41+
</dependency>
42+
<dependency>
43+
<groupId>io.grpc</groupId>
44+
<artifactId>grpc-netty</artifactId>
45+
<version>${grpc.version}</version>
46+
</dependency>
47+
<dependency>
48+
<groupId>io.grpc</groupId>
49+
<artifactId>grpc-stub</artifactId>
50+
<version>${grpc.version}</version>
51+
</dependency>
52+
<dependency>
53+
<groupId>io.grpc</groupId>
54+
<artifactId>grpc-auth</artifactId>
55+
<version>${grpc.version}</version>
56+
</dependency>
57+
<dependency>
58+
<groupId>${project.groupId}</groupId>
59+
<artifactId>google-cloud-core</artifactId>
60+
<version>${core.version}</version>
61+
<type>test-jar</type>
62+
<scope>test</scope>
63+
</dependency>
64+
<dependency>
65+
<groupId>junit</groupId>
66+
<artifactId>junit</artifactId>
67+
<version>4.12</version>
68+
<scope>test</scope>
69+
</dependency>
70+
<dependency>
71+
<groupId>org.easymock</groupId>
72+
<artifactId>easymock</artifactId>
73+
<version>3.4</version>
74+
<scope>test</scope>
75+
</dependency>
76+
</dependencies>
77+
<profiles>
78+
<profile>
79+
<id>doclint-java8-disable</id>
80+
<activation>
81+
<jdk>[1.8,)</jdk>
82+
</activation>
83+
<properties>
84+
<!-- add this to disable checking -->
85+
<javadoc.opts>-Xdoclint:none</javadoc.opts>
86+
</properties>
87+
</profile>
88+
</profiles>
89+
<build>
90+
<plugins>
91+
<plugin>
92+
<groupId>org.codehaus.mojo</groupId>
93+
<artifactId>properties-maven-plugin</artifactId>
94+
<version>1.0-alpha-2</version>
95+
<executions>
96+
<execution>
97+
<phase>generate-resources</phase>
98+
<goals>
99+
<goal>write-project-properties</goal>
100+
</goals>
101+
<configuration>
102+
<outputFile>${project.build.outputDirectory}/project.properties</outputFile>
103+
</configuration>
104+
</execution>
105+
</executions>
106+
</plugin>
107+
<plugin>
108+
<groupId>org.codehaus.mojo</groupId>
109+
<artifactId>build-helper-maven-plugin</artifactId>
110+
<version>1.9.1</version>
111+
<executions>
112+
<execution>
113+
<phase>generate-sources</phase>
114+
<goals><goal>add-source</goal></goals>
115+
<configuration>
116+
<sources>
117+
<source>generated/src/main/java</source>
118+
</sources>
119+
</configuration>
120+
</execution>
121+
</executions>
122+
</plugin>
123+
<plugin>
124+
<groupId>org.apache.maven.plugins</groupId>
125+
<artifactId>maven-javadoc-plugin</artifactId>
126+
<version>2.10.3</version>
127+
<executions>
128+
<execution>
129+
<id>attach-javadocs</id>
130+
<goals>
131+
<goal>jar</goal>
132+
</goals>
133+
<configuration>
134+
<additionalparam>${javadoc.opts}</additionalparam>
135+
</configuration>
136+
</execution>
137+
</executions>
138+
</plugin>
139+
<plugin>
140+
<artifactId>maven-compiler-plugin</artifactId>
141+
<!-- Downgrading to 3.1 because of https://issues.apache.org/jira/browse/MCOMPILER-236 -->
142+
<!-- Upgrade to 3.5.1 which fixes the problem when available -->
143+
<!-- <version>3.5.1</version> -->
144+
<version>3.1</version>
145+
<configuration>
146+
<source>1.7</source>
147+
<target>1.7</target>
148+
<encoding>UTF-8</encoding>
149+
<compilerArgument>-Xlint:unchecked</compilerArgument>
150+
</configuration>
151+
</plugin>
152+
</plugins>
153+
</build>
154+
</project>

0 commit comments

Comments
 (0)