本文整理汇总了Java中org.gradle.jvm.JvmComponentSpec类的典型用法代码示例。如果您正苦于以下问题:Java JvmComponentSpec类的具体用法?Java JvmComponentSpec怎么用?Java JvmComponentSpec使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。
JvmComponentSpec类属于org.gradle.jvm包,在下文中一共展示了JvmComponentSpec类的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: createJvmTestSuiteBinaries
import org.gradle.jvm.JvmComponentSpec; //导入依赖的package包/类
/**
* Create binaries for test suites. TODO: This should really be a @ComponentBinaries rule, but at this point we have no clue what the concrete binary type is, so everything has to be duplicated in
* specific plugins. See usages for example.
*/
public static void createJvmTestSuiteBinaries(ModelMap<BinarySpec> testBinaries,
PlatformResolvers platformResolver,
JvmTestSuiteSpec testSuite,
JavaToolChainRegistry toolChains,
Class<? extends JvmTestSuiteBinarySpec> testSuiteBinary) {
JvmComponentSpec testedComponent = testSuite.getTestedComponent();
if (testedComponent == null) {
// standalone test suite
createJvmTestSuiteBinary(testBinaries, testSuiteBinary, testSuite, null, toolChains, platformResolver);
} else {
// component under test
for (final JvmBinarySpec testedBinary : testedBinariesOf(testSuite)) {
createJvmTestSuiteBinary(testBinaries, testSuiteBinary, testSuite, testedBinary, toolChains, platformResolver);
}
}
}
示例2: renderDetails
import org.gradle.jvm.JvmComponentSpec; //导入依赖的package包/类
@Override
protected void renderDetails(T binary, TextReportBuilder builder) {
JvmTestSuiteSpec testSuite = binary.getTestSuite();
JvmComponentSpec testedComponent = testSuite.getTestedComponent();
if (testedComponent!=null) {
builder.item("component under test", testedComponent.getDisplayName());
}
JvmBinarySpec testedBinary = binary.getTestedBinary();
if (testedBinary != null) {
builder.item("binary under test", testedBinary.getDisplayName());
}
super.renderDetails(binary, builder);
}
示例3: getTestedComponent
import org.gradle.jvm.JvmComponentSpec; //导入依赖的package包/类
@Override
public JvmComponentSpec getTestedComponent() {
return (JvmComponentSpec) super.getTestedComponent();
}
示例4: getTestedComponent
import org.gradle.jvm.JvmComponentSpec; //导入依赖的package包/类
@Override
JvmComponentSpec getTestedComponent();