Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for subprojectName (0.39 sec)

  1. platforms/software/build-init/src/integTest/groovy/org/gradle/buildinit/plugins/MultiProjectJvmApplicationInitIntegrationTest.groovy

            ]*.toString()
            targetDir.file("utilities").assertHasDescendants(utilFiles)
        }
    
        void assertTestPassed(String subprojectName, String className, String name) {
            def result = new DefaultTestExecutionResult(targetDir.file(subprojectName))
            result.assertTestClassesExecuted(className)
            result.testClass(className).assertTestPassed(name)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 03:26:38 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  2. .teamcity/src/main/kotlin/model/CIBuildModel.kt

            return model.projectId + "_" + if (subProject.isNotEmpty()) shortenedSubprojectName else "${prefix}0"
        }
    
        private
        fun shortenSubprojectName(prefix: String, subProjectName: String): String {
            val shortenedSubprojectName = subProjectName.replace("internal", "i").replace("Testing", "T")
            if (shortenedSubprojectName.length + prefix.length <= 80) {
                return shortenedSubprojectName
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 03 03:39:03 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  3. platforms/software/build-init/src/integTest/groovy/org/gradle/buildinit/plugins/BuildInitPluginIntegrationTest.groovy

    import static org.hamcrest.CoreMatchers.containsString
    import static org.hamcrest.CoreMatchers.not
    
    class BuildInitPluginIntegrationTest extends AbstractInitIntegrationSpec {
    
        @Override
        String subprojectName() { 'app' }
    
        def "init shows up on tasks overview "() {
            given:
            targetDir.file("settings.gradle").touch()
    
            when:
            run 'tasks'
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 13:39:44 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  4. platforms/software/build-init/src/integTest/groovy/org/gradle/buildinit/plugins/BuildInitInteractiveIntegrationTest.groovy

            "Select implementation language:",
            "1: Java",
            "2: Kotlin",
            "3: Groovy",
            "4: Scala",
            "5: C++",
            "6: Swift"
        ]
    
        @Override
        String subprojectName() { 'app' }
    
        def "prompts user when run from an interactive session"() {
            when:
            def handle = startInteractiveExecutorWithTasks("init")
    
            // Select 'basic'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 10 12:58:10 UTC 2024
    - 18.9K bytes
    - Viewed (1)
  5. platforms/software/build-init/src/main/java/org/gradle/buildinit/tasks/InitBuild.java

            boolean generateComments = getComments().get();
    
            List<String> subprojectNames = initializer.getDefaultProjectNames();
            InitSettings initSettings = new InitSettings(
                projectName,
                useIncubatingAPIs,
                subprojectNames,
                modularizationOption,
                dsl,
                packageName,
                testFramework,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 10 12:58:10 UTC 2024
    - 24.9K bytes
    - Viewed (0)
Back to top