Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for forProxy (0.05 sec)

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

                    if (proxy.getAuthentication() != null) {
                        repo = new RemoteRepository.Builder(repo).setProxy(proxy).build();
                        AuthenticationContext authCtx = AuthenticationContext.forProxy(null, repo);
                        p.setUserName(authCtx.get(AuthenticationContext.USERNAME));
                        p.setPassword(authCtx.get(AuthenticationContext.PASSWORD));
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  2. impl/maven-core/src/main/java/org/apache/maven/bridge/MavenRepositorySystem.java

                                    .setProxy(proxy)
                                    .build();
                            AuthenticationContext authCtx = AuthenticationContext.forProxy(session, repo);
                            p.setUserName(authCtx.get(AuthenticationContext.USERNAME));
                            p.setPassword(authCtx.get(AuthenticationContext.PASSWORD));
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 32.6K bytes
    - Viewed (0)
  3. compat/maven-compat/src/main/java/org/apache/maven/repository/legacy/LegacyRepositorySystem.java

                                    .setProxy(proxy)
                                    .build();
                            AuthenticationContext authCtx = AuthenticationContext.forProxy(session, repo);
                            p.setUserName(authCtx.get(AuthenticationContext.USERNAME));
                            p.setPassword(authCtx.get(AuthenticationContext.PASSWORD));
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 31.6K bytes
    - Viewed (0)
Back to top