File tree Expand file tree Collapse file tree 2 files changed +30
-1
lines changed
src/main/java/de/rieckpil/blog/jmh Expand file tree Collapse file tree 2 files changed +30
-1
lines changed Original file line number Diff line number Diff line change 301
301
<groupId >org.openjdk.jmh</groupId >
302
302
<artifactId >jmh-core</artifactId >
303
303
<version >${jmh-core.version} </version >
304
- <scope >test</scope >
305
304
</dependency >
306
305
<dependency >
307
306
<groupId >org.openjdk.jmh</groupId >
412
411
<format >html</format >
413
412
</configuration >
414
413
</plugin >
414
+
415
+ <plugin >
416
+ <artifactId >maven-dependency-plugin</artifactId >
417
+ <executions >
418
+ <execution >
419
+ <id >build-classpath</id >
420
+ <goals >
421
+ <goal >build-classpath</goal >
422
+ </goals >
423
+ <configuration >
424
+ <includeScope >runtime</includeScope >
425
+ <outputProperty >depClasspath</outputProperty >
426
+ </configuration >
427
+ </execution >
428
+ </executions >
429
+ </plugin >
430
+ <plugin >
431
+ <groupId >org.codehaus.mojo</groupId >
432
+ <artifactId >exec-maven-plugin</artifactId >
433
+ <version >3.0.0</version >
434
+ <configuration >
435
+ <mainClass >de.rieckpil.blog.jmh.StringConcatenationBenchmark</mainClass >
436
+ <systemProperties >
437
+ <systemProperty >
438
+ <key >java.class.path</key >
439
+ <value >${project.build.outputDirectory}${path.separator}${depClasspath} </value >
440
+ </systemProperty >
441
+ </systemProperties >
442
+ </configuration >
443
+ </plugin >
415
444
</plugins >
416
445
</build >
417
446
</project >
File renamed without changes.
You can’t perform that action at this time.
0 commit comments