8000 initial commit · ileinone/java-docs-samples@7d058d4 · GitHub
[go: up one dir, main page]

Skip to content 8000

Commit 7d058d4

Browse files
committed
initial commit
1 parent 4640550 commit 7d058d4

File tree

8 files changed

+2777
-0
lines changed

8 files changed

+2777
-0
lines changed

tables/automl/pom.xml

Lines changed: 60 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
1+
<!-- Copyright 2019 Google LLC. Licensed under the Apache License, Version
2+
2.0 (the "License"); you may not use this file except in compliance with
3+
the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0
4+
Unless required by applicable law or agreed to in writing, software distributed
5+
under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES
6+
OR CONDITIONS OF ANY KIND, either express or implied. See the License for
7+
the specific language governing permissions and limitations under the License. -->
8+
<project xmlns="http://maven.apache.org/POM/4.0.0"
9+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
10+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
11+
<modelVersion>4.0.0</modelVersion>
12+
13+
<groupId>com.google.cloud.automl.tables.samples</groupId>
14+
<artifactId>automl-tables</artifactId>
15+
<version>0.0.1-SNAPSHOT</version>
16+
<packaging>jar</packaging>
17+
18+
<name>automl-tables</name>
19+
<url>http://maven.apache.org</url>
20+
21+
<properties>
22+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
23+
<maven.compiler.target>1.8</maven.compiler.target>
24+
<maven.compiler.source>1.8</maven.compiler.source>
25+
</properties>
26+
27+
<dependencies>
28+
<!-- [START automl_natural_language_entity_java_dependencies] -->
29+
<dependency>
30+
<groupId>com.google.cloud</groupId>
31+
<artifactId>google-cloud-automl</artifactId>
32+
<version>0.81.1-beta-SNAPSHOT</version>
33+
</dependency>
34+
<!-- [END automl_natural_language_entity_java_dependencies] -->
35+
<dependency>
36+
<groupId>net.sourceforge.argparse4j</groupId>
37+
<artifactId>argparse4j</artifactId>
38+
<version>0.8.1</version>
39+
</dependency>
40+
41+
<!-- Test dependencies -->
42+
<dependency>
43+
<groupId>junit</groupId>
44+
<artifactId>junit</artifactId>
45+
<version>4.12</version>
46+
<scope>test</scope>
47+
</dependency>
48+
<dependency>
49+
<groupId>org.apache.commons</groupId>
50+
<artifactId>commons-csv</artifactId>
51+
<version>1.6</version>
52+
</dependency>
53+
<dependency>
54+
<groupId>com.google.truth</groupId>
55+
<artifactId>truth</artifactId>
56+
<version>0.41</version>
57+
<scope>test</scope>
58+
</dependency>
59+
</dependencies>
60+
</project>
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
892,3,"Kelly, Mr. James",male,34.5,0,0,330911,7.8292,,Q
2+
892,3,"Kelly, Mr. James",male,34.5,0,0,330911,7.8292,,Q

0 commit comments

Comments
 (0)
0