|
| 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> |
0 commit comments