MCPcopy Index your code
hub / github.com/anistark/feluda / App

Class App

examples/java-example/gradle-example/src/main/java/com/example/App.java:9–23  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

7import org.slf4j.LoggerFactory;
8
9public class App {
10 private static final Logger log = LoggerFactory.getLogger(App.class);
11
12 public static void main(String[] args) throws Exception {
13 log.info("Feluda Java Demo (Gradle)");
14
15 ImmutableList<String> items = ImmutableList.of("license", "compliance", "scan");
16 String joined = StringUtils.join(items, ", ");
17 log.info("Items: {}", joined);
18
19 ObjectMapper mapper = new ObjectMapper();
20 String json = mapper.writeValueAsString(items);
21 log.info("JSON: {}", json);
22 }
23}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected