File tree Expand file tree Collapse file tree 2 files changed +8
-3
lines changed
src/test/java/org/csanchez/jenkins/plugins/kubernetes/pipeline Expand file tree Collapse file tree 2 files changed +8
-3
lines changed Original file line number Diff line number Diff line change 169169 <groupId >io.jenkins.configuration-as-code</groupId >
170170 <artifactId >test-harness</artifactId >
171171 <scope >test</scope >
172+ <exclusions >
173+ <exclusion >
174+ <groupId >org.jetbrains</groupId >
175+ <artifactId >annotations</artifactId >
176+ </exclusion >
177+ </exclusions >
172178 </dependency >
173179 <dependency >
174180 <groupId >org.awaitility</groupId >
Original file line number Diff line number Diff line change 9494import org .jenkinsci .plugins .workflow .job .WorkflowRun ;
9595import org .jenkinsci .plugins .workflow .steps .durable_task .DurableTaskStep ;
9696import org .jenkinsci .plugins .workflow .test .steps .SemaphoreStep ;
97- import org .jetbrains .annotations .NotNull ;
9897import org .junit .After ;
9998import org .junit .Assert ;
10099import org .junit .Before ;
@@ -941,9 +940,9 @@ public void decoratorFailure() throws Exception {
941940
942941 @ TestExtension ("decoratorFailure" )
943942 public static class DecoratorImpl implements PodDecorator {
944- @ NotNull
943+ @ NonNull
945944 @ Override
946- public Pod decorate (@ NotNull KubernetesCloud kubernetesCloud , @ NotNull Pod pod ) {
945+ public Pod decorate (@ NonNull KubernetesCloud kubernetesCloud , @ NonNull Pod pod ) {
947946 throw new PodDecoratorException ("I always fail" );
948947 }
949948 }
You can’t perform that action at this time.
0 commit comments