From 9ee26a12f12a89a6df14eb86afce5d88b5a2cf25 Mon Sep 17 00:00:00 2001 From: lucko Date: Wed, 10 Mar 2021 15:44:14 +0000 Subject: async-profiler support (#102) --- build.gradle | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'build.gradle') diff --git a/build.gradle b/build.gradle index 8ea1928..ad44d34 100644 --- a/build.gradle +++ b/build.gradle @@ -1,6 +1,6 @@ allprojects { group = 'me.lucko' - version = '1.4-SNAPSHOT' + version = '1.5-SNAPSHOT' configurations { compileClasspath // Fabric-loom needs this for remap jar for some reason @@ -13,7 +13,7 @@ subprojects { apply plugin: 'idea' ext { - pluginVersion = '1.4.3' + pluginVersion = '1.5.0' pluginDescription = 'spark is a performance profiling plugin based on sk89q\'s WarmRoast profiler' } @@ -28,6 +28,7 @@ subprojects { mavenCentral() maven { url "https://oss.sonatype.org/content/repositories/snapshots/" } maven { url "https://repo.lucko.me/" } + maven { url "https://jitpack.io" } } } -- cgit