mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-04 17:20:55 +07:00
support multiple sources of annotations artifacts IDEA-201598
look for '-annotations' artifacts by original "groupId:artifactId" (when provided by library author) and by modified "groupId:artifactId-annotations" (when provided by third party)
This commit is contained in:
@@ -21,7 +21,7 @@ import java.util.EnumSet;
|
||||
|
||||
public enum ArtifactKind {
|
||||
ARTIFACT("", "jar"), SOURCES("sources", "jar"), JAVADOC("javadoc", "jar"),
|
||||
ANNOTATIONS("", "zip"), AAR_ARTIFACT("", "aar");
|
||||
ANNOTATIONS("annotations", "zip"), AAR_ARTIFACT("", "aar");
|
||||
|
||||
private final String myClassifier;
|
||||
private final String myExtension;
|
||||
|
||||
Reference in New Issue
Block a user