| 7 | import org.slf4j.LoggerFactory; |
| 8 | |
| 9 | public 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 | } |
nothing calls this directly
no outgoing calls
no test coverage detected