Java Code Examples for org.gradle.tooling.GradleConnector#useGradleUserHomeDir()
The following examples show how to use
org.gradle.tooling.GradleConnector#useGradleUserHomeDir() .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: GradleBuildComparison.java From pushfish-android with BSD 2-Clause "Simplified" License | 6 votes |
private ProjectConnection createProjectConnection(ComparableGradleBuildExecuter executer) { GradleConnector connector = GradleConnector.newConnector(); connector.forProjectDirectory(executer.getSpec().getProjectDir()); File gradleUserHomeDir = gradle.getStartParameter().getGradleUserHomeDir(); if (gradleUserHomeDir != null) { connector.useGradleUserHomeDir(gradleUserHomeDir); } GradleVersion gradleVersion = executer.getGradleVersion(); if (gradleVersion.equals(GradleVersion.current())) { connector.useInstallation(gradle.getGradleHomeDir()); } else { connector.useGradleVersion(gradleVersion.getVersion()); } return connector.connect(); }
Example 2
Source File: GradleBuildComparison.java From pushfish-android with BSD 2-Clause "Simplified" License | 6 votes |
private ProjectConnection createProjectConnection(ComparableGradleBuildExecuter executer) { GradleConnector connector = GradleConnector.newConnector(); connector.forProjectDirectory(executer.getSpec().getProjectDir()); File gradleUserHomeDir = gradle.getStartParameter().getGradleUserHomeDir(); if (gradleUserHomeDir != null) { connector.useGradleUserHomeDir(gradleUserHomeDir); } GradleVersion gradleVersion = executer.getGradleVersion(); if (gradleVersion.equals(GradleVersion.current())) { connector.useInstallation(gradle.getGradleHomeDir()); } else { connector.useGradleVersion(gradleVersion.getVersion()); } return connector.connect(); }
Example 3
Source File: GradleBuildComparison.java From Pushjet-Android with BSD 2-Clause "Simplified" License | 6 votes |
private ProjectConnection createProjectConnection(ComparableGradleBuildExecuter executer) { GradleConnector connector = GradleConnector.newConnector(); connector.forProjectDirectory(executer.getSpec().getProjectDir()); File gradleUserHomeDir = gradle.getStartParameter().getGradleUserHomeDir(); if (gradleUserHomeDir != null) { connector.useGradleUserHomeDir(gradleUserHomeDir); } GradleVersion gradleVersion = executer.getGradleVersion(); if (gradleVersion.equals(GradleVersion.current())) { connector.useInstallation(gradle.getGradleHomeDir()); } else { connector.useGradleVersion(gradleVersion.getVersion()); } return connector.connect(); }
Example 4
Source File: GradleBuildComparison.java From Pushjet-Android with BSD 2-Clause "Simplified" License | 6 votes |
private ProjectConnection createProjectConnection(ComparableGradleBuildExecuter executer) { GradleConnector connector = GradleConnector.newConnector(); connector.forProjectDirectory(executer.getSpec().getProjectDir()); File gradleUserHomeDir = gradle.getStartParameter().getGradleUserHomeDir(); if (gradleUserHomeDir != null) { connector.useGradleUserHomeDir(gradleUserHomeDir); } GradleVersion gradleVersion = executer.getGradleVersion(); if (gradleVersion.equals(GradleVersion.current())) { connector.useInstallation(gradle.getGradleHomeDir()); } else { connector.useGradleVersion(gradleVersion.getVersion()); } return connector.connect(); }
Example 5
Source File: Main.java From pushfish-android with BSD 2-Clause "Simplified" License | 5 votes |
public static void main(String[] args) { // Configure the connector and create the connection GradleConnector connector = GradleConnector.newConnector(); if (args.length > 0) { connector.useInstallation(new File(args[0])); if (args.length > 1) { connector.useGradleUserHomeDir(new File(args[1])); } } connector.forProjectDirectory(new File(".")); ProjectConnection connection = connector.connect(); try { // Configure the build BuildLauncher launcher = connection.newBuild(); launcher.forTasks("help"); ByteArrayOutputStream outputStream = new ByteArrayOutputStream(); launcher.setStandardOutput(outputStream); launcher.setStandardError(outputStream); // Run the build launcher.run(); } finally { // Clean up connection.close(); } }
Example 6
Source File: Main.java From pushfish-android with BSD 2-Clause "Simplified" License | 5 votes |
public static void main(String[] args) { // Configure the connector and create the connection GradleConnector connector = GradleConnector.newConnector(); if (args.length > 0) { connector.useInstallation(new File(args[0])); if (args.length > 1) { connector.useGradleUserHomeDir(new File(args[1])); } } connector.forProjectDirectory(new File(".")); ProjectConnection connection = connector.connect(); try { // Configure the build BuildLauncher launcher = connection.newBuild(); launcher.forTasks("help"); ByteArrayOutputStream outputStream = new ByteArrayOutputStream(); launcher.setStandardOutput(outputStream); launcher.setStandardError(outputStream); // Run the build launcher.run(); } finally { // Clean up connection.close(); } }
Example 7
Source File: Main.java From Pushjet-Android with BSD 2-Clause "Simplified" License | 5 votes |
public static void main(String[] args) { // Configure the connector and create the connection GradleConnector connector = GradleConnector.newConnector(); if (args.length > 0) { connector.useInstallation(new File(args[0])); if (args.length > 1) { connector.useGradleUserHomeDir(new File(args[1])); } } connector.forProjectDirectory(new File(".")); ProjectConnection connection = connector.connect(); try { // Configure the build BuildLauncher launcher = connection.newBuild(); launcher.forTasks("help"); ByteArrayOutputStream outputStream = new ByteArrayOutputStream(); launcher.setStandardOutput(outputStream); launcher.setStandardError(outputStream); // Run the build launcher.run(); } finally { // Clean up connection.close(); } }
Example 8
Source File: Main.java From Pushjet-Android with BSD 2-Clause "Simplified" License | 5 votes |
public static void main(String[] args) { // Configure the connector and create the connection GradleConnector connector = GradleConnector.newConnector(); if (args.length > 0) { connector.useInstallation(new File(args[0])); if (args.length > 1) { connector.useGradleUserHomeDir(new File(args[1])); } } connector.forProjectDirectory(new File(".")); ProjectConnection connection = connector.connect(); try { // Configure the build BuildLauncher launcher = connection.newBuild(); launcher.forTasks("help"); ByteArrayOutputStream outputStream = new ByteArrayOutputStream(); launcher.setStandardOutput(outputStream); launcher.setStandardError(outputStream); // Run the build launcher.run(); } finally { // Clean up connection.close(); } }