com.jprofiler
Owner: Ingo Kegel
Integration with JProfiler
https://www.ej-technologies.com/
Sources: https://www.ej-technologies.com/
Version 14.0.5 (latest)
14.0.5
Created 04 November 2024.
Tasks for profiling with JProfiler from Gradle
Using the plugins DSL:
plugins {
id("com.jprofiler") version "14.0.5"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.jprofiler:jprofiler-gradle:14.0.5")
}
}
apply(plugin = "com.jprofiler")
Using the plugins DSL:
plugins {
id "com.jprofiler" version "14.0.5"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.jprofiler:jprofiler-gradle:14.0.5"
}
}
apply plugin: "com.jprofiler"