* Added examples for building Java project with Bazel

* Added examples for building Java project with Bazel
This commit is contained in:
Sandip Singh
2019-08-23 18:10:59 +05:30
committed by KevinGilmore
parent 39a2838ba0
commit d3ba9f47ef
8 changed files with 130 additions and 0 deletions
@@ -0,0 +1,15 @@
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"));
}
}