IDEADEV-41034: Artifact: manifest.mf name recognition is case-sensitive

This commit is contained in:
nik
2009-11-03 16:06:31 +03:00
parent 509ef6fc50
commit a9570ce0e7
4 changed files with 18 additions and 4 deletions
@@ -77,16 +77,20 @@ public abstract class PackagingElementFactory {
@NotNull
public abstract CompositePackagingElement<?> getOrCreateArchive(@NotNull CompositePackagingElement<?> parent, @NotNull String relativePath);
public abstract void addFileCopy(@NotNull CompositePackagingElement<?> root, @NotNull String outputDirectoryPath, @NotNull String sourceFilePath,
final String outputFileName);
public abstract void addFileCopy(@NotNull CompositePackagingElement<?> root, @NotNull String outputDirectoryPath, @NotNull String sourceFilePath);
@NotNull
public abstract PackagingElement<?> createParentDirectories(@NotNull String relativeOutputPath, @NotNull PackagingElement<?> element);
@NotNull
public abstract List<? extends PackagingElement<?>> createParentDirectories(@NotNull String relativeOutputPath, @NotNull List<? extends PackagingElement<?>> elements);
@NotNull
public abstract CompositePackagingElementType<?>[] getCompositeElementTypes();
@Nullable