View Javadoc
1   /*
2    * Licensed to the Apache Software Foundation (ASF) under one
3    * or more contributor license agreements.  See the NOTICE file
4    * distributed with this work for additional information
5    * regarding copyright ownership.  The ASF licenses this file
6    * to you under the Apache License, Version 2.0 (the
7    * "License"); you may not use this file except in compliance
8    * with the License.  You may obtain a copy of the License at
9    *
10   *   http://www.apache.org/licenses/LICENSE-2.0
11   *
12   * Unless required by applicable law or agreed to in writing,
13   * software distributed under the License is distributed on an
14   * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15   * KIND, either express or implied.  See the License for the
16   * specific language governing permissions and limitations
17   * under the License.
18   */
19  package org.apache.maven.settings.crypto;
20  
21  import javax.inject.Inject;
22  import javax.inject.Named;
23  import javax.inject.Singleton;
24  
25  import java.nio.file.Path;
26  import java.nio.file.Paths;
27  import java.util.Map;
28  
29  import org.apache.maven.api.Constants;
30  import org.codehaus.plexus.components.secdispatcher.Dispatcher;
31  import org.codehaus.plexus.components.secdispatcher.SecDispatcher;
32  import org.codehaus.plexus.components.secdispatcher.internal.DefaultSecDispatcher;
33  
34  /**
35   * This class implements "Maven specific" {@link SecDispatcher}.
36   *
37   * @deprecated since 4.0.0
38   */
39  @Named
40  @Singleton
41  @Deprecated(since = "4.0.0")
42  public class MavenSecDispatcher extends DefaultSecDispatcher {
43      private static final String FILE_NAME = "settings-security4.xml";
44  
45      @Inject
46      public MavenSecDispatcher(Map<String, Dispatcher> dispatchers) {
47          super(dispatchers, configurationFile());
48      }
49  
50      private static Path configurationFile() {
51          String mavenUserConf = System.getProperty(Constants.MAVEN_USER_CONF);
52          if (mavenUserConf != null) {
53              return Paths.get(mavenUserConf, FILE_NAME);
54          }
55          // this means we are in UT or alike
56          return Paths.get(System.getProperty("user.home"), ".m2", FILE_NAME);
57      }
58  }