File tree 8 files changed +105
-29
lines changed
bootstrapper-maven-plugin/src/main/resources/templates
caffeine-bounded-cache-support
operator-framework-core/src/test/java/io/javaoperatorsdk/operator/api/config
8 files changed +105
-29
lines changed Original file line number Diff line number Diff line change 45
45
<version >${josdk.version} </version >
46
46
<scope >test</scope >
47
47
</dependency >
48
- <dependency >
49
- <groupId >io.fabric8</groupId >
50
- <artifactId >crd-generator-apt</artifactId >
51
- <version >${fabric8-client.version} </version >
52
- <scope >provided</scope >
53
- </dependency >
54
48
<dependency >
55
49
<groupId >org.slf4j</groupId >
56
50
<artifactId >slf4j-api</artifactId >
86
80
<artifactId >maven-compiler-plugin</artifactId >
87
81
<version >3.11.0</version >
88
82
</plugin >
83
+ <plugin >
84
+ <groupId >io.fabric8</groupId >
85
+ <artifactId >crd-generator-maven-plugin</artifactId >
86
+ <version >${fabric8-client.version} </version >
87
+ <executions >
88
+ <execution >
89
+ <goals >
90
+ <goal >generate</goal >
91
+ </goals >
92
+ </execution >
93
+ </executions >
94
+ </plugin >
89
95
</plugins >
90
96
</build >
91
97
92
- </project >
98
+ </project >
Original file line number Diff line number Diff line change 30
30
<version >${project.version} </version >
31
31
<scope >test</scope >
32
32
</dependency >
33
- <dependency >
34
- <groupId >io.fabric8</groupId >
35
- <artifactId >crd-generator-apt</artifactId >
36
- <scope >test</scope >
37
- </dependency >
38
33
<dependency >
39
34
<groupId >org.apache.logging.log4j</groupId >
40
35
<artifactId >log4j-slf4j2-impl</artifactId >
75
70
</execution >
76
71
</executions >
77
72
</plugin >
73
+ <plugin >
74
+ <groupId >io.fabric8</groupId >
75
+ <artifactId >crd-generator-maven-plugin</artifactId >
76
+ <version >${fabric8-client.version} </version >
77
+ <executions >
78
+ <execution >
79
+ <goals >
80
+ <goal >generate</goal >
81
+ </goals >
82
+ <phase >process-test-classes</phase >
83
+ <configuration >
84
+ <classesToScan >${project.build.testOutputDirectory} </classesToScan >
85
+ <classpath >WITH_ALL_DEPENDENCIES_AND_TESTS</classpath >
86
+ </configuration >
87
+ </execution >
88
+ </executions >
89
+ </plugin >
78
90
</plugins >
79
91
</build >
80
92
Original file line number Diff line number Diff line change 2
2
3
3
import org .junit .jupiter .api .Test ;
4
4
5
- import static org .junit .Assert .assertEquals ;
5
+ import static org .junit .jupiter . api . Assertions .assertEquals ;
6
6
7
7
class VersionTest {
8
8
Original file line number Diff line number Diff line change 108
108
</execution >
109
109
</executions >
110
110
</plugin >
111
+ <plugin >
112
+ <groupId >io.fabric8</groupId >
113
+ <artifactId >crd-generator-maven-plugin</artifactId >
114
+ <version >${fabric8-client.version} </version >
115
+ <executions >
116
+ <execution >
117
+ <goals >
118
+ <goal >generate</goal >
119
+ </goals >
120
+ <phase >process-test-classes</phase >
121
+ <configuration >
122
+ <classesToScan >${project.build.testOutputDirectory} </classesToScan >
123
+ <classpath >WITH_ALL_DEPENDENCIES_AND_TESTS</classpath >
124
+ </configuration >
125
+ </execution >
126
+ </executions >
127
+ </plugin >
111
128
<plugin >
112
129
<groupId >org.apache.maven.plugins</groupId >
113
130
<artifactId >maven-surefire-plugin</artifactId >
Original file line number Diff line number Diff line change 61
61
<fabric8-httpclient-impl .name>jdk</fabric8-httpclient-impl .name>
62
62
63
63
<junit .version>5.10.1</junit .version>
64
- <fabric8-client .version>6.13.4 </fabric8-client .version>
64
+ <fabric8-client .version>7.0-SNAPSHOT </fabric8-client .version>
65
65
<slf4j .version>2.0.12</slf4j .version>
66
66
<log4j .version>2.24.2</log4j .version>
67
67
<mokito .version>5.14.2</mokito .version>
247
247
<url >https://oss.sonatype.org/content/repositories/snapshots/</url >
248
248
</repository >
249
249
</repositories >
250
+
251
+ <pluginRepositories >
252
+ <pluginRepository >
253
+ <snapshots >
254
+ <enabled >true</enabled >
255
+ <updatePolicy >always</updatePolicy >
256
+ </snapshots >
257
+ <id >ossrh</id >
258
+ <url >https://oss.sonatype.org/content/repositories/snapshots/</url >
259
+ </pluginRepository >
260
+ </pluginRepositories >
261
+
250
262
<build >
251
263
<pluginManagement >
252
264
<plugins >
Original file line number Diff line number Diff line change 44
44
<artifactId >mysql-connector-java</artifactId >
45
45
<version >8.0.30</version >
46
46
</dependency >
47
- <dependency >
48
- <groupId >io.fabric8</groupId >
49
- <artifactId >crd-generator-apt</artifactId >
50
- <scope >provided</scope >
51
- </dependency >
52
47
<dependency >
53
48
<groupId >org.apache.logging.log4j</groupId >
54
49
<artifactId >log4j-slf4j2-impl</artifactId >
82
77
83
78
<build >
84
79
<plugins >
80
+ <plugin >
81
+ <groupId >io.fabric8</groupId >
82
+ <artifactId >crd-generator-maven-plugin</artifactId >
83
+ <version >${fabric8-client.version} </version >
84
+ <executions >
85
+ <execution >
86
+ <goals >
87
+ <goal >generate</goal >
88
+ </goals >
89
+ </execution >
90
+ </executions >
91
+ </plugin >
85
92
<plugin >
86
93
<groupId >org.apache.maven.plugins</groupId >
87
94
<artifactId >maven-surefire-plugin</artifactId >
Original file line number Diff line number Diff line change 40
40
<groupId >io.fabric8</groupId >
41
41
<artifactId >kubernetes-httpclient-vertx</artifactId >
42
42
</dependency >
43
- <dependency >
44
- <groupId >io.fabric8</groupId >
45
- <artifactId >crd-generator-apt</artifactId >
46
- <scope >provided</scope >
47
- </dependency >
48
43
<dependency >
49
44
<groupId >org.apache.logging.log4j</groupId >
50
45
<artifactId >log4j-slf4j2-impl</artifactId >
104
99
</to >
105
100
</configuration >
106
101
</plugin >
102
+ <plugin >
103
+ <groupId >org.apache.maven.plugins</groupId >
104
+ <artifactId >maven-compiler-plugin</artifactId >
105
+ </plugin >
106
+ <plugin >
107
+ <groupId >io.fabric8</groupId >
108
+ <artifactId >crd-generator-maven-plugin</artifactId >
109
+ <version >${fabric8-client.version} </version >
110
+ <executions >
111
+ <execution >
112
+ <goals >
113
+ <goal >generate</goal >
114
+ </goals >
115
+ </execution >
116
+ </executions >
117
+ </plugin >
107
118
</plugins >
108
119
</build >
109
120
Original file line number Diff line number Diff line change 44
44
<artifactId >takes</artifactId >
45
45
<version >1.24.4</version >
46
46
</dependency >
47
- <dependency >
48
- <groupId >io.fabric8</groupId >
49
- <artifactId >crd-generator-apt</artifactId >
50
- <scope >provided</scope >
51
- </dependency >
52
47
<dependency >
53
48
<groupId >org.awaitility</groupId >
54
49
<artifactId >awaitility</artifactId >
75
70
</to >
76
71
</configuration >
77
72
</plugin >
73
+ <plugin >
74
+ <groupId >org.apache.maven.plugins</groupId >
75
+ <artifactId >maven-compiler-plugin</artifactId >
76
+ </plugin >
77
+ <plugin >
78
+ <groupId >io.fabric8</groupId >
79
+ <artifactId >crd-generator-maven-plugin</artifactId >
80
+ <version >${fabric8-client.version} </version >
81
+ <executions >
82
+ <execution >
83
+ <goals >
84
+ <goal >generate</goal >
85
+ </goals >
86
+ </execution >
87
+ </executions >
88
+ </plugin >
78
89
</plugins >
79
90
</build >
80
91
You can’t perform that action at this time.
0 commit comments