Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for installDist (0.16 sec)

  1. platforms/jvm/plugins-application/src/integTest/groovy/org/gradle/api/plugins/ApplicationPluginIntegrationTest.groovy

    }
    """
    
            when:
            run "installDist"
    
            then:
            file('build/install/sample/lib').allDescendants() == ['sample.jar', 'compile-1.0.jar'] as Set
        }
    
        def "executables can be placed at the root of the distribution"() {
            given:
            buildFile << """
    application.executableDir = ''
    """
            when:
            run "installDist"
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun May 12 10:33:12 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  2. platforms/jvm/plugins-application/src/integTest/groovy/org/gradle/integtests/ApplicationIntegrationSpec.groovy

        }
    }
    '''
            // ensure we no duplicate files in default setup (GRADLE-3289)
            buildFile << """
            [installDist, distZip, distTar]*.configure {
                it.duplicatesStrategy = "fail"
            }
    """
            when:
            run 'installDist', 'distZip', 'distTar'
    
            then:
            def installDir = file('build/install/application')
            installDir.assertIsDir()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 22:15:44 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/jvm/application_plugin.adoc

    You can run `gradle installDist` to create an image of the application in `build/install/__projectName__`. You can run `gradle distZip` to create a ZIP containing the distribution, `gradle distTar` to create an application TAR or `gradle assemble` to build both.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 10.5K bytes
    - Viewed (0)
  4. platforms/software/plugins-distribution/src/integTest/groovy/org/gradle/api/plugins/DistributionPluginIntegrationTest.groovy

                }
            """
            file("someFile") << "some text"
    
            then:
            succeeds(
                "assembleDist", "assembleCustomOneDist", "assembleCustomTwoDist",
                "installDist", "installCustomOneDist", "installCustomTwoDist"
            )
            file('build/distributions/TestProject-foo.zip').assertIsFile()
            file('build/distributions/custom-bar.zip').assertIsFile()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Oct 20 21:03:51 UTC 2023
    - 13.8K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/more_about_tasks.adoc

    Distribution tasks
    ------------------
    assembleDist - Assembles the main distributions
    distTar - Bundles the project as a distribution.
    distZip - Bundles the project as a distribution.
    installDist - Installs the project as a distribution as-is.
    
    Documentation tasks
    -------------------
    javadoc - Generates Javadoc API documentation for the 'main' feature.
    
    Help tasks
    ----------
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 22:37:03 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  6. platforms/core-runtime/wrapper-shared/src/test/groovy/org/gradle/wrapper/InstallTest.groovy

    import spock.lang.Shared
    import spock.lang.Specification
    
    import java.util.zip.ZipEntry
    import java.util.zip.ZipOutputStream
    
    import static org.gradle.internal.hash.Hashing.sha256
    
    @CleanupTestDirectory
    class InstallTest extends Specification {
        public static final String FETCHED_HASH = "fetchedHash"
        WrapperConfiguration configuration = new WrapperConfiguration()
    
        private final String zipFileName = 'gradle-0.9.zip';
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:12:34 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/native/cpp_unit_test_plugin.adoc

    ::
    Links executable from compiled object files using the selected linker.
    
    `installTest__Variant__` (e.g. `installTest`) - link:{groovyDslPath}/org.gradle.nativeplatform.tasks.InstallExecutable.html[InstallExecutable]::
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 13.9K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/native/xctest_plugin.adoc

    ::
    Links executable from compiled object files using the selected linker.
    
    `installTest__Variant__` (e.g. `installTest`) - link:{groovyDslPath}/org.gradle.nativeplatform.test.xctest.tasks.InstallXCTestBundle.html[InstallXCTestBundle] (on macOS) or link:{groovyDslPath}/org.gradle.nativeplatform.tasks.InstallExecutable.html[InstallExecutable] (on Linux)::
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 16.2K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/storageversion/manager.go

    type ResourceInfo struct {
    	GroupResource schema.GroupResource
    
    	EncodingVersion string
    	// Used to calculate decodable versions. Can only be used after all
    	// equivalent versions are registered by InstallREST.
    	EquivalentResourceMapper runtime.EquivalentResourceRegistry
    
    	// DirectlyDecodableVersions is a list of versions that the converter for REST storage knows how to convert.  This
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 14 17:47:19 UTC 2023
    - 10.5K bytes
    - Viewed (0)
  10. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/xcode/XcodeSingleSwiftProjectIntegrationTest.groovy

                .withScheme("Greeter")
                .succeeds(XcodebuildExecutor.XcodeAction.TEST)
    
            then:
            resultTestRunner.assertTasksExecuted(':compileDebugSwift', ':compileTestSwift', ':linkTest', ':installTest',
                ':syncBundleToXcodeBuiltProductDir', ':_xcode__build_GreeterTest___GradleTestRunner_Debug')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 31.3K bytes
    - Viewed (0)
Back to top