org.eclipse.aether.util.artifact.JavaScopes Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of spring-cloud-contract-shade Show documentation
Show all versions of spring-cloud-contract-shade Show documentation
Spring Cloud Contract Shaded Dependencies
/*******************************************************************************
* Copyright (c) 2010, 2011 Sonatype, Inc.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Sonatype, Inc. - initial API and implementation
*******************************************************************************/
package org.eclipse.aether.util.artifact;
/**
* The dependency scopes used for Java dependencies.
*
* @see org.eclipse.aether.graph.Dependency#getScope()
*/
public final class JavaScopes
{
public static final String COMPILE = "compile";
public static final String PROVIDED = "provided";
public static final String SYSTEM = "system";
public static final String RUNTIME = "runtime";
public static final String TEST = "test";
private JavaScopes()
{
// hide constructor
}
}