Skip to content

Commit

Permalink
Merge pull request #40 from MighTguY/benchmark
Browse files Browse the repository at this point in the history
Benchmarking using JMH
  • Loading branch information
MighTguY authored Jan 31, 2020
2 parents 7014dbf + af9c421 commit b3e63dc
Show file tree
Hide file tree
Showing 22 changed files with 493 additions and 629 deletions.
24 changes: 22 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<java.version>1.8</java.version>
<maven-compiler-plugin.version>3.1</maven-compiler-plugin.version>
<maven-release-plugin.version>2.5.2</maven-release-plugin.version>
<maven-checkstyle-plugin.version>3.0.0</maven-checkstyle-plugin.version>
<maven-checkstyle-plugin.version>3.1.0</maven-checkstyle-plugin.version>
<checkstyle.version>8.29</checkstyle.version>
<checkstyle.location>google_checks.xml</checkstyle.location>
<checkstyle.exclusions>checkstyle-suppressions.xml</checkstyle.exclusions>
Expand Down Expand Up @@ -107,6 +107,27 @@
<version>${solr.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.openjdk.jmh</groupId>
<artifactId>jmh-core</artifactId>
<version>${jmh.version}</version>
</dependency>
<dependency>
<groupId>org.openjdk.jmh</groupId>
<artifactId>jmh-generator-annprocess</artifactId>
<version>${jmh.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-csv</artifactId>
<version>1.3</version>
</dependency>
<dependency>
<groupId>io.github.mightguy</groupId>
<artifactId>symspell-lib</artifactId>
<version>${parent.version}</version>
</dependency>
</dependencies>
</dependencyManagement>

Expand Down Expand Up @@ -422,7 +443,6 @@
<module>symspell-lib</module>
<module>symspell-console</module>
<module>symspell-solr</module>
<module>symspell-benchmark</module>
</modules>

</project>
178 changes: 0 additions & 178 deletions symspell-benchmark/README.md

This file was deleted.

41 changes: 0 additions & 41 deletions symspell-benchmark/pom.xml

This file was deleted.

This file was deleted.

Loading

0 comments on commit b3e63dc

Please sign in to comment.