Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for SuperApp (0.38 sec)

  1. platforms/jvm/plugins-java-library/src/integTest/groovy/org/gradle/api/plugins/JavaLibraryDistributionIntegrationTest.groovy

            file('build/distributions/SuperApp-1.2.zip').unzipTo(expandDir)
            expandDir.assertHasDescendants(
                    'SuperApp-1.2/lib/commons-lang-2.6.jar',
                    'SuperApp-1.2/file1.txt',
                    'SuperApp-1.2/dist1.txt',
                    'SuperApp-1.2/other1.txt',
                    'SuperApp-1.2/dir2/file2.txt',
                    'SuperApp-1.2/dir2/dist2.txt',
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 18 13:02:41 UTC 2024
    - 5K bytes
    - Viewed (0)
  2. platforms/jvm/plugins-application/src/test/groovy/org/gradle/api/plugins/ApplicationPluginTest.groovy

            plugin.apply(project)
            project.applicationName = "SuperApp";
    
            then:
            def startScriptsTask = project.tasks[ApplicationPlugin.TASK_START_SCRIPTS_NAME]
            startScriptsTask.applicationName == 'SuperApp'
    
            def installTest = project.tasks[DistributionPlugin.TASK_INSTALL_NAME]
            installTest.destinationDir == project.file("build/install/SuperApp")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 23:38:57 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  3. platforms/software/plugins-distribution/src/integTest/groovy/org/gradle/api/distribution/plugins/DistributionPluginTest.groovy

            when:
            project.pluginManager.apply(DistributionPlugin)
            project.distributions.main.distributionBaseName = "SuperApp";
    
            then:
            def distZipTask = project.tasks.distZip
            distZipTask.archiveFileName.get() == "SuperApp.zip"
        }
    
        def "distribution names with classifier"() {
            when:
            project.pluginManager.apply(DistributionPlugin)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Oct 20 21:03:51 UTC 2023
    - 5.6K bytes
    - Viewed (0)
Back to top