This repository was archived by the owner on Jul 28, 2023. It is now read-only.
File tree 2 files changed +31
-1
lines changed
2 files changed +31
-1
lines changed Original file line number Diff line number Diff line change 1
1
# operator-java-bindings
2
2
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
Original file line number Diff line number Diff line change 4
4
5
5
<groupId >io.kabanero</groupId >
6
6
<artifactId >operator-java-bindings</artifactId >
7
- <version >0.0.1-SNAPSHOT </version >
7
+ <version >0.0.1</version >
8
8
<packaging >jar</packaging >
9
9
10
10
<name >operator-java-bindings</name >
39
39
<maven .compiler.target>1.8</maven .compiler.target>
40
40
</properties >
41
41
42
+ <distributionManagement >
43
+ <snapshotRepository >
44
+ <id >ossrh</id >
45
+ <url >https://oss.sonatype.org/content/repositories/snapshots</url >
46
+ </snapshotRepository >
47
+ </distributionManagement >
48
+
42
49
<dependencies >
43
50
<dependency >
44
51
<groupId >junit</groupId >
98
105
</goals >
99
106
</execution >
100
107
</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 >
101
119
</plugin >
102
120
</plugins >
103
121
</build >
You can’t perform that action at this time.
0 commit comments