Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for auth (0.1 sec)

  1. maven-core/src/main/java/org/apache/maven/internal/aether/LegacyRepositorySystemSessionExtender.java

                RemoteRepository repo = RepositoryUtils.toRepo(repository);
                org.eclipse.aether.repository.Authentication auth = selector.getAuthentication(repo);
                if (auth != null) {
                    repo = new RemoteRepository.Builder(repo)
                            .setAuthentication(auth)
                            .build();
                    AuthenticationContext authCtx = AuthenticationContext.forRepository(null, repo);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  2. maven-compat/src/test/java/org/apache/maven/repository/TestRepositorySystem.java

        public void publish(
                ArtifactRepository repository, File source, String remotePath, ArtifactTransferListener transferListener)
                throws ArtifactTransferFailedException {
            // TODO Auto-generated method stub
    
        }
    
        public ArtifactResolutionResult resolve(ArtifactResolutionRequest request) {
            ArtifactResolutionResult result = new ArtifactResolutionResult();
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 25 05:46:50 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  3. api/maven-api-core/src/main/java/org/apache/maven/api/services/DependencyResolverResult.java

        /**
         * If the module-path contains at least one filename-based auto-module, prepares a warning message.
         * The module path is the collection of dependencies associated to {@link JavaPathType#MODULES}.
         * It is caller's responsibility to send the message to a logger.
         *
         * @return warning message if at least one filename-based auto-module was found
         */
        Optional<String> warningForFilenameBasedAutomodules();
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  4. maven-core/src/test/java/org/apache/maven/repository/TestRepositoryConnector.java

            return path.toString();
        }
    
        public void put(
                Collection<? extends ArtifactUpload> artifactUploads,
                Collection<? extends MetadataUpload> metadataUploads) {
            // TODO Auto-generated method stub
    
        }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 16:33:18 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  5. maven-api-impl/src/main/java/org/apache/maven/internal/impl/PathModularizationCache.java

        }
    
        /**
         * If the module-path contains a filename-based auto-module, prepares a warning message.
         * It is caller's responsibility to send the message to a logger.
         *
         * @param modulePaths content of the module path, or {@code null} if none
         * @return warning message if at least one filename-based auto-module was found
         * @throws IOException if an error occurred while reading module information
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 09:53:45 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  6. maven-core/src/main/java/org/apache/maven/internal/aether/DefaultRepositorySystemSessionFactory.java

         */
        @Deprecated
        private static final String MAVEN_RESOLVER_TRANSPORT_NATIVE = "native";
    
        private static final String MAVEN_RESOLVER_TRANSPORT_AUTO = "auto";
    
        private static final String WAGON_TRANSPORTER_PRIORITY_KEY = "aether.priority.WagonTransporterFactory";
    
        private static final String APACHE_HTTP_TRANSPORTER_PRIORITY_KEY = "aether.priority.ApacheTransporterFactory";
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 25 14:13:36 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  7. maven-embedder/src/main/java/org/eclipse/sisu/plexus/PlexusXmlBeanConverter.java

            if (rawType.isAssignableFrom(String.class)) {
                return text; // compatible type => no conversion needed
            }
    
            // use temporary Key as quick way to auto-box primitive types into their equivalent object types
            final TypeLiteral<?> boxedType =
                    rawType.isPrimitive() ? Key.get(rawType).getTypeLiteral() : toType;
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 18 00:24:53 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  8. maven-core/src/test/java/org/apache/maven/plugin/PluginParameterExpressionEvaluatorV4Test.java

            assertEquals(mojo.uriAsciiString, path.toUri().toASCIIString());
            assertEquals(mojo.pathString, path.toString());
        }
    
        @Override
        protected String getProjectsDirectory() {
            // TODO Auto-generated method stub
            return null;
        }
    
        public static class Mojo {
            URI uri;
            Path path;
            String uriString;
            String uriAsciiString;
            String pathString;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  9. api/maven-api-model/src/main/mdo/maven.mdo

        </class>
        <class>
          <name>MailingList</name>
          <version>3.0.0+</version>
          <description>This element describes all of the mailing lists associated with a project. The
            auto-generated site references this information.</description>
          <fields>
            <field>
              <name>name</name>
              <version>3.0.0+</version>
              <description>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Apr 23 13:29:46 UTC 2024
    - 115.1K bytes
    - Viewed (0)
  10. maven-core/src/test/java/org/apache/maven/internal/aether/DefaultRepositorySystemSessionFactoryTest.java

                    IllegalArgumentException.class, () -> systemSessionFactory.newRepositorySession(request));
            assertEquals(
                    "Unknown resolver transport 'illegal'. Supported transports are: wagon, apache, jdk, auto",
                    exception.getMessage());
            properties.remove("maven.resolver.transport");
        }
    
        @Test
        void versionFilteringTest() throws InvalidRepositoryException {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Mar 27 14:46:12 UTC 2024
    - 19.3K bytes
    - Viewed (0)
Back to top