package com.baeldung.shell; import java.io.IOException; import org.springframework.shell.Bootstrap; public class Main { public static void main(String[] args) throws IOException { Bootstrap.main(args); } }