Skip to content

Commit

Permalink
Updated imports to account for API refactoring
Browse files Browse the repository at this point in the history
  • Loading branch information
bentmann committed Jan 8, 2012
1 parent 531abfa commit 6f72f1b
Show file tree
Hide file tree
Showing 7 changed files with 15 additions and 15 deletions.
4 changes: 2 additions & 2 deletions src/main/java/org/eclipse/aether/ant/AntModelResolver.java
@@ -1,5 +1,5 @@
/*******************************************************************************
* Copyright (c) 2010, 2011 Sonatype, Inc.
* Copyright (c) 2010, 2012 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
Expand All @@ -25,12 +25,12 @@
import org.eclipse.aether.RepositorySystem;
import org.eclipse.aether.RepositorySystemSession;
import org.eclipse.aether.artifact.Artifact;
import org.eclipse.aether.artifact.DefaultArtifact;
import org.eclipse.aether.impl.RemoteRepositoryManager;
import org.eclipse.aether.repository.RemoteRepository;
import org.eclipse.aether.repository.RepositoryPolicy;
import org.eclipse.aether.resolution.ArtifactRequest;
import org.eclipse.aether.resolution.ArtifactResolutionException;
import org.eclipse.aether.util.artifact.DefaultArtifact;

/**
* A model resolver to assist building of dependency POMs. This resolver gives priority to those repositories that have
Expand Down
@@ -1,5 +1,5 @@
/*******************************************************************************
* Copyright (c) 2010, 2011 Sonatype, Inc.
* Copyright (c) 2010, 2012 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
Expand All @@ -19,9 +19,9 @@
import org.apache.maven.model.Model;
import org.eclipse.aether.ant.types.Pom;
import org.eclipse.aether.artifact.Artifact;
import org.eclipse.aether.artifact.DefaultArtifact;
import org.eclipse.aether.repository.WorkspaceReader;
import org.eclipse.aether.repository.WorkspaceRepository;
import org.eclipse.aether.util.artifact.DefaultArtifact;

/**
* Workspace reader caching available POMs and artifacts for ant builds.
Expand Down
@@ -1,5 +1,5 @@
/*******************************************************************************
* Copyright (c) 2010, 2011 Sonatype, Inc.
* Copyright (c) 2010, 2012 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
Expand All @@ -25,8 +25,8 @@
import org.eclipse.aether.ant.types.Artifact;
import org.eclipse.aether.ant.types.Artifacts;
import org.eclipse.aether.ant.types.Pom;
import org.eclipse.aether.artifact.DefaultArtifact;
import org.eclipse.aether.RepositorySystemSession;
import org.eclipse.aether.util.artifact.DefaultArtifact;

/**
*/
Expand Down
6 changes: 3 additions & 3 deletions src/main/java/org/eclipse/aether/ant/util/ConverterUtils.java
@@ -1,5 +1,5 @@
/*******************************************************************************
* Copyright (c) 2010, 2011 Sonatype, Inc.
* Copyright (c) 2010, 2012 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
Expand Down Expand Up @@ -30,10 +30,10 @@
import org.eclipse.aether.artifact.ArtifactProperties;
import org.eclipse.aether.artifact.ArtifactType;
import org.eclipse.aether.artifact.ArtifactTypeRegistry;
import org.eclipse.aether.artifact.DefaultArtifact;
import org.eclipse.aether.artifact.DefaultArtifactType;
import org.eclipse.aether.impl.RemoteRepositoryManager;
import org.eclipse.aether.repository.RepositoryPolicy;
import org.eclipse.aether.util.artifact.DefaultArtifact;
import org.eclipse.aether.util.artifact.DefaultArtifactType;

/**
* Utility methods to convert between aether and ant objects.
Expand Down
@@ -1,5 +1,5 @@
/*******************************************************************************
* Copyright (c) 2010, 2011 Sonatype, Inc.
* Copyright (c) 2010, 2012 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
Expand All @@ -20,7 +20,7 @@
import org.junit.Before;
import org.junit.Test;
import org.eclipse.aether.artifact.Artifact;
import org.eclipse.aether.util.artifact.DefaultArtifact;
import org.eclipse.aether.artifact.DefaultArtifact;

public class ProjectWorkspaceReaderTest
{
Expand Down
4 changes: 2 additions & 2 deletions src/test/java/org/eclipse/aether/ant/ReactorTest.java
@@ -1,5 +1,5 @@
/*******************************************************************************
* Copyright (c) 2010, 2011 Sonatype, Inc.
* Copyright (c) 2010, 2012 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
Expand All @@ -16,7 +16,7 @@
import org.apache.tools.ant.Project;
import org.eclipse.aether.ant.ProjectWorkspaceReader;
import org.eclipse.aether.artifact.Artifact;
import org.eclipse.aether.util.artifact.DefaultArtifact;
import org.eclipse.aether.artifact.DefaultArtifact;

public class ReactorTest
extends AntBuildsTest
Expand Down
4 changes: 2 additions & 2 deletions src/test/java/org/eclipse/aether/ant/tasks/LayoutTest.java
@@ -1,5 +1,5 @@
/*******************************************************************************
* Copyright (c) 2010, 2011 Sonatype, Inc.
* Copyright (c) 2010, 2012 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
Expand All @@ -14,8 +14,8 @@

import org.apache.tools.ant.BuildException;
import org.eclipse.aether.ant.tasks.Layout;
import org.eclipse.aether.artifact.DefaultArtifact;
import org.junit.Test;
import org.eclipse.aether.util.artifact.DefaultArtifact;

/**
*/
Expand Down

0 comments on commit 6f72f1b

Please sign in to comment.