Fix grape -> compiler package tangle

Fix package tangle by moving DependencyResolutionContext from the
compiler package to grape.

See gh-1004
This commit is contained in:
Phillip Webb
2014-06-01 18:49:13 +01:00
parent 84da33f176
commit 5da23e9968
11 changed files with 12 additions and 9 deletions

View File

@@ -31,6 +31,7 @@ import org.junit.Test;
import org.mockito.Mock;
import org.mockito.MockitoAnnotations;
import org.springframework.boot.cli.compiler.dependencies.ArtifactCoordinatesResolver;
import org.springframework.boot.cli.compiler.grape.DependencyResolutionContext;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertNull;

View File

@@ -43,6 +43,7 @@ import org.codehaus.groovy.transform.ASTTransformation;
import org.junit.Before;
import org.junit.Test;
import org.springframework.boot.cli.compiler.dependencies.ArtifactCoordinatesResolver;
import org.springframework.boot.cli.compiler.grape.DependencyResolutionContext;
import static org.junit.Assert.assertEquals;
import static org.mockito.Mockito.mock;

View File

@@ -28,7 +28,6 @@ import java.util.Map;
import org.eclipse.aether.DefaultRepositorySystemSession;
import org.eclipse.aether.util.repository.JreProxySelector;
import org.junit.Test;
import org.springframework.boot.cli.compiler.DependencyResolutionContext;
import org.springframework.test.util.ReflectionTestUtils;
import static org.junit.Assert.assertEquals;