Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for useDistribution (0.56 sec)

  1. platforms/ide/tooling-api/src/integTest/groovy/org/gradle/integtests/tooling/ToolingApiRemoteIntegrationTest.groovy

            and:
            toolingApi.withConnector {
                it.useDistribution(URI.create("http://localhost:${server.port}/custom-dist.zip"))
            }
    
            when:
            toolingApi.withConnection { connection ->
                BuildLauncher launcher = connection.newBuild().forTasks("help")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 10.9K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/integTest/groovy/org/gradle/integtests/tooling/ToolingApiIntegrationTest.groovy

            buildFile << "assert gradle.gradleVersion == '${otherVersion.version.version}'"
    
            when:
            toolingApi.withConnector { connector ->
                connector.useDistribution(otherVersion.binDistribution.toURI())
            }
            GradleProject model = toolingApi.withConnection { connection -> connection.getModel(GradleProject.class) }
    
            then:
            model != null
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 13.8K bytes
    - Viewed (0)
Back to top