Skip to content

Commit 1ea861b

Browse files
committed
initialize CRD to POJO generator
1 parent bf0fe49 commit 1ea861b

File tree

4 files changed

+304
-197
lines changed

4 files changed

+304
-197
lines changed

.mvn/maven.config

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
11
-Pconsume-incrementals
22
-Pmight-produce-incrementals
33
-Dchangelist.format=-rc%d
4-
-Pdownload-binaries

pom.xml

Lines changed: 32 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@
149149
<dependency>
150150
<groupId>org.jsonschema2pojo</groupId>
151151
<artifactId>jsonschema2pojo-core</artifactId>
152-
<version>1.2.1</version>
152+
<version>1.2.2</version>
153153
</dependency>
154154

155155
<!-- Code generation with Sun CodeModel -->
@@ -159,18 +159,11 @@
159159
<version>2.6</version>
160160
</dependency>
161161

162-
<!-- YAML processing -->
163-
<dependency>
164-
<groupId>com.fasterxml.jackson.dataformat</groupId>
165-
<artifactId>jackson-dataformat-yaml</artifactId>
166-
<version>2.15.2</version>
167-
</dependency>
168-
169162
<!-- Commons IO for file operations -->
170163
<dependency>
171164
<groupId>commons-io</groupId>
172165
<artifactId>commons-io</artifactId>
173-
<version>2.11.0</version>
166+
<version>2.17.0</version>
174167
</dependency>
175168
</dependencies>
176169

@@ -223,6 +216,36 @@
223216
<artifactId>ivy</artifactId>
224217
<version>2.5.3</version>
225218
</dependency>
219+
<dependency>
220+
<groupId>org.yaml</groupId>
221+
<artifactId>snakeyaml</artifactId>
222+
<version>2.3</version>
223+
</dependency>
224+
<dependency>
225+
<groupId>com.fasterxml.jackson.dataformat</groupId>
226+
<artifactId>jackson-dataformat-yaml</artifactId>
227+
<version>2.19.0</version>
228+
</dependency>
229+
<dependency>
230+
<groupId>org.jsonschema2pojo</groupId>
231+
<artifactId>jsonschema2pojo-core</artifactId>
232+
<version>1.2.2</version>
233+
</dependency>
234+
<dependency>
235+
<groupId>com.google.errorprone</groupId>
236+
<artifactId>error_prone_annotations</artifactId>
237+
<version>2.27.0</version>
238+
</dependency>
239+
<dependency>
240+
<groupId>com.google.code.gson</groupId>
241+
<artifactId>gson</artifactId>
242+
<version>2.11.0</version>
243+
</dependency>
244+
<dependency>
245+
<groupId>org.apache.commons</groupId>
246+
<artifactId>commons-text</artifactId>
247+
<version>1.13.1</version>
248+
</dependency>
226249
</dependencies>
227250
</dependencyManagement>
228251

0 commit comments

Comments
 (0)