Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for Ls (0.12 sec)

  1. maven-compat/src/main/java/org/apache/maven/repository/legacy/metadata/AbstractArtifactMetadata.java

            StringBuilder buffer = new StringBuilder(256);
    
            buffer.append(LS).append("Artifact Metadata").append(LS).append("--------------------------");
            buffer.append(LS).append("GroupId: ").append(getGroupId());
            buffer.append(LS).append("ArtifactId: ").append(getArtifactId());
            buffer.append(LS).append("Metadata Type: ").append(getClass().getName());
    
            return buffer.toString();
        }
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 1.9K bytes
    - Viewed (0)
  2. maven-artifact/src/main/java/org/apache/maven/artifact/resolver/MultipleArtifactsNotFoundException.java

            }
    
            buffer.append("----------").append(LS);
    
            int size = artifacts.size();
    
            buffer.append(size).append(" required artifact");
    
            if (size > 1) {
                buffer.append("s are");
            } else {
                buffer.append(" is");
            }
    
            buffer.append(" missing.").append(LS).append(LS).append("for artifact: ");
    
            return buffer.toString();
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Mon Dec 26 15:12:32 GMT 2022
    - 4.4K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/plugin/PluginParameterException.java

                messageBuffer.append("', specify the following:").append(LS).append(LS);
                messageBuffer.append("<configuration>").append(LS).append("  ...").append(LS);
                messageBuffer.append("  <").append(param.getName()).append('>');
                if (isArray || isCollection) {
                    messageBuffer.append(LS);
                    messageBuffer.append("    <item>");
                } else if (isProperties) {
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Tue May 09 23:46:02 GMT 2023
    - 6.8K bytes
    - Viewed (0)
  4. maven-compat/src/main/java/org/apache/maven/artifact/repository/metadata/AbstractRepositoryMetadata.java

            StringBuilder buffer = new StringBuilder(256);
    
            buffer.append(LS).append("Repository Metadata").append(LS).append("--------------------------");
            buffer.append(LS).append("GroupId: ").append(getGroupId());
            buffer.append(LS).append("ArtifactId: ").append(getArtifactId());
            buffer.append(LS).append("Metadata Type: ").append(getClass().getName());
    
            return buffer.toString();
        }
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 7K bytes
    - Viewed (0)
  5. maven-compat/src/test/java/org/apache/maven/artifact/resolver/ArtifactResolutionExceptionTest.java

            String expected = "Missing artifact" + LS + LS + "  Try downloading the file manually from: " + LS
                    + "      http://somewhere.com/download" + LS + LS + "  Then, install it using the command: " + LS
                    + "      mvn install:install-file -DgroupId=aGroupId -DartifactId=anArtifactId -Dversion=aVersion "
                    + "-Dclassifier=aClassifier -Dpackaging=jar -Dfile=/path/to/file" + LS + LS
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 2.7K bytes
    - Viewed (0)
  6. maven-core/src/main/java/org/apache/maven/artifact/repository/MavenArtifactRepository.java

            StringBuilder sb = new StringBuilder(256);
    
            sb.append("      id: ").append(getId()).append(LS);
            sb.append("      url: ").append(getUrl()).append(LS);
            sb.append("   layout: ").append(layout != null ? layout : "none");
    
            if (proxy != null) {
                sb.append(LS)
                        .append("    proxy: ")
                        .append(proxy.getHost())
                        .append(':')
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Mon Dec 26 15:12:32 GMT 2022
    - 11K bytes
    - Viewed (0)
  7. maven-compat/src/main/java/org/apache/maven/artifact/resolver/ArtifactResolutionResult.java

            if (artifacts != null) {
                int i = 1;
                sb.append("---------").append(LS);
                sb.append(artifacts.size()).append(LS);
                for (Artifact a : artifacts) {
                    sb.append(i).append(' ').append(a).append(LS);
                    i++;
                }
                sb.append("---------");
            }
    
            return sb.toString();
        }
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 11:28:54 GMT 2023
    - 9.9K bytes
    - Viewed (0)
  8. maven-compat/src/main/java/org/apache/maven/artifact/resolver/ArtifactResolutionRequest.java

                    .append("REQUEST: ")
                    .append(LS)
                    .append("artifact: ")
                    .append(artifact)
                    .append(LS)
                    .append(artifactDependencies)
                    .append(LS)
                    .append("localRepository: ")
                    .append(localRepository)
                    .append(LS)
                    .append("remoteRepositories: ")
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 11:28:54 GMT 2023
    - 8.2K bytes
    - Viewed (0)
  9. maven-core/src/test/java/org/apache/maven/lifecycle/internal/LifecycleModuleBuilderTest.java

            LifecycleModuleBuilder moduleBuilder = container.lookup(LifecycleModuleBuilder.class);
            set(moduleBuilder, "mojoExecutor", mojoExecutor);
    
            LifecycleStarter ls = container.lookup(LifecycleStarter.class);
            ls.execute(session);
    
            assertNull(session.getCurrentProject());
            assertEquals(
                    Arrays.asList(
                            ProjectDependencyGraphStub.A,
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Feb 28 23:31:09 GMT 2024
    - 4.1K bytes
    - Viewed (0)
  10. maven-core/src/test/java/org/apache/maven/plugin/PluginParameterExceptionTest.java

                            + LS + "[0] Inside the definition for plugin 'artifactId', specify the following:"
                            + LS
                            + LS + "<configuration>"
                            + LS + "  ..."
                            + LS + "  <toAddresses>"
                            + LS + "    <item>VALUE</item>"
                            + LS + "  </toAddresses>"
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 6.7K bytes
    - Viewed (0)
Back to top