Skip to content

Commit

Permalink
fix: Bump org.jacoco.core to 8.12 (#1685)
Browse files Browse the repository at this point in the history
Signed-off-by: Sheng Chen <[email protected]>
  • Loading branch information
jdneo authored Apr 23, 2024
1 parent 4f180dc commit d8361ff
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,8 @@ Require-Bundle: org.eclipse.jdt.core,
org.apiguardian.api;bundle-version="1.0.0",
org.apache.commons.lang3;bundle-version="3.1.0",
com.google.gson;bundle-version="2.7.0",
org.objectweb.asm;bundle-version="9.6.0",
org.jacoco.core;bundle-version="0.8.11"
org.objectweb.asm;bundle-version="9.7.0",
org.jacoco.core;bundle-version="0.8.12"
Export-Package: com.microsoft.java.test.plugin.launchers;x-friends:="com.microsoft.java.test.plugin.test",
com.microsoft.java.test.plugin.model;x-friends:="com.microsoft.java.test.plugin.test",
com.microsoft.java.test.plugin.coverage;x-friends:="com.microsoft.java.test.plugin.test",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
<dependency>
<groupId>org.jacoco</groupId>
<artifactId>org.jacoco.core</artifactId>
<version>0.8.11</version>
<version>0.8.12</version>
</dependency>
</dependencies>
</location>
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@
"./server/org.eclipse.jdt.junit4.runtime_1.3.0.v20220609-1843.jar",
"./server/org.eclipse.jdt.junit5.runtime_1.1.100.v20220907-0450.jar",
"./server/org.opentest4j_1.2.0.jar",
"./server/org.jacoco.core_0.8.11.202310140853.jar",
"./server/org.jacoco.core_0.8.12.202403310830.jar",
"./server/com.microsoft.java.test.plugin-0.41.0.jar"
],
"viewsWelcome": [
Expand Down
4 changes: 2 additions & 2 deletions test/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,12 @@ async function main(): Promise<void> {
const [cli, ...args] = resolveCliArgsFromVSCodeExecutablePath(vscodeExecutablePath);

// Resolve redhat.java dependency
cp.spawnSync(cli, [...args, '--install-extension', 'redhat.java'], {
cp.spawnSync(cli, [...args, '--install-extension', 'redhat.java', '--pre-release'], {
encoding: 'utf-8',
stdio: 'inherit',
});

cp.spawnSync(cli, [...args, '--install-extension', 'vscjava.vscode-java-debug'], {
cp.spawnSync(cli, [...args, '--install-extension', 'vscjava.vscode-java-debug', '--pre-release'], {
encoding: 'utf-8',
stdio: 'inherit',
});
Expand Down

0 comments on commit d8361ff

Please sign in to comment.