|
| 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 | + <parent> |
| 5 | + <groupId>com.google.cloud</groupId> |
| 6 | + <artifactId>google-cloud-bigquery-parent</artifactId> |
| 7 | + <version>2.60.0</version> |
| 8 | + <relativePath>../pom.xml</relativePath> |
| 9 | + </parent> |
| 10 | + |
| 11 | + <groupId>com.google.cloud</groupId> |
| 12 | + <artifactId>google-cloud-bigquery-jdbc-it</artifactId> |
| 13 | + <version>0.4.0</version> |
| 14 | + <name>BigQuery JDBC IT Assembly</name> |
| 15 | + <packaging>pom</packaging> |
| 16 | + |
| 17 | + <properties> |
| 18 | + <animal.sniffer.skip>true</animal.sniffer.skip> |
| 19 | + <checkstyle.skip>true</checkstyle.skip> |
| 20 | + <enforcer.skip>true</enforcer.skip> |
| 21 | + </properties> |
| 22 | + |
| 23 | + <dependencies> |
| 24 | + <dependency> |
| 25 | + <groupId>com.google.cloud</groupId> |
| 26 | + <artifactId>google-cloud-bigquery-jdbc</artifactId> |
| 27 | + <version>0.4.0</version> |
| 28 | + <type>test-jar</type> |
| 29 | + <scope>test</scope> |
| 30 | + </dependency> |
| 31 | + <dependency> |
| 32 | + <groupId>com.google.cloud</groupId> |
| 33 | + <artifactId>google-cloud-bigquery-jdbc</artifactId> |
| 34 | + <version>0.4.0</version> |
| 35 | + <scope>test</scope> |
| 36 | + </dependency> |
| 37 | + <dependency> |
| 38 | + <groupId>com.google.cloud</groupId> |
| 39 | + <artifactId>google-cloud-bigquery</artifactId> |
| 40 | + <scope>test</scope> |
| 41 | + </dependency> |
| 42 | + <dependency> |
| 43 | + <groupId>com.google.cloud</groupId> |
| 44 | + <artifactId>google-cloud-bigquerystorage</artifactId> |
| 45 | + <scope>test</scope> |
| 46 | + </dependency> |
| 47 | + <dependency> |
| 48 | + <groupId>junit</groupId> |
| 49 | + <artifactId>junit</artifactId> |
| 50 | + <version>4.13.2</version> |
| 51 | + <scope>test</scope> |
| 52 | + </dependency> |
| 53 | + <dependency> |
| 54 | + <groupId>com.google.truth</groupId> |
| 55 | + <artifactId>truth</artifactId> |
| 56 | + <version>1.1.3</version> |
| 57 | + <scope>test</scope> |
| 58 | + </dependency> |
| 59 | + <dependency> |
| 60 | + <groupId>org.mockito</groupId> |
| 61 | + <artifactId>mockito-core</artifactId> |
| 62 | + <version>4.11.0</version> |
| 63 | + <scope>test</scope> |
| 64 | + </dependency> |
| 65 | + </dependencies> |
| 66 | + |
| 67 | + <build> |
| 68 | + <directory>target-it</directory> |
| 69 | + <plugins> |
| 70 | + <plugin> |
| 71 | + <groupId>org.apache.maven.plugins</groupId> |
| 72 | + <artifactId>maven-assembly-plugin</artifactId> |
| 73 | + <version>3.6.0</version> |
| 74 | + <executions> |
| 75 | + <execution> |
| 76 | + <id>make-test-assembly</id> |
| 77 | + <phase>package</phase> |
| 78 | + <goals> |
| 79 | + <goal>single</goal> |
| 80 | + </goals> |
| 81 | + <configuration> |
| 82 | + <descriptors> |
| 83 | + <descriptor>src/assembly/test-assembly.xml</descriptor> |
| 84 | + </descriptors> |
| 85 | + </configuration> |
| 86 | + </execution> |
| 87 | + </executions> |
| 88 | + </plugin> |
| 89 | + </plugins> |
| 90 | + </build> |
| 91 | +</project> |
0 commit comments