Skip to content

Commit e0c03d6

Browse files
committed
Update Maven dependencies for Truffle tools
1 parent 5724d5d commit e0c03d6

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

docs/tools/chrome-debugger.md

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -122,13 +122,19 @@ class DebuggerSample {
122122
}
123123
}
124124
```
125-
When running on OpenJDK, the following Maven dependency must be declared to use the Chrome Inspector tool from an embedding:
125+
When running on OpenJDK, the following Maven dependencies must be declared to use the Chrome Inspector tool with embedded code:
126126

127127
```xml
128+
<dependency>
129+
<groupId>org.graalvm.polyglot</groupId>
130+
<artifactId>polyglot</artifactId>
131+
<version>${graalvm.polyglot.version}</version>
132+
</dependency>
128133
<dependency>
129134
<groupId>org.graalvm.tools</groupId>
130135
<artifactId>chromeinspector</artifactId>
131-
<version>${graalvm.version}</version>
136+
<version>${graalvm.polyglot.version}</version>
132137
</dependency>
133138
```
139+
134140
The Chrome Inspector tool is always available as a tool on GraalVM. No dependency needs to be explicitly declared there.

0 commit comments

Comments
 (0)