Skip to content

Commit 414ec51

Browse files
committed
Merge branch 'checkstyle-enforcement' of https://github.com/oracle/weblogic-kubernetes-operator into checkstyle-enforcement
2 parents 4ca399a + 2c43f34 commit 414ec51

File tree

4 files changed

+21
-2
lines changed

4 files changed

+21
-2
lines changed

json-schema/pom.xml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313

1414
<build>
1515
<plugins>
16+
1617
<plugin>
1718
<groupId>org.apache.maven.plugins</groupId>
1819
<artifactId>maven-compiler-plugin</artifactId>
@@ -24,6 +25,12 @@
2425
</compilerArgs>
2526
</configuration>
2627
</plugin>
28+
29+
<plugin>
30+
<groupId>org.apache.maven.plugins</groupId>
31+
<artifactId>maven-checkstyle-plugin</artifactId>
32+
</plugin>
33+
2734
</plugins>
2835
</build>
2936
<dependencies>

model/pom.xml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -129,6 +129,11 @@
129129
</executions>
130130
</plugin>
131131

132+
<plugin>
133+
<groupId>org.apache.maven.plugins</groupId>
134+
<artifactId>maven-checkstyle-plugin</artifactId>
135+
</plugin>
136+
132137
</plugins>
133138
</build>
134139

model/src/main/java/oracle/kubernetes/weblogic/domain/model/Shutdown.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@ public class Shutdown {
2828
private String shutdownType;
2929

3030
@Description(
31-
"For graceful shutdown only, number of seconds to wait before aborting in-flight work and shutting down the server."
32-
+ " Not required. Defaults to 30 seconds.")
31+
"For graceful shutdown only, number of seconds to wait before aborting in-flight work and shutting down"
32+
+ " the server. Not required. Defaults to 30 seconds.")
3333
private Long timeoutSeconds;
3434

3535
@Description(

operator/pom.xml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -151,6 +151,7 @@
151151
</compilerArgs>
152152
</configuration>
153153
</plugin>
154+
154155
<plugin>
155156
<groupId>org.apache.maven.plugins</groupId>
156157
<artifactId>maven-failsafe-plugin</artifactId>
@@ -169,6 +170,12 @@
169170
</execution>
170171
</executions>
171172
</plugin>
173+
174+
<plugin>
175+
<groupId>org.apache.maven.plugins</groupId>
176+
<artifactId>maven-checkstyle-plugin</artifactId>
177+
</plugin>
178+
172179
</plugins>
173180
</build>
174181

0 commit comments

Comments
 (0)