Bael 2989 (#7609)
* Added examples for building Java project with Bazel * Added examples for building Java project with Bazel
This commit is contained in:
committed by
KevinGilmore
parent
39a2838ba0
commit
d3ba9f47ef
@@ -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"));
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user