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 4b47169
Show file tree
Hide file tree
Showing 8 changed files with 298,814 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/
`````````````````````````````````
47 changes: 47 additions & 0 deletions proto/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
<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>
<swagger-core-version>1.5.12</swagger-core-version>
<okhttp-version>2.7.5</okhttp-version>
<gson-version>2.6.2</gson-version>
<jodatime-version>2.9.3</jodatime-version>
<maven-plugin-version>1.0.0</maven-plugin-version>
<junit-version>4.12</junit-version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
</project>
Loading

0 comments on commit 4b47169

Please sign in to comment.