Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for sourcesPath (0.14 sec)

  1. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelBuilder.java

                    rootDirectory = null;
                }
                if (importSource.getPath() != null && rootDirectory != null) {
                    Path sourcePath = importSource.getPath();
                    if (sourcePath.startsWith(rootDirectory)) {
                        problems.add(
                                Severity.WARNING,
                                ModelProblem.Version.BASE,
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Jun 07 07:31:02 UTC 2024
    - 61.9K bytes
    - Viewed (0)
  2. maven-model-builder/src/main/java/org/apache/maven/model/building/DefaultModelBuilder.java

                    return null;
                }
    
                if (importSource instanceof FileModelSource && request.getRootDirectory() != null) {
                    Path sourcePath = ((FileModelSource) importSource).getPath();
                    if (sourcePath.startsWith(request.getRootDirectory())) {
                        problems.add(new ModelProblemCollectorRequest(Severity.WARNING, ModelProblem.Version.BASE)
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue May 21 09:54:32 UTC 2024
    - 82.9K bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/CopyTaskIntegrationSpec.groovy

            buildScript '''
                task copy(type: Copy) {
                    from 'path'
                    into 'dest'
                    filesMatching ('**/a*') {
                        path = sourcePath.replace('txt', 'log')
                    }
                }
            '''.stripIndent()
    
            when:
            run 'copy'
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 67.9K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_4.adoc

     * You can no longer use `-source-path` as a generic compiler argument — use link:{groovyDslPath}/org.gradle.api.tasks.compile.CompileOptions.html#org.gradle.api.tasks.compile.CompileOptions:sourcepath[CompileOptions.sourcepath] instead.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 03:01:48 UTC 2024
    - 60.1K bytes
    - Viewed (0)
Back to top