1
0
mirror of synced 2025-12-29 00:17:57 +08:00

!15 增加java性能测试框架

* 调整参数
* 增加JMH性能测试框架
This commit is contained in:
苏振宇
2021-10-09 02:14:34 +00:00
committed by yitter
parent bdca240465
commit 458bfae171
6 changed files with 146 additions and 5 deletions

View File

@@ -45,7 +45,20 @@
<maven.compiler.target>1.8</maven.compiler.target>
<java.version>1.8</java.version>
</properties>
<dependencies>
<dependency>
<groupId>org.openjdk.jmh</groupId>
<artifactId>jmh-core</artifactId>
<version>1.21</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.openjdk.jmh</groupId>
<artifactId>jmh-generator-annprocess</artifactId>
<version>1.21</version>
<scope>provided</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>