Skip to content

Commit

Permalink
Initial add of proto-buffer files
Browse files Browse the repository at this point in the history
  • Loading branch information
brendanburns committed Aug 31, 2017
1 parent 2366abf commit 2a96784
Show file tree
Hide file tree
Showing 8 changed files with 298,812 additions and 0 deletions.
7 changes: 7 additions & 0 deletions proto/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# Generating proto files

```sh
git clone https://github.com/kubernetes-client/gen
cd gen/proto
./generate.sh java ${PATH_TO_JAVA_CLIENT_ROOT}/java/proto/src/main/java/
`````````````````````````````````
41 changes: 41 additions & 0 deletions proto/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
<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">
<modelVersion>4.0.0</modelVersion>
<groupId>io.kubernetes</groupId>
<artifactId>client-java-proto</artifactId>
<version>0.1-SNAPSHOT</version>
<packaging>jar</packaging>
<name>client-java-proto</name>
<url>https://github.com/kubernetes-client/java</url>

<parent>
<groupId>io.kubernetes</groupId>
<artifactId>client-java</artifactId>
<version>0.2-SNAPSHOT</version>
</parent>

<dependencies>
<dependency>
<groupId>com.google.protobuf</groupId>
<artifactId>protobuf-java</artifactId>
<version>3.4.0</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<version>2.5.3</version>
<configuration>
<skip>true</skip>
</configuration>
</plugin>
</plugins>
</build>
<properties>
<java.version>1.7</java.version>
<maven.compiler.source>${java.version}</maven.compiler.source>
<maven.compiler.target>${java.version}</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
</project>
Loading

0 comments on commit 2a96784

Please sign in to comment.