Skip to content

Commit 2a96784

Browse files
committed
Initial add of proto-buffer files
1 parent 2366abf commit 2a96784

File tree

8 files changed

+298812
-0
lines changed

8 files changed

+298812
-0
lines changed

proto/README.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# Generating proto files
2+
3+
```sh
4+
git clone https://github.com/kubernetes-client/gen
5+
cd gen/proto
6+
./generate.sh java ${PATH_TO_JAVA_CLIENT_ROOT}/java/proto/src/main/java/
7+
`````````````````````````````````

proto/pom.xml

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
<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">
2+
<modelVersion>4.0.0</modelVersion>
3+
<groupId>io.kubernetes</groupId>
4+
<artifactId>client-java-proto</artifactId>
5+
<version>0.1-SNAPSHOT</version>
6+
<packaging>jar</packaging>
7+
<name>client-java-proto</name>
8+
<url>https://github.com/kubernetes-client/java</url>
9+
10+
<parent>
11+
<groupId>io.kubernetes</groupId>
12+
<artifactId>client-java</artifactId>
13+
<version>0.2-SNAPSHOT</version>
14+
</parent>
15+
16+
<dependencies>
17+
<dependency>
18+
<groupId>com.google.protobuf</groupId>
19+
<artifactId>protobuf-java</artifactId>
20+
<version>3.4.0</version>
21+
</dependency>
22+
</dependencies>
23+
<build>
24+
<plugins>
25+
<plugin>
26+
<groupId>org.apache.maven.plugins</groupId>
27+
<artifactId>maven-deploy-plugin</artifactId>
28+
<version>2.5.3</version>
29+
<configuration>
30+
<skip>true</skip>
31+
</configuration>
32+
</plugin>
33+
</plugins>
34+
</build>
35+
<properties>
36+
<java.version>1.7</java.version>
37+
<maven.compiler.source>${java.version}</maven.compiler.source>
38+
<maven.compiler.target>${java.version}</maven.compiler.target>
39+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
40+
</properties>
41+
</project>

0 commit comments

Comments
 (0)