Skip to content

Commit

Permalink
devonfw#1090: add FileAccess with unpack, implement setup, delete Fun…
Browse files Browse the repository at this point in the history
…ctions
  • Loading branch information
hohwille committed Sep 5, 2023
1 parent 2c15505 commit cdfd20a
Show file tree
Hide file tree
Showing 36 changed files with 1,482 additions and 806 deletions.
6 changes: 6 additions & 0 deletions ide/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,12 @@
<artifactId>picocli</artifactId>
<version>${picocli.version}</version>
</dependency>
<!-- unpack tar, gzip, bzip2 -->
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-compress</artifactId>
<version>1.23.0</version>
</dependency>
<!-- JSON and XML support -->
<dependency>
<groupId>javax.json</groupId>
Expand Down
2 changes: 2 additions & 0 deletions ide/src/main/java/com/devonfw/tools/ide/cli/Devon.java
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
import com.devonfw.tools.ide.commandlet.EnvironmentCommand;
import com.devonfw.tools.ide.commandlet.gh.Gh;
import com.devonfw.tools.ide.commandlet.java.Java;
import com.devonfw.tools.ide.commandlet.mvn.Mvn;


@CommandLine.Command(name = "devon",
Expand All @@ -16,6 +17,7 @@
commandListHeading = "%nSubCommands are: %n",
subcommands = {
Java.class,
Mvn.class,
Gh.class,
EnvironmentCommand.class
}
Expand Down
Loading

0 comments on commit cdfd20a

Please sign in to comment.