Search Options

Results per page
Sort
Preferred Languages
Advance

Results 191 - 200 of 229 for getVersions (0.05 sec)

  1. impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/DefaultProjectArtifactFactory.java

            if (effectiveScope == null) {
                return null;
            }
    
            VersionRange versionRange = VersionRange.createFromVersionSpec(dependency.getVersion());
    
            Artifact dependencyArtifact = factory.createDependencyArtifact(
                    dependency.getGroupId(),
                    dependency.getArtifactId(),
                    versionRange,
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Sat Apr 05 11:52:05 UTC 2025
    - 6.2K bytes
    - Viewed (0)
  2. src/main/java/jcifs/internal/dfs/Referral.java

        String specialName = null;
    
        String[] expandedNames = {};
    
        /**
         * Gets the DFS referral version number.
         *
         * @return the version
         */
        public final int getVersion() {
            return this.version;
        }
    
        /**
         * Gets the size of this referral entry in bytes.
         *
         * @return the size
         */
        public final int getSize() {
            return this.size;
    Registered: Sat Dec 20 13:44:44 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 7.1K bytes
    - Viewed (0)
  3. compat/maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/ArtifactDescriptorReaderDelegate.java

                    dependency.getGroupId(),
                    dependency.getArtifactId(),
                    dependency.getClassifier(),
                    null,
                    dependency.getVersion(),
                    props,
                    stereotype);
    
            List<Exclusion> exclusions = new ArrayList<>(dependency.getExclusions().size());
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Thu Mar 20 22:29:18 UTC 2025
    - 6K bytes
    - Viewed (0)
  4. compat/maven-compat/src/main/java/org/apache/maven/DefaultProjectDependenciesResolver.java

            Set<String> projectIds = new HashSet<>(projects.size() * 2);
    
            for (MavenProject p : projects) {
                String key = ArtifactUtils.key(p.getGroupId(), p.getArtifactId(), p.getVersion());
                projectIds.add(key);
            }
            return projectIds;
        }
    
        private Set<String> getIgnorableArtifacts(Iterable<Artifact> artifactIterable) {
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Jun 06 14:28:57 UTC 2025
    - 8.4K bytes
    - Viewed (1)
  5. compat/maven-compat/src/main/java/org/apache/maven/repository/metadata/DefaultGraphConflictResolver.java

                        ArtifactMetadata newMd = new ArtifactMetadata(
                                md.getGroupId(),
                                md.getArtifactId(),
                                edge.getVersion(),
                                md.getType(),
                                md.getScopeAsEnum(),
                                md.getClassifier(),
                                edge.getArtifactUri(),
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Wed Jul 23 17:27:08 UTC 2025
    - 7.4K bytes
    - Viewed (0)
  6. impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/DefaultMojoExecutionConfigurator.java

                        .warning("' is unknown for plugin '")
                        .warning(mojoExecution.getArtifactId())
                        .warning(":")
                        .warning(mojoExecution.getVersion())
                        .warning(":")
                        .warning(mojoExecution.getGoal());
    
                if (mojoExecution.getExecutionId() != null) {
                    messageBuilder.warning(" (");
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Tue Mar 25 09:45:07 UTC 2025
    - 7.3K bytes
    - Viewed (0)
  7. impl/maven-core/src/main/java/org/apache/maven/plugin/DefaultPluginDescriptorCache.java

            CacheKey(Plugin plugin, List<RemoteRepository> repositories, RepositorySystemSession session) {
                groupId = plugin.getGroupId();
                artifactId = plugin.getArtifactId();
                version = plugin.getVersion();
    
                workspace = RepositoryUtils.getWorkspace(session);
                localRepo = session.getLocalRepository();
                this.repositories = new ArrayList<>(repositories.size());
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Jun 06 14:28:57 UTC 2025
    - 5.9K bytes
    - Viewed (0)
  8. compat/maven-model-builder/src/main/java/org/apache/maven/model/plugin/DefaultReportingConverter.java

            addDom(dom, "groupId", plugin.getGroupId(), plugin.getLocation("groupId"));
            addDom(dom, "artifactId", plugin.getArtifactId(), plugin.getLocation("artifactId"));
            addDom(dom, "version", plugin.getVersion(), plugin.getLocation("version"));
    
            Xpp3Dom configuration = (Xpp3Dom) plugin.getConfiguration();
            if (configuration != null) {
                configuration = new Xpp3Dom(configuration);
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Jan 10 07:09:12 UTC 2025
    - 9.4K bytes
    - Viewed (0)
  9. impl/maven-core/src/test/java/org/apache/maven/project/MavenProjectTest.java

            assertEquals("test-group", project.getGroupId(), "groupId proto-inheritance failed.");
            assertEquals("real-artifact", project.getArtifactId(), "artifactId is masked.");
            assertEquals("1000", project.getVersion(), "version proto-inheritance failed.");
    
            // draw the NPE.
            project.getId();
        }
    
        @Test
        void testEmptyConstructor() {
            MavenProject project = new MavenProject();
    
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Nov 28 09:44:37 UTC 2025
    - 9.3K bytes
    - Viewed (0)
  10. build-logic/documentation/src/main/groovy/gradlebuild/docs/GradleUserManualPlugin.java

                attributes.put("docsUrl", "https://docs.gradle.org");
    
                // TODO: This breaks if the version is changed later.
                attributes.put("gradleVersion", project.getVersion().toString());
                attributes.put("gradleVersion90", "9.0.0");
                attributes.put("gradleVersion8", "8.14.3");
                attributes.put("snippetsPath", "snippets");
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Thu Dec 04 14:26:28 UTC 2025
    - 19.3K bytes
    - Viewed (0)
Back to top