|
| 1 | +<?xml version='1.0' encoding='UTF-8'?> |
| 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 | + <groupId>com.example.vision</groupId> |
| 5 | + <artifactId>vision-snippets</artifactId> |
| 6 | + <packaging>jar</packaging> |
| 7 | + <name>Google Cloud Vision Snippets</name> |
| 8 | + <url>https://github.com/GoogleCloudPlatform/java-docs-samples/tree/main/vision</url> |
| 9 | + |
| 10 | + <!-- |
| 11 | + The parent pom defines common style checks and testing strategies for our samples. |
| 12 | + Removing or replacing it should not affect the execution of the samples in anyway. |
| 13 | + --> |
| 14 | + <parent> |
| 15 | + <groupId>com.google.cloud.samples</groupId> |
| 16 | + <artifactId>shared-configuration</artifactId> |
| 17 | + <version>1.2.0</version> |
| 18 | + </parent> |
| 19 | + |
| 20 | + <properties> |
| 21 | + <maven.compiler.target>1.8</maven.compiler.target> |
| 22 | + <maven.compiler.source>1.8</maven.compiler.source> |
| 23 | + <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 24 | + </properties> |
| 25 | + |
| 26 | + |
| 27 | + <!-- [START vision_install_with_bom] --> |
| 28 | + <dependencyManagement> |
| 29 | + <dependencies> |
| 30 | + <dependency> |
| 31 | + <groupId>com.google.cloud</groupId> |
| 32 | + <artifactId>libraries-bom</artifactId> |
| 33 | + <version>26.1.3</version> |
| 34 | + <type>pom</type> |
| 35 | + <scope>import</scope> |
| 36 | + </dependency> |
| 37 | + </dependencies> |
| 38 | + </dependencyManagement> |
| 39 | + |
| 40 | + <dependencies> |
| 41 | + <dependency> |
| 42 | + <groupId>com.google.cloud</groupId> |
| 43 | + <artifactId>google-cloud-vision</artifactId> |
| 44 | + </dependency> |
| 45 | + <!-- [START_EXCLUDE] --> |
| 46 | + <dependency> |
| 47 | + <groupId>com.google.cloud</groupId> |
| 48 | + <artifactId>google-cloud-storage</artifactId> |
| 49 | + </dependency> |
| 50 | + <dependency> |
| 51 | + <groupId>net.sourceforge.argparse4j</groupId> |
| 52 | + <artifactId>argparse4j</artifactId> |
| 53 | + <version>0.9.0</version> |
| 54 | + </dependency> |
| 55 | + <dependency> |
| 56 | + <groupId>org.apache.commons</groupId> |
| 57 | + <artifactId>commons-csv</artifactId> |
| 58 | + <version>1.9.0</version> |
| 59 | + </dependency> |
| 60 | + <dependency> |
| 61 | + <groupId>junit</groupId> |
| 62 | + <artifactId>junit</artifactId> |
| 63 | + <version>4.13.2</version> |
| 64 | + <scope>test</scope> |
| 65 | + </dependency> |
| 66 | + <dependency> |
| 67 | + <groupId>com.google.cloud</groupId> |
| 68 | + <artifactId>google-cloud-core</artifactId> |
| 69 | + <version>2.8.21</version> |
| 70 | + <scope>test</scope> |
| 71 | + <classifier>tests</classifier> |
| 72 | + </dependency> |
| 73 | + <dependency> |
| 74 | + <groupId>com.google.truth</groupId> |
| 75 | + <artifactId>truth</artifactId> |
| 76 | + <version>1.1.3</version> |
| 77 | + <scope>test</scope> |
| 78 | + </dependency> |
| 79 | + <!-- [END_EXCLUDE] --> |
| 80 | + </dependencies> |
| 81 | + <!-- [END vision_install_with_bom] --> |
| 82 | +</project> |
0 commit comments