|
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 |
| 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 | 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"> |
| 8 | +<project> |
11 | 9 | <modelVersion>4.0.0</modelVersion>
|
12 |
| - |
13 | 10 | <groupId>com.google.cloud.automl.tables.samples</groupId>
|
14 | 11 | <artifactId>automl-tables</artifactId>
|
15 |
| - <version>0.0.1-SNAPSHOT</version> |
16 | 12 | <packaging>jar</packaging>
|
17 | 13 |
|
18 |
| - <name>automl-tables</name> |
19 |
| - <url>http://maven.apache.org</url> |
| 14 | + <!-- |
| 15 | + The parent pom defines common style checks and testing strategies for our samples. |
| 16 | + Removing or replacing it should not affect the execution of the samples in anyway. |
| 17 | + --> |
| 18 | + <parent> |
| 19 | + <groupId>com.google.cloud.samples</groupId> |
| 20 | + <artifactId>shared-configuration</artifactId> |
| 21 | + <version>1.0.11</version> |
| 22 | + </parent> |
20 | 23 |
|
21 | 24 | <properties>
|
22 |
| - <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
23 | 25 | <maven.compiler.target>1.8</maven.compiler.target>
|
24 | 26 | <maven.compiler.source>1.8</maven.compiler.source>
|
| 27 | + <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
25 | 28 | </properties>
|
26 | 29 |
|
27 | 30 | <dependencies>
|
28 | 31 | <!-- [START automl_tables_java_dependencies] -->
|
29 | 32 | <dependency>
|
30 | 33 | <groupId>com.google.cloud</groupId>
|
31 | 34 | <artifactId>google-cloud-automl</artifactId>
|
32 |
| - <version>0.86.0-beta</version> |
| 35 | + <version>0.115.0-beta</version> |
33 | 36 | </dependency>
|
34 | 37 | <!-- [END automl_tables_java_dependencies] -->
|
| 38 | + <dependency> |
| 39 | + <groupId>com.google.cloud</groupId> |
| 40 | + <artifactId>google-cloud-storage</artifactId> |
| 41 | + <version>1.100.0</version> |
| 42 | + </dependency> |
35 | 43 | <dependency>
|
36 | 44 | <groupId>net.sourceforge.argparse4j</groupId>
|
37 | 45 | <artifactId>argparse4j</artifactId>
|
|
42 | 50 | <dependency>
|
43 | 51 | <groupId>junit</groupId>
|
44 | 52 | <artifactId>junit</artifactId>
|
45 |
| - <version>4.12</version> |
| 53 | + <version>4.13-beta-3</version> |
46 | 54 | <scope>test</scope>
|
47 | 55 | </dependency>
|
48 |
| - <dependency> |
49 |
| - <groupId>org.apache.commons</groupId> |
50 |
| - <artifactId>commons-csv</artifactId> |
51 |
| - <version>1.6</version> |
52 |
| - </dependency> |
53 | 56 | <dependency>
|
54 | 57 | <groupId>com.google.truth</groupId>
|
55 | 58 | <artifactId>truth</artifactId>
|
56 |
| - <version>0.41</version> |
| 59 | + <version>1.0</version> |
57 | 60 | <scope>test</scope>
|
58 | 61 | </dependency>
|
| 62 | + <dependency> |
| 63 | + <groupId>org.apache.commons</groupId> |
| 64 | + <artifactId>commons-csv</artifactId> |
| 65 | + <version>1.6</version> |
| 66 | + </dependency> |
59 | 67 | </dependencies>
|
60 | 68 | </project>
|
0 commit comments