Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [buckminster-dev] buckminster 4.?==?utf-8?Q?5 can't materialize maven

by debug i catch bellow logic, it give issue to maven.

class org.eclipse.buckminster.pde.cspecgen.bundle.BundleBuilder
line 104 always return null
model.load(bld.getInputStream(), true);
return null;

this code is ok, it here for long time ago.

but new code add at commit 3ced2949599e81dc4ef9cbac4ca261d1f3fd9208
change  class org.eclipse.buckminster.core.reader.ZipArchiveReader, function innerReadFile like bellow


                               while ((ze = zi.getNextEntry()) != null)
				if (ze.getName().equals(fileName)) {
					result = consumer.consumeStream(this, fileName, zi, new NullProgressMonitor());
					break;
				}
			if (result == null)
				throw new FileNotFoundException(fileName);


so FileNotFoundException always fire when use maven. let issue description at #1



Back to the top