Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for installDist (0.2 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/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)
  4. staging/src/k8s.io/apiserver/pkg/server/genericapiserver.go

    		}
    		apiGroupVersion.TypeConverter = typeConverter
    		apiGroupVersion.MaxRequestBodyBytes = s.maxRequestBodyBytes
    
    		discoveryAPIResources, r, err := apiGroupVersion.InstallREST(s.Handler.GoRestfulContainer)
    
    		if err != nil {
    			return fmt.Errorf("unable to setup API %v: %v", apiGroupInfo, err)
    		}
    		resourceInfos = append(resourceInfos, r...)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 18:59:21 UTC 2024
    - 42.9K bytes
    - Viewed (0)
Back to top