Skip to content

Commit 5d6e590

Browse files
garrettjonesgooglevam-google
authored andcommitted
Adding google-cloud-dialogflow (#2626)
1 parent a9e22e6 commit 5d6e590

47 files changed

Lines changed: 14521 additions & 1 deletion

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

google-cloud-dialogflow/pom.xml

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

0 commit comments

Comments
 (0)