Bazel build is not working on from Maven project
问题 I'm new to Bazel and learning its build work, currently I am trying to do with bazel build from a Maven project, please advise me how to make it working, thanks. Here is the WORKSPACE file I am trying to define: maven_jar( name = "junit", artifact = "junit:junit:3.8.1", ) maven_jar( name = "log4j1", artifact = "org.apache.logging.log4j:log4j-core:2.6.2", ) maven_jar( name = "log4j2", artifact = "org.apache.logging.log4j:log4j-api:2.6.2", ) ..... Here is the BUILD file I am trying to define: