Skip to content

Commit 9c9b985

Browse files
Initial GAX submission - generated classes only
1 parent fa74584 commit 9c9b985

File tree

153 files changed

+66618
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

153 files changed

+66618
-0
lines changed

gcloud-java-gax/pom.xml

Lines changed: 82 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,82 @@
1+
<?xml version="1.0"?>
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.google.gcloud</groupId>
5+
<artifactId>gcloud-java-gax</artifactId>
6+
<packaging>jar</packaging>
7+
<name>GCloud Api Extensions</name>
8+
<description>
9+
GCloud Api Extensions
10+
</description>
11+
<parent>
12+
<groupId>com.google.gcloud</groupId>
13+
<artifactId>gcloud-java-pom</artifactId>
14+
<version>0.0.7-SNAPSHOT</version>
15+
</parent>
16+
<dependencies>
17+
<dependency>
18+
<groupId>io.grpc</groupId>
19+
<artifactId>grpc-all</artifactId>
20+
<version>0.9.0</version>
21+
</dependency>
22+
<dependency>
23+
<groupId>com.google.auto.value</groupId>
24+
<artifactId>auto-value</artifactId>
25+
<version>1.1</version>
26+
</dependency>
27+
<dependency>
28+
<groupId>junit</groupId>
29+
<artifactId>junit</artifactId>
30+
<version>4.12</version>
31+
<scope>test</scope>
32+
</dependency>
33+
<dependency>
34+
<groupId>org.mockito</groupId>
35+
<artifactId>mockito-core</artifactId>
36+
<version>1.10.19</version>
37+
<scope>test</scope>
38+
</dependency>
39+
<dependency>
40+
<groupId>com.google.truth</groupId>
41+
<artifactId>truth</artifactId>
42+
<version>0.27</version>
43+
<scope>test</scope>
44+
</dependency>
45+
</dependencies>
46+
<build>
47+
<plugins>
48+
<plugin>
49+
<groupId>org.codehaus.mojo</groupId>
50+
<artifactId>build-helper-maven-plugin</artifactId>
51+
<version>1.9.1</version>
52+
<executions>
53+
<execution>
54+
<phase>generate-sources</phase>
55+
<goals><goal>add-source</goal></goals>
56+
<configuration>
57+
<sources>
58+
<source>src/generated/main</source>
59+
</sources>
60+
</configuration>
61+
</execution>
62+
</executions>
63+
</plugin>
64+
<plugin>
65+
<groupId>org.apache.maven.plugins</groupId>
66+
<artifactId>maven-javadoc-plugin</artifactId>
67+
<version>2.10.2</version>
68+
<executions>
69+
<execution>
70+
<id>attach-javadocs</id>
71+
<goals>
72+
<goal>jar</goal>
73+
</goals>
74+
<configuration> <!-- add this to disable checking -->
75+
<additionalparam>-Xdoclint:none</additionalparam>
76+
</configuration>
77+
</execution>
78+
</executions>
79+
</plugin>
80+
</plugins>
81+
</build>
82+
</project>

gcloud-java-gax/src/generated/main/java/com/google/api/AnnotationsProto.java

Lines changed: 222 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)