|
| 1 | +<project xmlns="http://maven.apache.org/POM/4.0.0" |
| 2 | + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 3 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
| 4 | + <modelVersion>4.0.0</modelVersion> |
| 5 | + <groupId>com.google.cloud.monotoring.samples</groupId> |
| 6 | + <artifactId>cloud-monitoring-v3-samples</artifactId> |
| 7 | + <version>0.1-SNAPSHOT</version> |
| 8 | + <packaging>jar</packaging> |
| 9 | + |
| 10 | + <parent> |
| 11 | + <artifactId>doc-samples</artifactId> |
| 12 | + <groupId>com.google.cloud</groupId> |
| 13 | + <version>1.0.0</version> |
| 14 | + <relativePath>../..</relativePath> |
| 15 | + </parent> |
| 16 | + |
| 17 | + |
| 18 | + <properties> |
| 19 | + <project.http.version>1.19.0</project.http.version> |
| 20 | + <project.oauth.version>1.19.0</project.oauth.version> |
| 21 | + <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 22 | + <skipTests>true</skipTests> |
| 23 | + </properties> |
| 24 | + |
| 25 | + <dependencies> |
| 26 | + <dependency> |
| 27 | + <groupId>com.google.api-client</groupId> |
| 28 | + <artifactId>google-api-client</artifactId> |
| 29 | + <version>1.20.0</version> |
| 30 | + </dependency> |
| 31 | + <dependency> |
| 32 | + <groupId>com.google.oauth-client</groupId> |
| 33 | + <artifactId>google-oauth-client</artifactId> |
| 34 | + <version>${project.oauth.version}</version> |
| 35 | + </dependency> |
| 36 | + <dependency> |
| 37 | + <groupId>com.google.http-client</groupId> |
| 38 | + <artifactId>google-http-client-jackson2</artifactId> |
| 39 | + <version>${project.http.version}</version> |
| 40 | + </dependency> |
| 41 | + <dependency> |
| 42 | + <groupId>com.google.oauth-client</groupId> |
| 43 | + <artifactId>google-oauth-client-jetty</artifactId> |
| 44 | + <version>${project.oauth.version}</version> |
| 45 | + </dependency> |
| 46 | + <dependency> |
| 47 | + <groupId>com.google.code.gson</groupId> |
| 48 | + <artifactId>gson</artifactId> |
| 49 | + <version>2.3.1</version> |
| 50 | + </dependency> |
| 51 | + <dependency> |
| 52 | + <groupId>junit</groupId> |
| 53 | + <artifactId>junit</artifactId> |
| 54 | + <scope>test</scope> |
| 55 | + <version>4.12</version> |
| 56 | + </dependency> |
| 57 | + <dependency> |
| 58 | + <groupId>com.jcabi</groupId> |
| 59 | + <artifactId>jcabi-matchers</artifactId> |
| 60 | + <scope>test</scope> |
| 61 | + <version>1.3</version> |
| 62 | + </dependency> |
| 63 | + <dependency> |
| 64 | + <groupId>joda-time</groupId> |
| 65 | + <artifactId>joda-time</artifactId> |
| 66 | + <version>2.9</version> |
| 67 | + </dependency> |
| 68 | + <dependency> |
| 69 | + <groupId>org.apache.commons</groupId> |
| 70 | + <artifactId>commons-lang3</artifactId> |
| 71 | + <version>3.4</version> |
| 72 | + </dependency> |
| 73 | + <!-- To be replaced by a Maven dependency on public release --> |
| 74 | + <dependency> |
| 75 | + <groupId>com.google.apis</groupId> |
| 76 | + <artifactId>google-api-services-monitoring</artifactId> |
| 77 | + <version>v3-rev1-1.21.0</version> |
| 78 | + </dependency> |
| 79 | + </dependencies> |
| 80 | + <build> |
| 81 | + <pluginManagement> |
| 82 | + <plugins> |
| 83 | + <plugin> |
| 84 | + <artifactId>maven-compiler-plugin</artifactId> |
| 85 | + <version>2.3.2</version> |
| 86 | + <configuration> |
| 87 | + <source>1.7</source> |
| 88 | + <target>1.7</target> |
| 89 | + </configuration> |
| 90 | + </plugin> |
| 91 | + <plugin> |
| 92 | + <groupId>org.apache.maven.plugins</groupId> |
| 93 | + <artifactId>maven-surefire-plugin</artifactId> |
| 94 | + <version>2.4.2</version> |
| 95 | + <configuration> |
| 96 | + <skipTests>${skipTests}</skipTests> |
| 97 | + </configuration> |
| 98 | + </plugin> |
| 99 | + </plugins> |
| 100 | + </pluginManagement> |
| 101 | + |
| 102 | + </build> |
| 103 | +</project> |
0 commit comments