Skip to content

Commit

Permalink
#1033: Introduce dependencies.json for jmc (#1057)
Browse files Browse the repository at this point in the history
Co-authored-by: jan-vcapgemini <59438728+jan-vcapgemini@users.noreply.github.com>
Co-authored-by: Jörg Hohwiller <hohwille@users.noreply.github.com>
  • Loading branch information
3 people authored Feb 26, 2025
1 parent 76ae284 commit b4abadd
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
8 changes: 0 additions & 8 deletions cli/src/main/java/com/devonfw/tools/ide/tool/jmc/Jmc.java
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@
import com.devonfw.tools.ide.process.ProcessMode;
import com.devonfw.tools.ide.tool.LocalToolCommandlet;
import com.devonfw.tools.ide.tool.ToolCommandlet;
import com.devonfw.tools.ide.tool.java.Java;

/**
* {@link ToolCommandlet} for <a href="https://www.oracle.com/java/technologies/jdk-mission-control.html">JDK Mission Control</a>, An advanced set of tools for
Expand All @@ -31,13 +30,6 @@ public Jmc(IdeContext context) {
super(context, "jmc", Set.of(Tag.JAVA, Tag.ANALYSE));
}

@Override
protected void installDependencies() {

// TODO create jmc/jmc/dependencies.json file in ide-urls and delete this method
getCommandlet(Java.class).install();
}

@Override
public void run() {

Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"[8.1.*,9.0.0)": [
{
"tool": "java",
"versionRange": "[11,)"
}
]
}

0 comments on commit b4abadd

Please sign in to comment.