Skip to content
This repository has been archived by the owner on Jul 28, 2023. It is now read-only.

Commit

Permalink
Release 0.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
kaczyns committed Jan 7, 2020
1 parent 7e21313 commit 4c5f02f
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 1 deletion.
12 changes: 12 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,14 @@
# operator-java-bindings
Java mappings of the Kubernetes CRDs owned by the Kabanero Operator

In your pom.xml:
```xml
<dependency>
<groupId>io.kabanero</groupId>
<artifactId>operator-java-bindings</artifactId>
<version>0.0.1</version>
</dependency>
```

The mappings were generated using the instructions here:
https://github.com/kubernetes-client/java/blob/release-6.0/docs/generate-model-from-third-party-resources.md
20 changes: 19 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

<groupId>io.kabanero</groupId>
<artifactId>operator-java-bindings</artifactId>
<version>0.0.1-SNAPSHOT</version>
<version>0.0.1</version>
<packaging>jar</packaging>

<name>operator-java-bindings</name>
Expand Down Expand Up @@ -39,6 +39,13 @@
<maven.compiler.target>1.8</maven.compiler.target>
</properties>

<distributionManagement>
<snapshotRepository>
<id>ossrh</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
</distributionManagement>

<dependencies>
<dependency>
<groupId>junit</groupId>
Expand Down Expand Up @@ -98,6 +105,17 @@
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>1.6.7</version>
<extensions>true</extensions>
<configuration>
<serverId>ossrh</serverId>
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
<autoReleaseAfterClose>true</autoReleaseAfterClose>
</configuration>
</plugin>
</plugins>
</build>
Expand Down

0 comments on commit 4c5f02f

Please sign in to comment.