Skip to content

Commit 2735737

Browse files
committed
added first commit of translate
1 parent c4fafe1 commit 2735737

File tree

2 files changed

+31
-0
lines changed

2 files changed

+31
-0
lines changed

translate/pom.xml

+31
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
<?xml version="1.0"?>
2+
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
3+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
4+
<modelVersion>4.0.0</modelVersion>
5+
<parent>
6+
<groupId>com.google.cloud</groupId>
7+
<artifactId>doc-samples</artifactId>
8+
<version>1.0.0</version>
9+
</parent>
10+
<groupId>com.google.cloud.translate.samples</groupId>
11+
<artifactId>translate</artifactId>
12+
<version>1.0-SNAPSHOT</version>
13+
<name>translate</name>
14+
<url>http://maven.apache.org</url>
15+
<properties>
16+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
17+
</properties>
18+
<dependencies>
19+
<dependency>
20+
<groupId>com.google.cloud</groupId>
21+
<artifactId>google-cloud-pom</artifactId>
22+
<version>0.3.1-SNAPSHOT</version>
23+
</dependency>
24+
<dependency>
25+
<groupId>junit</groupId>
26+
<artifactId>junit</artifactId>
27+
<version>3.8.1</version>
28+
<scope>test</scope>
29+
</dependency>
30+
</dependencies>
31+
</project>

translate/src/main/java/com/google/cloud/translate/samples/Translate.java

Whitespace-only changes.

0 commit comments

Comments
 (0)