Commit 23c278a 1 parent 15c5799 commit 23c278a Copy full SHA for 23c278a
File tree 3 files changed +40
-1
lines changed
301-quarkus-vertx-kafka/src/main/java/io/quarkus/qe/kafka/consumer
3 files changed +40
-1
lines changed Original file line number Diff line number Diff line change 5
5
import javax .enterprise .context .ApplicationScoped ;
6
6
import javax .inject .Inject ;
7
7
8
- import org .eclipse .microprofile .reactive .messaging .*;
8
+ import org .eclipse .microprofile .reactive .messaging .Acknowledgment ;
9
+ import org .eclipse .microprofile .reactive .messaging .Channel ;
10
+ import org .eclipse .microprofile .reactive .messaging .Emitter ;
11
+ import org .eclipse .microprofile .reactive .messaging .Incoming ;
12
+ import org .eclipse .microprofile .reactive .messaging .OnOverflow ;
13
+ import org .eclipse .microprofile .reactive .messaging .Outgoing ;
9
14
import org .jboss .logging .Logger ;
10
15
11
16
import io .quarkus .qe .kafka .StockPrice ;
Original file line number Diff line number Diff line change
1
+ <?xml version =" 1.0" encoding =" UTF-8" ?><!DOCTYPE module PUBLIC "-//Checkstyle//DTD Checkstyle Configuration 1.3//EN" "https://checkstyle.org/dtds/configuration_1_3.dtd">
2
+
3
+ <module name =" Checker" >
4
+ <property name =" severity" value =" error" />
5
+ <module name =" TreeWalker" >
6
+ <!-- Checks for imports -->
7
+ <!-- See https://checkstyle.org/config_imports.html -->
8
+ <module name =" AvoidStarImport" />
9
+ <module name =" RedundantImport" />
10
+ </module >
11
+ </module >
Original file line number Diff line number Diff line change 52
52
<formatter-maven-plugin .version>2.15.0</formatter-maven-plugin .version>
53
53
<impsort-maven-plugin .version>1.6.0</impsort-maven-plugin .version>
54
54
<xml-format-maven-plugin >3.1.2</xml-format-maven-plugin >
55
+ <maven-checkstyle-plugin .version>3.1.1</maven-checkstyle-plugin .version>
55
56
<quarkus .platform.artifact-id>quarkus-bom</quarkus .platform.artifact-id>
56
57
<quarkus .platform.group-id>io.quarkus</quarkus .platform.group-id>
57
58
<quarkus .platform.version>999-SNAPSHOT</quarkus .platform.version>
208
209
</execution >
209
210
</executions >
210
211
</plugin >
212
+ <plugin >
213
+ <groupId >org.apache.maven.plugins</groupId >
214
+ <artifactId >maven-checkstyle-plugin</artifactId >
215
+ <version >${maven-checkstyle-plugin.version} </version >
216
+ <configuration >
217
+ <configLocation >checkstyle.xml</configLocation >
218
+ <encoding >UTF-8</encoding >
219
+ <consoleOutput >true</consoleOutput >
220
+ <failsOnError >true</failsOnError >
221
+ <linkXRef >true</linkXRef >
222
+ <includeTestSourceDirectory >true</includeTestSourceDirectory >
223
+ </configuration >
224
+ <executions >
225
+ <execution >
226
+ <id >validate</id >
227
+ <phase >validate</phase >
228
+ <goals >
229
+ <goal >check</goal >
230
+ </goals >
231
+ </execution >
232
+ </executions >
233
+ </plugin >
211
234
</plugins >
212
235
</build >
213
236
<profiles >
You can’t perform that action at this time.
0 commit comments