diff options
author | lucko <git@lucko.me> | 2021-03-10 15:44:14 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-10 15:44:14 +0000 |
commit | 9ee26a12f12a89a6df14eb86afce5d88b5a2cf25 (patch) | |
tree | 840ab480ae324b50cefc63b69dae9b38660dc94f /build.gradle | |
parent | fd6736fc2f0bae48dda1d4b595e867d9c7244c27 (diff) | |
download | spark-9ee26a12f12a89a6df14eb86afce5d88b5a2cf25.tar.gz spark-9ee26a12f12a89a6df14eb86afce5d88b5a2cf25.tar.bz2 spark-9ee26a12f12a89a6df14eb86afce5d88b5a2cf25.zip |
async-profiler support (#102)
Diffstat (limited to 'build.gradle')
-rw-r--r-- | build.gradle | 5 |
1 files changed, 3 insertions, 2 deletions
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" } } } |