All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.maven.plugin.eclipse.WorkspaceConfiguration Maven / Gradle / Ivy

Go to download

The Eclipse Plugin is used to generate Eclipse IDE files (.project, .classpath and the .settings folder) from a POM.

The newest version!
package org.apache.maven.plugin.eclipse;

/*
 * 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 java.io.File;
import java.net.URL;

import org.apache.maven.artifact.repository.ArtifactRepository;
import org.apache.maven.plugin.ide.IdeDependency;

public class WorkspaceConfiguration
{
    private File workspaceDirectory;

    private URL codeStylesURL;

    private String activeCodeStyleProfileName;

    private ArtifactRepository localRepository;

    private String defaultClasspathContainer;

    private IdeDependency[] workspaceArtefacts;

    private String defaultDeployServerId;

    private String defaultDeployServerName;

    public File getWorkspaceDirectory()
    {
        return this.workspaceDirectory;
    }

    public void setWorkspaceDirectory( File dir )
    {
        this.workspaceDirectory = dir;
    }

    public URL getCodeStylesURL()
    {
        return this.codeStylesURL;
    }

    public void setCodeStylesURL( URL url )
    {
        this.codeStylesURL = url;
    }

    public String getActiveStyleProfileName()
    {
        return this.activeCodeStyleProfileName;
    }

    public void setActiveStyleProfileName( String name )
    {
        this.activeCodeStyleProfileName = name;
    }

    public ArtifactRepository getLocalRepository()
    {
        return localRepository;
    }

    public void setLocalRepository( ArtifactRepository localRepository )
    {
        this.localRepository = localRepository;
    }

    public String getDefaultClasspathContainer()
    {
        return defaultClasspathContainer;
    }

    public void setDefaultClasspathContainer( String defaultClasspathContainer )
    {
        this.defaultClasspathContainer = defaultClasspathContainer;
    }

    public IdeDependency[] getWorkspaceArtefacts()
    {
        return workspaceArtefacts;
    }

    public void setWorkspaceArtefacts( IdeDependency[] workspaceArtefacts )
    {
        this.workspaceArtefacts = workspaceArtefacts;
    }

    public String getDefaultDeployServerId()
    {
        return defaultDeployServerId;
    }

    public void setDefaultDeployServerId( String defaultDeployServerId )
    {
        this.defaultDeployServerId = defaultDeployServerId;
    }

    public String getDefaultDeployServerName()
    {
        return defaultDeployServerName;
    }

    public void setDefaultDeployServerName( String defaultDeployServerName )
    {
        this.defaultDeployServerName = defaultDeployServerName;
    }

    /**
     * @return the defined websphere server version and null if the target is no websphere.
     */
    public String getWebsphereVersion()
    {
        if ( getDefaultDeployServerId() != null && getDefaultDeployServerId().startsWith( "was." ) )
        {
            if (getDefaultDeployServerId().contains("v7"))
            {
                return "7.0";
            }
            if (getDefaultDeployServerId().contains("v61"))
            {
                return "6.1";
            }
            if (getDefaultDeployServerId().contains("v6"))
            {
                return "6.0";
            }
            if (getDefaultDeployServerId().contains("v51"))
            {
                return "5.1";
            }
            if (getDefaultDeployServerId().contains("v5"))
            {
                return "5.0";
            }
        }
        return null;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy