KTNB-357: Fix the work of serialization plugin in the notebook, add test

GitOrigin-RevId: 46d2d30a667f20291b9785d6b9048539e7425b82
This commit is contained in:
Ilya Muradyan
2023-10-05 13:10:41 +02:00
committed by intellij-monorepo-bot
parent 6102861fae
commit 1ea19ca755

View File

@@ -22,7 +22,8 @@ import java.util.EnumSet;
public enum ArtifactKind {
ARTIFACT("", "jar"), SOURCES("sources", "jar"), JAVADOC("javadoc", "jar"),
ANNOTATIONS("annotations", "zip"), AAR_ARTIFACT("", "aar"), POM("", "pom"),
ALL("all", "jar"), HTTP("http", "jar"), DLL("", "dll");
ALL("all", "jar"), HTTP("http", "jar"), DLL("", "dll"),
ZIP("", "zip");
private final String myClassifier;
private final String myExtension;