Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 136 for GetID (0.55 sec)

  1. maven-compat/src/main/java/org/apache/maven/repository/DelegatingLocalArtifactRepository.java

            return userLocalArtifactRepository.pathOfLocalRepositoryMetadata(metadata, repository);
        }
    
        public String getId() {
            return userLocalArtifactRepository.getId();
        }
    
        @Override
        public String pathOf(Artifact artifact) {
            return userLocalArtifactRepository.pathOf(artifact);
        }
    
        @Override
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu Jun 15 14:24:56 GMT 2023
    - 5.4K bytes
    - Viewed (0)
  2. maven-compat/src/main/java/org/apache/maven/profiles/DefaultProfileManager.java

            String profileId = profile.getId();
    
            Profile existing = profilesById.get(profileId);
            if (existing != null) {
                logger.warn("Overriding profile: '" + profileId + "' (source: " + existing.getSource()
                        + ") with new instance from source: " + profile.getSource());
            }
    
            profilesById.put(profile.getId(), profile);
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu Jun 15 14:24:56 GMT 2023
    - 6.7K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/internal/impl/DefaultSession.java

            return projects == null ? null : map(projects, this::getProject);
        }
    
        @Override
        public Project getProject(MavenProject project) {
            return allProjects.computeIfAbsent(project.getId(), id -> new DefaultProject(this, project));
        }
    
        @Override
        public List<ArtifactRepository> toArtifactRepositories(List<RemoteRepository> repositories) {
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Tue Apr 23 12:55:57 GMT 2024
    - 7.9K bytes
    - Viewed (0)
  4. maven-core/src/main/java/org/apache/maven/internal/aether/ReverseTreeRepositoryListener.java

                    if (!repositories.isEmpty()) {
                        trackingData.add("Configured repositories:");
                        for (RemoteRepository r : repositories) {
                            trackingData.add(" - " + r.getId() + " : " + r.getUrl());
                        }
                    } else {
                        trackingData.add("No repositories configured");
                    }
                }
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Apr 12 11:08:37 GMT 2023
    - 9.8K bytes
    - Viewed (0)
  5. maven-core/src/test/java/org/apache/maven/settings/SettingsUtilsTest.java

                    .pluginRepositories(pluginRepos)
                    .build();
    
            Profile clone = SettingsUtilsV4.convertToSettingsProfile(SettingsUtilsV4.convertFromSettingsProfile(p));
    
            assertEquals(p.getId(), clone.getId());
            assertEquals(p.getActivation().getJdk(), clone.getActivation().getJdk());
            assertEquals(
                    p.getActivation().getFile().getExists(),
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Mar 25 10:50:01 GMT 2024
    - 6.7K bytes
    - Viewed (0)
  6. maven-core/src/main/java/org/apache/maven/lifecycle/internal/DefaultLifecycleMappingDelegate.java

                        if (phaseBindings != null) {
                            for (String goal : execution.getGoals()) {
                                MojoExecution mojoExecution = new MojoExecution(plugin, goal, execution.getId());
                                mojoExecution.setLifecyclePhase(execution.getPhase());
                                addMojoExecution(phaseBindings, mojoExecution, execution.getPriority());
                            }
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Jan 10 12:55:54 GMT 2024
    - 6.5K bytes
    - Viewed (0)
  7. maven-core/src/main/java/org/apache/maven/plugin/DefaultPluginRealmCache.java

                hash = hash * 31 + Objects.hashCode(dependencyFilter);
                this.hashCode = hash;
            }
    
            @Override
            public String toString() {
                return plugin.getId();
            }
    
            @Override
            public int hashCode() {
                return hashCode;
            }
    
            @Override
            public boolean equals(Object o) {
                if (o == this) {
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Mon Dec 26 15:12:32 GMT 2022
    - 7.4K bytes
    - Viewed (0)
  8. maven-core/src/main/java/org/apache/maven/DefaultMaven.java

                    .map(Profile::getId);
            final Stream<String> settingsProfiles =
                    session.getSettings().getProfiles().stream().map(org.apache.maven.settings.Profile::getId);
            final Stream<String> superPomProfiles = superPomModels.values().stream()
                    .flatMap(p -> p.getProfiles().stream())
                    .map(Profile::getId);
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 27.5K bytes
    - Viewed (0)
  9. maven-core/src/main/java/org/apache/maven/lifecycle/internal/DefaultLifecyclePluginAnalyzer.java

            for (Lifecycle lifecycle : defaultLifeCycles.getLifeCycles()) {
                org.apache.maven.lifecycle.mapping.Lifecycle lifecycleConfiguration =
                        lifecycleMappingForPackaging.getLifecycles().get(lifecycle.getId());
    
                Map<String, LifecyclePhase> phaseToGoalMapping = null;
    
                if (lifecycleConfiguration != null) {
                    phaseToGoalMapping = lifecycleConfiguration.getLifecyclePhases();
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Jan 10 12:55:54 GMT 2024
    - 9.1K bytes
    - Viewed (0)
  10. maven-core/src/main/java/org/apache/maven/project/ProjectSorter.java

            // groupId:artifactId -> (version -> vertex)
            Map<String, Map<String, Vertex>> vertexMap = new HashMap<>(projects.size() * 2);
    
            for (MavenProject project : projects) {
                String projectId = getId(project);
    
                MavenProject conflictingProject = projectMap.put(projectId, project);
    
                if (conflictingProject != null) {
                    throw new DuplicateProjectException(
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Sep 22 06:02:04 GMT 2023
    - 10.3K bytes
    - Viewed (0)
Back to top