Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for classifiers (0.14 sec)

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

            // We only check for groupId/artifactId/version/classifier cause if there is another
            // module with the same groupId/artifactId/version/classifier this will fail the build
            // earlier like "Project '...' is duplicated in the reactor.
            // So it is sufficient to check only groupId/artifactId/version/classifier and not the
            // packaging type.
    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)
  2. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirReferenceShortener.kt

            val typeElement = resolvedTypeRef.correspondingTypePsi ?: return
            if (typeElement.qualifier == null) return
    
            val classifierId = resolvedTypeRef.type.lowerBoundIfFlexible().candidateClassId ?: return
    
            findClassifierQualifierToShorten(classifierId, typeElement)?.let(::addElementToShorten)
        }
    
        /**
         * Retrieves the corresponding [KtUserType] PSI the given [FirResolvedTypeRef].
         *
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Thu Apr 25 18:51:33 GMT 2024
    - 69.5K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/project/MavenProject.java

            }
    
            return dom;
        }
    
        /**
         * @deprecated Use MavenProjectHelper.attachArtifact(..) instead.
         */
        @Deprecated
        public void attachArtifact(String type, String classifier, File file) {}
    
        /**
         * @deprecated Use {@link org.apache.maven.model.io.ModelWriter}.
         */
        @Deprecated
        public void writeModel(Writer writer) throws IOException {
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Mar 01 17:18:13 GMT 2024
    - 56.6K bytes
    - Viewed (0)
Back to top