Skip to content

Commit f1aed1b

Browse files
author
Jaroslav Tulach
committed
Download org.graalvm.tools:profiler:19.0.0 from Maven central repository
1 parent e8475a8 commit f1aed1b

File tree

5 files changed

+22
-2
lines changed

5 files changed

+22
-2
lines changed

visualvm/sampler.truffle/build.xml

+10-1
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,21 @@
66
<description>Builds, tests, and runs the project org.graalvm.visualvm.sampler.</description>
77
<import file="nbproject/build-impl.xml"/>
88

9-
<target name="compile-lib" depends="init">
9+
<target name="download-lib" depends="init">
10+
<downloadbinaries>
11+
<manifest dir="external">
12+
<include name="binaries-list"/>
13+
</manifest>
14+
</downloadbinaries>
15+
</target>
16+
17+
<target name="compile-lib" depends="init,download-lib">
1018
<mkdir dir="${build.dir}/lib-classes" />
1119
<javac srcdir="libsrc" destdir="${build.dir}/lib-classes" deprecation="${build.compiler.deprecation}" debug="${build.compiler.debug}" source="1.7">
1220
<classpath>
1321
<pathelement path="${lib.cp}"/>
1422
</classpath>
23+
<classpath refid="cp"/>
1524
</javac>
1625
<copy todir="${build.dir}/lib-classes">
1726
<fileset dir="libsrc" excludes="${jar-excludes}" />
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
0CE98A7DD6DE15CD90067923D0A3C58180277EBF org.graalvm.tools:profiler:19.0.0
Binary file not shown.

visualvm/sampler.truffle/nbproject/project.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@ javac.compilerargs=-Xlint -Xlint:-serial
33
license.file=../../visualvm/startup/src/org/graalvm/visualvm/modules/startup/LICENSE.txt
44
nbm.homepage=https://visualvm.github.io
55
nbm.module.author=Tomas Hurka, Jiri Sedlacek
6-
lib.cp=${nbjdk.home}/jre/lib/truffle/truffle-api.jar:${nbjdk.home}/jre/tools/profiler/truffle-profiler.jar
6+
lib.cp=${basedir}/external/profiler-19.0.0.jar
77
extra.module.files=modules/ext/stagent.jar
88
cp.extra=${tools.jar}

visualvm/sampler.truffle/nbproject/project.xml

+10
Original file line numberDiff line numberDiff line change
@@ -180,6 +180,16 @@
180180
<specification-version>9.8</specification-version>
181181
</run-dependency>
182182
</dependency>
183+
<dependency>
184+
<code-name-base>org.netbeans.libs.truffleapi</code-name-base>
185+
<build-prerequisite/>
186+
<compile-dependency/>
187+
</dependency>
188+
<dependency>
189+
<code-name-base>org.netbeans.libs.graalsdk</code-name-base>
190+
<build-prerequisite/>
191+
<compile-dependency/>
192+
</dependency>
183193
</module-dependencies>
184194
<public-packages/>
185195
<class-path-extension>

0 commit comments

Comments
 (0)