Files
spring-boot-rest/bazel/bazelapp/src/main/java/com/baeldung/BazelApp.java
Sandip Singh d3ba9f47ef Bael 2989 (#7609)
* Added examples for building Java project with Bazel

* Added examples for building Java project with Bazel
2019-08-23 07:40:59 -05:00

16 lines
343 B
Java

package com.baeldung;
import com.baeldung.Greetings;
import org.apache.commons.lang3.StringUtils;
public class BazelApp {
public static void main(String ... args) {
Greetings greetings = new Greetings();
System.out.println(greetings.greet("Bazel"));
System.out.println(StringUtils.lowerCase("Bazel"));
}
}