Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,61 @@
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
package org.apache.maven.internal.secdispatcher;

import javax.inject.Inject;
import javax.inject.Named;
import javax.inject.Provider;
import javax.inject.Singleton;

import java.util.Map;

import org.sonatype.plexus.components.cipher.PlexusCipher;
import org.sonatype.plexus.components.sec.dispatcher.DefaultSecDispatcher;
import org.sonatype.plexus.components.sec.dispatcher.PasswordDecryptor;
import org.sonatype.plexus.components.sec.dispatcher.SecDispatcher;

/**
* Provides a security dispatcher named "maven". Maven uses this security dispatcher instead of the default.
* The default security dispatcher is unaware of Maven specific configuration file locations and should not be used
* (injected or referenced in any way) at all in any Maven related codebase.
* <p>
* Note: This whole stuff is really deprecated and replaced with proper security in Maven 4, while this one is
* just "security through obscurity".
*
* @since 3.9.13
*/
@Singleton
@Named("maven")
public class SecDispatcherProvider implements Provider<SecDispatcher> {
private final SecDispatcher instance;

@Inject
public SecDispatcherProvider(
PlexusCipher plexusCipher,
Map<String, PasswordDecryptor> decryptors,
@Named("${maven.settings.security.configurationFile:-~/.m2/settings-security.xml}")
String configurationFile) {
instance = new DefaultSecDispatcher(plexusCipher, decryptors, configurationFile);
}

@Override
public SecDispatcher get() {
return instance;
}
}
20 changes: 0 additions & 20 deletions maven-core/src/main/resources/META-INF/plexus/components.xml
Original file line number Diff line number Diff line change
Expand Up @@ -110,25 +110,5 @@ under the License.
<!-- END SNIPPET: site -->
</configuration>
</component>

<component>
<role>org.sonatype.plexus.components.sec.dispatcher.SecDispatcher</role>
<role-hint>maven</role-hint>
<implementation>org.sonatype.plexus.components.sec.dispatcher.DefaultSecDispatcher</implementation>
<description>Maven Security dispatcher</description>
<requirements>
<requirement>
<role>org.sonatype.plexus.components.cipher.PlexusCipher</role>
<field-name>_cipher</field-name>
</requirement>
<requirement>
<role>org.sonatype.plexus.components.sec.dispatcher.PasswordDecryptor</role>
<field-name>_decryptors</field-name>
</requirement>
</requirements>
<configuration>
<_configuration-file>~/.m2/settings-security.xml</_configuration-file>
</configuration>
</component>
</components>
</component-set>