Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 38 for grouping (0.19 sec)

  1. maven-core/src/test/java/org/apache/maven/project/ProjectSorterTest.java

        }
    
        private Plugin createPlugin(String groupId, String artifactId, String version) {
            Plugin plugin = new Plugin();
            plugin.setGroupId(groupId);
            plugin.setArtifactId(artifactId);
            plugin.setVersion(version);
            return plugin;
        }
    
        private Extension createExtension(String groupId, String artifactId, String version) {
            Extension extension = new Extension();
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 12.4K bytes
    - Viewed (0)
  2. maven-compat/src/main/java/org/apache/maven/repository/legacy/LegacyRepositorySystem.java

        public Artifact createArtifact(String groupId, String artifactId, String version, String scope, String type) {
            return artifactFactory.createArtifact(groupId, artifactId, version, scope, type);
        }
    
        public Artifact createArtifact(String groupId, String artifactId, String version, String packaging) {
            return artifactFactory.createBuildArtifact(groupId, artifactId, version, packaging);
        }
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu Sep 14 11:48:15 GMT 2023
    - 31.6K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/lifecycle/internal/MojoDescriptorCreator.java

                    goal += ":" + tok[idx];
                }
            } else if (numTokens == 3) {
                // groupId:artifactId:goal or pluginPrefix:version:goal (since Maven 3.9.0)
    
                String firstToken = tok[0];
                // groupId or pluginPrefix? heuristics: groupId contains dot (.) but not pluginPrefix
                if (firstToken.contains(".")) {
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Jan 10 12:55:54 GMT 2024
    - 11.5K bytes
    - Viewed (0)
  4. api/maven-api-core/src/main/java/org/apache/maven/api/Session.java

         */
        @Nonnull
        ArtifactCoordinate createArtifactCoordinate(String groupId, String artifactId, String version, String extension);
    
        /**
         * Shortcut for {@code getService(ArtifactFactory.class).create(...)}.
         *
         * @param groupId the group identifier, or {@code null} is unspecified
         * @param artifactId the artifact identifier, or {@code null} is unspecified
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu May 02 15:10:38 GMT 2024
    - 30.2K bytes
    - Viewed (0)
  5. maven-core/src/main/java/org/apache/maven/ReactorReader.java

            String groupId = artifact.getGroupId();
            String artifactId = artifact.getArtifactId();
            String version = artifact.getBaseVersion();
            String classifier = artifact.getClassifier();
            String extension = artifact.getExtension();
            Path repo = getProjectLocalRepo();
            return repo.resolve(groupId)
                    .resolve(artifactId)
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu May 02 16:33:18 GMT 2024
    - 21.3K bytes
    - Viewed (0)
  6. maven-core/src/main/java/org/apache/maven/plugin/internal/DefaultPluginValidationManager.java

                        Arrays.toString(ValidationReportLevel.values()));
                return DEFAULT_VALIDATION_LEVEL;
            }
        }
    
        private String pluginKey(String groupId, String artifactId, String version) {
            return groupId + ":" + artifactId + ":" + version;
        }
    
        private String pluginKey(MojoDescriptor mojoDescriptor) {
            PluginDescriptor pd = mojoDescriptor.getPluginDescriptor();
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Sun Nov 19 21:11:13 GMT 2023
    - 17.4K bytes
    - Viewed (0)
  7. maven-core/src/main/java/org/apache/maven/lifecycle/internal/builder/BuilderCommon.java

                            && defaulModelId.equals(
                                    p.getLocation("version").getSource().getModelId()))
                    .distinct()
                    .map(Plugin::getArtifactId) // managed by us, groupId is always o.a.m.plugins
                    .collect(Collectors.toList());
    
            if (!unversionedPlugins.isEmpty()) {
                logger.warn("Version not locked for default bindings plugins " + unversionedPlugins
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 10.2K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/net/InetAddresses.java

       *
       * <p>NOTE: ISATAP addresses are explicitly excluded from this method due to their trivial
       * spoofability. With other transition addresses spoofing involves (at least) infection of one's
       * BGP routing table.
       *
       * @param ip {@link Inet6Address} to be examined for embedded IPv4 client address
       * @return {@code true} if there is an embedded IPv4 client address
       * @since 7.0
       */
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Fri Dec 15 19:31:54 GMT 2023
    - 44K bytes
    - Viewed (1)
  9. maven-core/src/main/java/org/apache/maven/project/ProjectSorter.java

        public ProjectSorter(Collection<MavenProject> projects) throws CycleDetectedException, DuplicateProjectException {
            graph = new Graph();
    
            // groupId:artifactId:version -> project
            projectMap = new HashMap<>(projects.size() * 2);
    
            // groupId:artifactId -> (version -> vertex)
            Map<String, Map<String, Vertex>> vertexMap = new HashMap<>(projects.size() * 2);
    
            for (MavenProject project : projects) {
    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)
  10. maven-core/src/main/java/org/apache/maven/project/ProjectModelResolver.java

        public ModelResolver newCopy() {
            return new ProjectModelResolver(this);
        }
    
        public ModelSource resolveModel(String groupId, String artifactId, String version)
                throws UnresolvableModelException {
            Artifact pomArtifact = new DefaultArtifact(groupId, artifactId, "", "pom", version);
    
            try {
                ArtifactRequest request = new ArtifactRequest(pomArtifact, repositories, context);
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu Apr 25 14:13:36 GMT 2024
    - 15.8K bytes
    - Viewed (0)
Back to top