LEFT | RIGHT |
1 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/
2001/XMLSchema-instance" | 1 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/
2001/XMLSchema-instance" |
2 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/
xsd/maven-4.0.0.xsd"> | 2 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> | 3 <modelVersion>4.0.0</modelVersion> |
4 <parent> | 4 <parent> |
5 <groupId>com.google</groupId> | 5 <groupId>com.google</groupId> |
6 <artifactId>google</artifactId> | 6 <artifactId>google</artifactId> |
7 <version>5</version> | 7 <version>5</version> |
8 </parent> | 8 </parent> |
9 <groupId>com.google.apis-samples</groupId> | 9 <groupId>com.google.apis-samples</groupId> |
10 <artifactId>compute-engine-cmdline-sample</artifactId> | 10 <artifactId>compute-engine-cmdline-sample</artifactId> |
(...skipping 26 matching lines...) Expand all Loading... |
37 <email>jsimonweb@gmail.com</email> | 37 <email>jsimonweb@gmail.com</email> |
38 <organization>Google</organization> | 38 <organization>Google</organization> |
39 <organizationUrl>http://www.google.com</organizationUrl> | 39 <organizationUrl>http://www.google.com</organizationUrl> |
40 <roles> | 40 <roles> |
41 <role>owner</role> | 41 <role>owner</role> |
42 <role>developer</role> | 42 <role>developer</role> |
43 </roles> | 43 </roles> |
44 <timezone>-7</timezone> | 44 <timezone>-7</timezone> |
45 </developer> | 45 </developer> |
46 </developers> | 46 </developers> |
47 <!--For testing purposes, before libraries are on Maven Central. Will be remov
ed before committing.--> | 47 |
48 <repositories> | 48 <build> |
49 <repository> | |
50 <id>googleapis</id> | |
51 <url>https://google-api-client-libraries.appspot.com/mavenrepo</url> | |
52 </repository> | |
53 </repositories> | |
54 ·· | |
55 <build> | |
56 <plugins> | 49 <plugins> |
57 <plugin> | 50 <plugin> |
58 <artifactId>maven-compiler-plugin</artifactId> | 51 <artifactId>maven-compiler-plugin</artifactId> |
59 <version>2.3.2</version> | 52 <version>2.3.2</version> |
60 <configuration> | 53 <configuration> |
61 <source>1.6</source> | 54 <source>1.6</source> |
62 <target>1.6</target> | 55 <target>1.6</target> |
63 </configuration> | 56 </configuration> |
64 </plugin> | 57 </plugin> |
65 <plugin> | 58 <plugin> |
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
124 <version>${project.http.version}</version> | 117 <version>${project.http.version}</version> |
125 </dependency> | 118 </dependency> |
126 <dependency> | 119 <dependency> |
127 <groupId>com.google.oauth-client</groupId> | 120 <groupId>com.google.oauth-client</groupId> |
128 <artifactId>google-oauth-client-jetty</artifactId> | 121 <artifactId>google-oauth-client-jetty</artifactId> |
129 <version>${project.oauth.version}</version> | 122 <version>${project.oauth.version}</version> |
130 </dependency> | 123 </dependency> |
131 <dependency> | 124 <dependency> |
132 <groupId>com.google.apis</groupId> | 125 <groupId>com.google.apis</groupId> |
133 <artifactId>google-api-services-compute</artifactId> | 126 <artifactId>google-api-services-compute</artifactId> |
134 <version>v1beta14-rev17-1.15.0-rc-SNAPSHOT</version> | 127 <version>v1beta14-rev20-1.15.0-rc</version> |
135 </dependency> | 128 </dependency> |
136 </dependencies> | 129 </dependencies> |
137 <properties> | 130 <properties> |
138 <project.http.version>1.15.0-rc-SNAPSHOT</project.http.version> | 131 <project.http.version>1.15.0-rc</project.http.version> |
139 <project.oauth.version>1.15.0-rc-SNAPSHOT</project.oauth.version> | 132 <project.oauth.version>1.15.0-rc</project.oauth.version> |
140 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> | 133 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
141 </properties> | 134 </properties> |
142 </project> | 135 </project> |
LEFT | RIGHT |