Skip to content

Commit

Permalink
Fix jmh bug (#481)
Browse files Browse the repository at this point in the history
* Fix jmh bug

* Remove duplicated dependencies
  • Loading branch information
senyer authored Feb 3, 2020
1 parent bf9520b commit 191820d
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 10 deletions.
2 changes: 2 additions & 0 deletions checkstyle-suppressions.xml
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,6 @@
<suppress checks=".*" files="src[\\/]main[\\/]java[\\/]com[\\/]distkv[\\/]parser[\\/]generated" />
<!-- for linux separator-->
<suppress checks=".*" files="src[\\\\]main[\\\\]java[\\\\]com[\\\\]distkv[\\\\]parser[\\\\]generated" />

<suppress checks=".*" files="target" />
</suppressions>
5 changes: 0 additions & 5 deletions client/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -54,11 +54,6 @@
<artifactId>distkv-parser</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>RELEASE</version>
</dependency>

<dependency>
<groupId>com.beust</groupId>
Expand Down
5 changes: 5 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,11 @@
<artifactId>lombok</artifactId>
<version>${lombok.version}</version>
</path>
<path>
<groupId>org.openjdk.jmh</groupId>
<artifactId>jmh-generator-annprocess</artifactId>
<version>1.21</version>
</path>
</annotationProcessorPaths>
</configuration>
</plugin>
Expand Down
5 changes: 0 additions & 5 deletions server/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -112,11 +112,6 @@
<artifactId>commons-io</artifactId>
<version>2.4</version>
</dependency>
<dependency>
<groupId>commons-lang</groupId>
<artifactId>commons-lang</artifactId>
<version>2.6</version>
</dependency>
<!-- protobuf -->
<dependency>
<groupId>com.google.protobuf</groupId>
Expand Down

0 comments on commit 191820d

Please sign in to comment.