Examples of formatln()


Examples of org.gradle.logging.StyledTextOutput.formatln()

                SharedLibraryBinarySpec libraryBinary = (SharedLibraryBinarySpec) binary;
                textOutput.formatln("    shared library file: %s", fileResolver.resolveAsRelativePath(libraryBinary.getSharedLibraryFile()));
            }
            if (binary instanceof StaticLibraryBinarySpec) {
                StaticLibraryBinarySpec libraryBinary = (StaticLibraryBinarySpec) binary;
                textOutput.formatln("    static library file: %s", fileResolver.resolveAsRelativePath(libraryBinary.getStaticLibraryFile()));
            }
        }

        if (binary instanceof JvmBinarySpec) {
            JvmBinarySpec jvmBinary = (JvmBinarySpec) binary;
View Full Code Here

Examples of org.gradle.logging.StyledTextOutput.formatln()

            }
        }

        if (binary instanceof JvmBinarySpec) {
            JvmBinarySpec jvmBinary = (JvmBinarySpec) binary;
            textOutput.formatln("    platform: %s", jvmBinary.getTargetPlatform().getName());
            textOutput.formatln("    tool chain: %s", jvmBinary.getToolChain().getDisplayName());
            if (binary instanceof JarBinarySpec) {
                JarBinarySpec jarBinary = (JarBinarySpec) binary;
                textOutput.formatln("    Jar file: %s", fileResolver.resolveAsRelativePath(jarBinary.getJarFile()));
            }
View Full Code Here

Examples of org.gradle.logging.StyledTextOutput.formatln()

        }

        if (binary instanceof JvmBinarySpec) {
            JvmBinarySpec jvmBinary = (JvmBinarySpec) binary;
            textOutput.formatln("    platform: %s", jvmBinary.getTargetPlatform().getName());
            textOutput.formatln("    tool chain: %s", jvmBinary.getToolChain().getDisplayName());
            if (binary instanceof JarBinarySpec) {
                JarBinarySpec jarBinary = (JarBinarySpec) binary;
                textOutput.formatln("    Jar file: %s", fileResolver.resolveAsRelativePath(jarBinary.getJarFile()));
            }
            if (binary instanceof ClassDirectoryBinarySpec) {
View Full Code Here

Examples of org.gradle.logging.StyledTextOutput.formatln()

            JvmBinarySpec jvmBinary = (JvmBinarySpec) binary;
            textOutput.formatln("    platform: %s", jvmBinary.getTargetPlatform().getName());
            textOutput.formatln("    tool chain: %s", jvmBinary.getToolChain().getDisplayName());
            if (binary instanceof JarBinarySpec) {
                JarBinarySpec jarBinary = (JarBinarySpec) binary;
                textOutput.formatln("    Jar file: %s", fileResolver.resolveAsRelativePath(jarBinary.getJarFile()));
            }
            if (binary instanceof ClassDirectoryBinarySpec) {
                ClassDirectoryBinarySpec classDirectoryBinary = (ClassDirectoryBinarySpec) binary;
                textOutput.formatln("    classes dir: %s", fileResolver.resolveAsRelativePath(classDirectoryBinary.getClassesDir()));
                textOutput.formatln("    resources dir: %s", fileResolver.resolveAsRelativePath(classDirectoryBinary.getResourcesDir()));
View Full Code Here

Examples of org.gradle.logging.StyledTextOutput.formatln()

                JarBinarySpec jarBinary = (JarBinarySpec) binary;
                textOutput.formatln("    Jar file: %s", fileResolver.resolveAsRelativePath(jarBinary.getJarFile()));
            }
            if (binary instanceof ClassDirectoryBinarySpec) {
                ClassDirectoryBinarySpec classDirectoryBinary = (ClassDirectoryBinarySpec) binary;
                textOutput.formatln("    classes dir: %s", fileResolver.resolveAsRelativePath(classDirectoryBinary.getClassesDir()));
                textOutput.formatln("    resources dir: %s", fileResolver.resolveAsRelativePath(classDirectoryBinary.getResourcesDir()));
            }
        }

        if (binary instanceof PlayApplicationBinarySpec) {
View Full Code Here

Examples of org.gradle.logging.StyledTextOutput.formatln()

                textOutput.formatln("    Jar file: %s", fileResolver.resolveAsRelativePath(jarBinary.getJarFile()));
            }
            if (binary instanceof ClassDirectoryBinarySpec) {
                ClassDirectoryBinarySpec classDirectoryBinary = (ClassDirectoryBinarySpec) binary;
                textOutput.formatln("    classes dir: %s", fileResolver.resolveAsRelativePath(classDirectoryBinary.getClassesDir()));
                textOutput.formatln("    resources dir: %s", fileResolver.resolveAsRelativePath(classDirectoryBinary.getResourcesDir()));
            }
        }

        if (binary instanceof PlayApplicationBinarySpec) {
            PlayApplicationBinarySpec playBinary = (PlayApplicationBinarySpec) binary;
View Full Code Here

Examples of org.gradle.logging.StyledTextOutput.formatln()

            }
        }

        if (binary instanceof PlayApplicationBinarySpec) {
            PlayApplicationBinarySpec playBinary = (PlayApplicationBinarySpec) binary;
            textOutput.formatln("    platform: %s", playBinary.getTargetPlatform().getName());
            textOutput.formatln("    tool chain: %s", playBinary.getToolChain().getDisplayName());
        }
    }
}
View Full Code Here

Examples of org.gradle.logging.StyledTextOutput.formatln()

        }

        if (binary instanceof PlayApplicationBinarySpec) {
            PlayApplicationBinarySpec playBinary = (PlayApplicationBinarySpec) binary;
            textOutput.formatln("    platform: %s", playBinary.getTargetPlatform().getName());
            textOutput.formatln("    tool chain: %s", playBinary.getToolChain().getDisplayName());
        }
    }
}
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.