switched build system from sbt to Gradle

This commit is contained in:
2021-06-16 08:14:33 +01:00
parent 6422a91568
commit 605e1ad644
21 changed files with 573 additions and 244 deletions

View File

@@ -55,7 +55,7 @@ public class PerformanceTest {
@Test
@SneakyThrows
public void loopTest() {
double jacksonTime, worthTime, antlrTime;
double jacksonTime, wsonTime, antlrTime;
final int loops = 100;
Chronometer chr = new Chronometer();
{
@@ -76,8 +76,8 @@ public class PerformanceTest {
Value value = new JSONParser().parse(smallTestData());
}
}
worthTime = chr.elapsed(Chronometer.UnitOfMeasure.MILLISECONDS);
System.out.printf("Worth time: %8s msec\n", String.format("%.3f", worthTime));
wsonTime = chr.elapsed(Chronometer.UnitOfMeasure.MILLISECONDS);
System.out.printf("Worth time: %8s msec\n", String.format("%.3f", wsonTime));
}
{
for(int j = 0; j < 2; j++) {