Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for LOCAL (0.23 sec)

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

                    if (parent.getRelativePath() == null || parent.getRelativePath().isEmpty()) {
                        buffer.append(" and 'parent.relativePath' points at no local POM");
                    } else {
                        buffer.append(" and 'parent.relativePath' points at wrong local POM");
                    }
                }
    
                problems.add(Severity.FATAL, ModelProblem.Version.BASE, buffer.toString(), parent.getLocation(""), e);
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri May 03 08:48:38 GMT 2024
    - 61.5K bytes
    - Viewed (0)
  2. maven-core/src/test/java/org/apache/maven/project/PomConstructionTest.java

            String localRepoUrl =
                    System.getProperty("maven.repo.local", System.getProperty("user.home") + "/.m2/repository");
            localRepoUrl = "file://" + localRepoUrl;
            config.setLocalRepository(repositorySystem.createArtifactRepository(
                    "local", localRepoUrl, new DefaultRepositoryLayout(), null, null));
            config.setActiveProfileIds(Arrays.asList(profileIds));
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 93.2K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/project/DefaultProjectBuilder.java

                            Collections.singletonList(project.getArtifact().getId()),
                            null);
    
                    // Maven 2.x quirk: an artifact always points at the local repo, regardless whether resolved or not
                    LocalRepositoryManager lrm = session.getLocalRepositoryManager();
                    for (Artifact artifact : artifacts) {
                        if (!artifact.isResolved()) {
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu May 02 15:10:38 GMT 2024
    - 56.9K bytes
    - Viewed (0)
  4. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelValidator.java

                if ("local".equals(repository.getId())) {
                    addViolation(
                            problems,
                            errOn31,
                            Version.V20,
                            prefix + "id",
                            null,
                            "must not be 'local'" + ", this identifier is reserved for the local repository"
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu May 02 13:13:07 GMT 2024
    - 73.1K bytes
    - Viewed (0)
Back to top