diff --git a/tycho-bundles/org.eclipse.tycho.p2.resolver.impl/src/main/java/org/eclipse/tycho/p2/target/TargetPlatformBundlePublisher.java b/tycho-bundles/org.eclipse.tycho.p2.resolver.impl/src/main/java/org/eclipse/tycho/p2/target/TargetPlatformBundlePublisher.java index 3abc54fe8c..f350e995e8 100644 --- a/tycho-bundles/org.eclipse.tycho.p2.resolver.impl/src/main/java/org/eclipse/tycho/p2/target/TargetPlatformBundlePublisher.java +++ b/tycho-bundles/org.eclipse.tycho.p2.resolver.impl/src/main/java/org/eclipse/tycho/p2/target/TargetPlatformBundlePublisher.java @@ -88,7 +88,8 @@ public TargetPlatformBundlePublisher(ReactorProject project, MavenContext mavenC MavenBundleInfo attemptToPublishBundle(IArtifactFacade mavenArtifact, boolean wrapIfNessesary) { if (!isAvailableAsLocalFile(mavenArtifact)) { // this should have been ensured by the caller - throw new IllegalArgumentException("Not an artifact file: " + mavenArtifact.getLocation()); + throw new IllegalArgumentException( + mavenArtifact + " is not a local artifact file @ location " + mavenArtifact.getLocation()); } PublisherRun publisherRun = new PublisherRun(mavenArtifact, project, publishedArtifacts.getBaseDir(), mavenContext, wrapIfNessesary);