| <?xml version="1.0" encoding="UTF-8"?> |
| <!-- |
| ~ Copyright (c) 2016-2016 Google Inc. All Rights Reserved. |
| ~ |
| ~ Licensed under the Apache License, Version 2.0 (the "License"); you |
| ~ may not use this file except in compliance with the License. You may |
| ~ obtain a copy of the License at |
| ~ |
| ~ http://www.apache.org/licenses/LICENSE-2.0 |
| ~ |
| ~ Unless required by applicable law or agreed to in writing, software |
| ~ distributed under the License is distributed on an "AS IS" BASIS, |
| ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or |
| ~ implied. See the License for the specific language governing |
| ~ permissions and limitations under the License. |
| --> |
| |
| <project> |
| |
| <modelVersion>4.0.0</modelVersion> |
| |
| <groupId>com.example.bigtable</groupId> |
| <artifactId>bigtable-hello</artifactId> |
| <packaging>war</packaging> |
| <version>1.0-SNAPSHOT</version> |
| |
| <properties> |
| <bigtable.version>0.9.1</bigtable.version> |
| <hbase.version>1.2.1</hbase.version> |
| <bigtable.projectID>google.com:android-vts-staging</bigtable.projectID> |
| <!-- switch to below for production push |
| CAUTION only VTS release engineer shall do such production push |
| after running all of its tests and verifying the UI. |
| <bigtable.projectID>google.com:android-vts-internal</bigtable.projectID> |
| --> |
| <bigtable.instanceID>vts-dev</bigtable.instanceID> |
| |
| <hadoop.version>2.4.1</hadoop.version> |
| <compat.module>hbase-hadoop2-compat</compat.module> |
| |
| <appengine.version>1.9.40</appengine.version> |
| <gcloud.plugin.version>2.0.9.111.v20160527</gcloud.plugin.version> |
| |
| <slf4j.version>1.7.12</slf4j.version> |
| <log4j.version>1.2.17</log4j.version> |
| |
| <requiredMavenVersion>3.3.3</requiredMavenVersion> |
| |
| <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| <project.build.outputEncoding>UTF-8</project.build.outputEncoding> |
| |
| <slf4jVersion>1.6.1</slf4jVersion> |
| </properties> |
| |
| <repositories> |
| <repository> |
| <id>snapshots-repo</id> |
| <url>https://oss.sonatype.org/content/repositories/snapshots</url> |
| <releases><enabled>false</enabled></releases> |
| <snapshots><enabled>true</enabled></snapshots> |
| </repository> |
| <repository> |
| <releases> |
| <enabled>true</enabled> |
| <updatePolicy>daily</updatePolicy> |
| <checksumPolicy>warn</checksumPolicy> |
| </releases> |
| <snapshots> |
| <enabled>false</enabled> |
| <updatePolicy>never</updatePolicy> |
| <checksumPolicy>fail</checksumPolicy> |
| </snapshots> |
| <id>google-maven-central</id> |
| <name>Google Maven Central</name> |
| <url>https://maven-central.storage.googleapis.com</url> |
| <layout>default</layout> |
| </repository> |
| </repositories> |
| |
| <pluginRepositories> |
| <pluginRepository> |
| <releases> |
| <enabled>true</enabled> |
| <updatePolicy>daily</updatePolicy> |
| <checksumPolicy>warn</checksumPolicy> |
| </releases> |
| <snapshots> |
| <enabled>false</enabled> |
| <updatePolicy>never</updatePolicy> |
| <checksumPolicy>fail</checksumPolicy> |
| </snapshots> |
| <id>google-maven-central</id> |
| <name>Google Maven Central</name> |
| <url>https://maven-central.storage.googleapis.com</url> |
| <layout>default</layout> |
| </pluginRepository> |
| </pluginRepositories> |
| |
| |
| <dependencies> |
| <dependency> |
| <groupId>com.google.cloud.bigtable</groupId> |
| <artifactId>bigtable-hbase-1.2</artifactId> |
| <version>${bigtable.version}</version> |
| </dependency> |
| |
| <dependency> |
| <groupId>org.apache.hbase</groupId> |
| <artifactId>hbase-client</artifactId> |
| <version>${hbase.version}</version> |
| </dependency> |
| |
| <dependency> |
| <groupId>com.google.appengine</groupId> |
| <artifactId>appengine-api-1.0-sdk</artifactId> |
| <version>${appengine.version}</version> |
| <scope>provided</scope> |
| </dependency> |
| |
| <dependency> |
| <groupId>io.netty</groupId> |
| <artifactId>netty-tcnative-boringssl-static</artifactId> |
| <version>1.1.33.Fork19</version> |
| </dependency> |
| |
| <dependency> |
| <groupId>javax.servlet</groupId> |
| <artifactId>javax.servlet-api</artifactId> |
| <version>3.1.0</version> |
| <scope>provided</scope> |
| </dependency> |
| |
| <dependency> |
| <groupId>org.json</groupId> |
| <artifactId>json</artifactId> |
| <version>20140107</version> |
| </dependency> |
| |
| <dependency> |
| <groupId>org.slf4j</groupId> |
| <artifactId>slf4j-api</artifactId> |
| <version>${slf4jVersion}</version> |
| </dependency> |
| <dependency> |
| <groupId>com.google.code.gson</groupId> |
| <artifactId>gson</artifactId> |
| <version>2.7</version> |
| </dependency> |
| <dependency> |
| <groupId>org.seleniumhq.selenium</groupId> |
| <artifactId>selenium-java</artifactId> |
| <version>3.0.0-beta2</version> |
| </dependency> |
| </dependencies> |
| |
| <build> |
| <outputDirectory>target/${project.artifactId}-${project.version}/WEB-INF/classes</outputDirectory> |
| <resources> |
| <resource> |
| <directory>src/main/resources</directory> |
| <filtering>true</filtering> |
| </resource> |
| </resources> |
| <plugins> |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <version>3.3</version> |
| <artifactId>maven-compiler-plugin</artifactId> |
| <configuration> |
| <source>1.8</source> |
| <target>1.8</target> |
| <showDeprecation>true</showDeprecation> |
| <showWarnings>true</showWarnings> |
| </configuration> |
| </plugin> |
| |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-war-plugin</artifactId> |
| <version>2.6</version> |
| <configuration> |
| <archiveClasses>true</archiveClasses> |
| <failOnMissingWebXml>false</failOnMissingWebXml> |
| <webResources> |
| <!-- in order to interpolate version from pom into appengine-web.xml --> |
| <resource> |
| <directory>${basedir}/src/main/webapp/WEB-INF</directory> |
| <filtering>true</filtering> |
| <targetPath>WEB-INF</targetPath> |
| </resource> |
| </webResources> |
| </configuration> |
| </plugin> |
| |
| <plugin> |
| <groupId>com.google.appengine</groupId> |
| <artifactId>gcloud-maven-plugin</artifactId> |
| <version>${gcloud.plugin.version}</version> |
| <configuration> |
| <gcloud_directory>${gcloud.directory}</gcloud_directory> |
| </configuration> |
| </plugin> |
| |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-javadoc-plugin</artifactId> |
| <configuration> |
| <includePackageNames>com.google.gson</includePackageNames> |
| <excludePackageNames>com.google.gson.internal:com.google.gson.internal.bind</excludePackageNames> |
| </configuration> |
| </plugin> |
| |
| </plugins> |
| </build> |
| </project> |