MVN

com.oracle.truffle : truffle-profiler

Maven & Gradle

Dec 08, 2017
19.4k stars

Truffle Profiler · The truffle profiler, supporting CPU sampling and tracing. Memory tracing support is experimental

<dependency>
    <groupId>com.oracle.truffle</groupId>
    <artifactId>truffle-profiler</artifactId>
    <version>0.30</version>
</dependency>
Copy
pom.xml
Table Of Contents

Latest Version

Choose a version of com.oracle.truffle : truffle-profiler to add to Maven or Gradle - Latest Versions:

  • Latest Stable: 0.30

All Versions

Choose a version of com.oracle.truffle : truffle-profiler to add to Maven or Gradle - All Versions:

Version Vulnerabilities Updated
0.30
truffle-profiler-0.30

How to add a dependency to Maven

Add the following com.oracle.truffle : truffle-profiler maven dependency to the pom.xml file with your favorite IDE (IntelliJ / Eclipse / Netbeans):

<dependency>
    <groupId>com.oracle.truffle</groupId>
    <artifactId>truffle-profiler</artifactId>
    <version>0.30</version>
</dependency>

How to add a dependency to Gradle

Gradle Groovy DSL: Add the following com.oracle.truffle : truffle-profiler gradle dependency to your build.gradle file:

implementation 'com.oracle.truffle:truffle-profiler:0.30'

Gradle Kotlin DSL: Add the following com.oracle.truffle : truffle-profiler gradle kotlin dependency to your build.gradle.kts file:

implementation("com.oracle.truffle:truffle-profiler:0.30")

How to add a dependency to SBT Scala

SBT Scala: Add the following com.oracle.truffle : truffle-profiler sbt scala dependency to your build.sbt file:

libraryDependencies += "com.oracle.truffle" % "truffle-profiler" % "0.30"