blob: 81968c6a66a229d5de7d1dd7b6b8a8a2d582df2a [file] [log] [blame]
package org.apache.maven.scm.provider.starteam.util;
/*
* 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.
*/
import org.apache.maven.scm.providers.starteam.settings.Settings;
import org.apache.maven.scm.providers.starteam.settings.io.xpp3.StarteamXpp3Reader;
import org.codehaus.plexus.util.ReaderFactory;
import org.codehaus.plexus.util.xml.pull.XmlPullParserException;
import java.io.File;
import java.io.FileNotFoundException;
import java.io.IOException;
/**
* @author <a href="mailto:dantran@apache.org">Dan T. Tran</a>
* @version $Id$
*/
public class StarteamUtil
{
private StarteamUtil()
{
}
public static Settings getSettings()
{
File scmUserDir = new File( System.getProperty( "user.home" ), ".scm" );
File settingsFile = new File( scmUserDir, "starteam-settings.xml" );
if ( settingsFile.exists() )
{
StarteamXpp3Reader reader = new StarteamXpp3Reader();
try
{
return reader.read( ReaderFactory.newXmlReader( settingsFile ) );
}
catch ( FileNotFoundException e )
{
}
catch ( IOException e )
{
}
catch ( XmlPullParserException e )
{
String message = settingsFile.getAbsolutePath() + " isn't well formed. SKIPPED." + e.getMessage();
System.out.println( message );
}
}
return new Settings();
}
}