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

Commit 4c5f02f

Browse files
committed
Release 0.0.1
1 parent 7e21313 commit 4c5f02f

File tree

2 files changed

+31
-1
lines changed

2 files changed

+31
-1
lines changed

Diff for: README.md

+12
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,14 @@
11
# operator-java-bindings
22
Java mappings of the Kubernetes CRDs owned by the Kabanero Operator
3+
4+
In your pom.xml:
5+
```xml
6+
<dependency>
7+
<groupId>io.kabanero</groupId>
8+
<artifactId>operator-java-bindings</artifactId>
9+
<version>0.0.1</version>
10+
</dependency>
11+
```
12+
13+
The mappings were generated using the instructions here:
14+
https://github.com/kubernetes-client/java/blob/release-6.0/docs/generate-model-from-third-party-resources.md

Diff for: pom.xml

+19-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
<groupId>io.kabanero</groupId>
66
<artifactId>operator-java-bindings</artifactId>
7-
<version>0.0.1-SNAPSHOT</version>
7+
<version>0.0.1</version>
88
<packaging>jar</packaging>
99

1010
<name>operator-java-bindings</name>
@@ -39,6 +39,13 @@
3939
<maven.compiler.target>1.8</maven.compiler.target>
4040
</properties>
4141

42+
<distributionManagement>
43+
<snapshotRepository>
44+
<id>ossrh</id>
45+
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
46+
</snapshotRepository>
47+
</distributionManagement>
48+
4249
<dependencies>
4350
<dependency>
4451
<groupId>junit</groupId>
@@ -98,6 +105,17 @@
98105
</goals>
99106
</execution>
100107
</executions>
108+
</plugin>
109+
<plugin>
110+
<groupId>org.sonatype.plugins</groupId>
111+
<artifactId>nexus-staging-maven-plugin</artifactId>
112+
<version>1.6.7</version>
113+
<extensions>true</extensions>
114+
<configuration>
115+
<serverId>ossrh</serverId>
116+
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
117+
<autoReleaseAfterClose>true</autoReleaseAfterClose>
118+
</configuration>
101119
</plugin>
102120
</plugins>
103121
</build>

0 commit comments

Comments
 (0)