本文整理汇总了Python中pants.backend.jvm.subsystems.java.Java.global_javac_classpath方法的典型用法代码示例。如果您正苦于以下问题:Python Java.global_javac_classpath方法的具体用法?Python Java.global_javac_classpath怎么用?Python Java.global_javac_classpath使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类pants.backend.jvm.subsystems.java.Java
的用法示例。
在下文中一共展示了Java.global_javac_classpath方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: _tools_classpath
# 需要导入模块: from pants.backend.jvm.subsystems.java import Java [as 别名]
# 或者: from pants.backend.jvm.subsystems.java.Java import global_javac_classpath [as 别名]
def _tools_classpath(self):
"""Returns a classpath representing the (equivalent of the) `tools.jar`.
If `javac` has been set explicitly, it is used. Otherwise, searches the current distribution.
"""
javac_classpath = Java.global_javac_classpath(self.context.products)
if javac_classpath:
return javac_classpath
self.set_distribution(jdk=True)
jars = self.dist.find_libs(['tools.jar'])
if len(jars) != 1:
raise TaskError('Expected a single `tools.jar` entry for {}; got: {}'.format(
self.dist, jars))
return jars
示例2: javac_classpath
# 需要导入模块: from pants.backend.jvm.subsystems.java import Java [as 别名]
# 或者: from pants.backend.jvm.subsystems.java.Java import global_javac_classpath [as 别名]
def javac_classpath(self):
# Note that if this classpath is empty then Zinc will automatically use the javac from
# the JDK it was invoked with.
return Java.global_javac_classpath(self.context.products)