Epam module-1 multi-project part

The task itself

Create a project multi-project with two subprojects core and api. The core subproject should contain class Utils with method boolean isAllPositiveNumbers(String... str). Use utils-1.3.5.jar from the previous task to implement this method. The api subproject should contain class App with the main method. Call Utils.isAllPositiveNumbers("12", "79") from the main method of api subproject.

The