Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 484 for project2 (0.14 sec)

  1. platforms/core-runtime/logging/src/integTest/groovy/org/gradle/internal/logging/console/taskgrouping/AbstractConsoleCompositeBuildGroupedTaskFunctionalTest.groovy

    abstract class AbstractConsoleCompositeBuildGroupedTaskFunctionalTest extends AbstractConsoleGroupedTaskFunctionalTest {
        private static final String PROJECT_A_NAME = 'projectA'
        private static final String PROJECT_B_NAME = 'projectB'
        private static final String HELLO_WORLD_MESSAGE = 'Hello world'
        private static final String BYE_WORLD_MESSAGE = 'Bye world'
    
        def setup() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  2. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenPublishCoordinatesIntegTest.groovy

        }
    
        def "warns when publications in different projects share the same coordinates"() {
            given:
            createDirs("projectA", "projectB")
            settingsFile << """
    include 'projectA'
    include 'projectB'
    """
            buildFile << """
            subprojects {
                apply plugin: 'maven-publish'
                apply plugin: 'java'
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/rules/ComponentMetadataRulesCachingIntegrationTest.groovy

            outputContains('Modified cached rule executed')
    
        }
    
        def 'having a rule triggered on missing metadata does not cause cache collision'() {
            file('deps/projectA-1.0.jar').createFile()
            file('deps/projectB-1.0.jar').createFile()
    
            def cachedRule = file('buildSrc/src/main/groovy/rule/CachedRule.groovy')
            cachedRule.text = """
    package rule
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  4. testing/performance/src/performanceTest/groovy/org/gradle/performance/regression/nativeplatform/RealWorldNativePluginPerformanceTest.groovy

        }
    
        static String getFileToChange(String changeType) {
            switch (changeType) {
                case 'source':
                    return 'modules/project5/src/src100_c.c'
                case 'header':
                    return 'modules/project1/src/src50_h.h'
                case 'build':
                    return 'common.gradle'
                default:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  5. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/visualstudio/VisualStudioSoftwareModelMultiProjectIntegrationTest.groovy

        def "can create Visual Studio solution for multiproject depending on the same prebuilt binary from another project in parallel"() {
            given:
            createDirs("projectA", "projectB", "library")
            settingsFile.text = """
                rootProject.name = 'root'
                include ':projectA', ':projectB', ':library'
            """
            buildFile << """
                allprojects {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 26K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/rules/ComponentMetadataRulesIntegrationTest.groovy

        // dependencies, could resolve differently in the same project, after some rules
        // have been added. However, the Nebula Resolution Rules plugin depends on this
        // behavior, because it downloads rules in a JSON format and applies them to the
        // current project.
        @Issue("https://github.com/gradle/gradle/issues/15312")
        def "rules can be added after a first resolution happened in the project"() {
            repository {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 18.9K bytes
    - Viewed (0)
  7. maven-core/src/test/resources/projects/project.xml

    specific language governing permissions and limitations
    under the License.
    -->
    
    <model>
      <modelVersion>3</modelVersion>
      <groupId>maven</groupId>
      <artifactId>maven-project-test</artifactId>
      <name>Maven</name>
      <version>1.0-beta-9</version>
      <inceptionYear>2001</inceptionYear>
      <package>org.apache.maven</package>
      <description>Description</description>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 22:49:30 UTC 2007
    - 4.6K bytes
    - Viewed (0)
  8. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/m3/ToolingApiEclipseModelCrossVersionSpec.groovy

            projectC.projectDependencies.any { it.path == 'b' }
    
            projectA.projectDependencies.any { it.path == 'b' }
            projectA.projectDependencies.any { it.path == 'c' }
            projectA.projectDependencies.any { it.path == 'root' }
        }
    
        def "can build the eclipse project hierarchy for a multi-project build"() {
    
            projectDir.file('settings.gradle').text = '''
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 11.4K bytes
    - Viewed (0)
  9. .idea/codeStyles/Project.xml

    <component name="ProjectCodeStyleConfiguration">
      <code_scheme name="Project" version="173">
        <option name="LINE_SEPARATOR" value="&#10;" />
        <option name="RIGHT_MARGIN" value="140" />
        <JavaCodeStyleSettings>
          <option name="PREFER_LONGER_NAMES" value="false" />
          <option name="PACKAGES_TO_USE_IMPORT_ON_DEMAND">
            <value>
              <package name="java.awt" withSubpackages="false" static="false" />
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue May 02 13:36:56 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  10. platforms/ide/ide-plugins/src/main/java/org/gradle/plugins/ide/idea/model/Project.java

                return false;
            }
            Project project = (Project) o;
            return Objects.equal(jdk, project.jdk)
                && Objects.equal(modulePaths, project.modulePaths)
                && Objects.equal(projectLibraries, project.projectLibraries)
                && Objects.equal(wildcards, project.wildcards)
                && Objects.equal(vcs, project.vcs);
        }
    
        @Override
        public int hashCode() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 12.9K bytes
    - Viewed (0)
Back to top