Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@
import org.apache.maven.api.model.InputLocation;
import org.apache.maven.api.model.InputSource;
import org.apache.maven.artifact.Artifact;
import org.apache.maven.artifact.repository.ArtifactRepository;
import org.apache.maven.impl.InternalSession;
import org.apache.maven.internal.impl.DefaultProject;
import org.apache.maven.internal.impl.InternalMavenSession;
Expand Down Expand Up @@ -149,11 +148,6 @@ void testBuildStubModelForMissingRemotePom() throws Exception {
assertFalse(project.isExecutionRoot());
}

@Override
protected ArtifactRepository getLocalRepository() throws Exception {
return repositorySystem.createLocalRepository(getLocalRepositoryPath());
}

@Test
void testPartialResultUponBadDependencyDeclaration() throws Exception {
File pomFile = getTestFile("src/test/resources/projects/bad-dependency.xml");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -127,12 +127,6 @@ public Activation transformActivation(Activation target) {
}
}

@Override
protected Activation.Builder transformActivation_ActiveByDefault(
Supplier<? extends Activation.Builder> creator, Activation.Builder builder, Activation target) {
return builder;
}

@Override
protected Activation.Builder transformActivation_File(
Supplier<? extends Activation.Builder> creator, Activation.Builder builder, Activation target) {
Expand Down