blob: a5e9d4bba7ffbdd31d2cc33b41bc5e14a7a36418 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2019-2020 Red Hat Inc. and others.
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*******************************************************************************/
package org.eclipse.m2e.editor.lemminx;
import java.util.HashMap;
import java.util.Map;
import org.eclipse.m2e.core.MavenPlugin;
public class InitializationOptionsProvider implements org.eclipse.wildwebdeveloper.xml.InitializationOptionsProvider {
@Override
public Map<String, Object> get() {
Map<String, Object> res = new HashMap<>(2, 1.f);
res.put("maven.globalSettings", MavenPlugin.getMavenConfiguration().getGlobalSettingsFile());
res.put("maven.userSettings", MavenPlugin.getMavenConfiguration().getUserSettingsFile());
return res;
}
}