Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for artifactId (0.21 sec)

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

                List<Plugin> plugins, String artifactId, String expectedId, String expectedConfig) {
            Plugin plugin = plugins.stream()
                    .filter(p -> p.getArtifactId().equals(artifactId))
                    .findFirst()
                    .orElse(null);
            assertNotNull(plugin, "Unable to find plugin with artifactId: " + artifactId);
            List<PluginExecution> pluginExecutions = plugin.getExecutions();
    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)
  2. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelValidator.java

                ModelBuilderRequest request) {
            // 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 Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 65K bytes
    - Viewed (0)
  3. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelBuilder.java

            //
    
            String groupId = getGroupId(candidateModel);
            String artifactId = candidateModel.getArtifactId();
    
            if (groupId == null
                    || !groupId.equals(parent.getGroupId())
                    || artifactId == null
                    || !artifactId.equals(parent.getArtifactId())) {
                StringBuilder buffer = new StringBuilder(256);
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 59.1K bytes
    - Viewed (0)
  4. maven-core/src/main/java/org/apache/maven/project/MavenProject.java

    import org.apache.maven.artifact.Artifact;
    import org.apache.maven.artifact.ArtifactUtils;
    import org.apache.maven.artifact.DependencyResolutionRequiredException;
    import org.apache.maven.artifact.factory.ArtifactFactory;
    import org.apache.maven.artifact.handler.ArtifactHandler;
    import org.apache.maven.artifact.repository.ArtifactRepository;
    import org.apache.maven.artifact.resolver.filter.ArtifactFilter;
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Mar 01 17:18:13 GMT 2024
    - 56.6K bytes
    - Viewed (0)
  5. maven-core/src/main/java/org/apache/maven/project/DefaultProjectBuilder.java

            buffer.append("<groupId>").append(artifact.getGroupId()).append("</groupId>");
            buffer.append("<artifactId>").append(artifact.getArtifactId()).append("</artifactId>");
            buffer.append("<version>").append(artifact.getBaseVersion()).append("</version>");
            buffer.append("<packaging>").append(artifact.getType()).append("</packaging>");
            buffer.append("</project>");
    
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Thu Apr 25 14:13:36 GMT 2024
    - 55.2K bytes
    - Viewed (0)
  6. docs/changelogs/changelog_3x.md

        constant is included for completeness.
     *  New: Upgrade to Okio 1.14.0.
    
         ```xml
         <dependency>
           <groupId>com.squareup.okio</groupId>
           <artifactId>okio</artifactId>
           <version>1.14.0</version>
         </dependency>
    
         com.squareup.okio:okio:1.14.0
         ```
    
     *  Fix: Handle `HTTP/1.1 100 Continue` status lines, even on requests that did
    Plain Text
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Sun Feb 06 14:55:54 GMT 2022
    - 50.8K bytes
    - Viewed (0)
  7. .teamcity/.mvn/wrapper/maven-wrapper.jar

    Built-By: manfred Specification-Title: maven-wrapper Implementation-Vendor-Id: io.takari Created-By: Takari Inc. Build-Jdk: 1.8.0_232 Specification-Version: 0.5.6 META-INF/maven/io.takari/maven-wrapper/pom.properties version=0.5.6 groupId=io.takari artifactId=maven-wrapper org/apache/maven/wrapper/BootstrapMainStarter.class package org.apache.maven.wrapper; public synchronized class BootstrapMainStarter { public void BootstrapMainStarter(); public void start(String[], java.io.File) throws Exception;...
    Archive
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Wed Feb 26 01:48:39 GMT 2020
    - 49.5K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/util/concurrent/AbstractFuture.java

       * We should annotate the superclass, InternalFutureFailureAccess, to say that its copy of this
       * method returns @Nullable, too. However, we're not sure if we want to make any changes to that
       * class, since it's in a separate artifact that we planned to release only a single version of.
       */
      @CheckForNull
      protected final Throwable tryInternalFastPathGetFailure() {
        if (this instanceof Trusted) {
          Object obj = value;
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Apr 22 21:17:24 GMT 2024
    - 63K bytes
    - Viewed (0)
Back to top