blob: 9e5499de5b07d6063bba71d58d559f1fc625b371 [file] [log] [blame]
package com.intellij.facet.frameworks.beans;
import com.intellij.util.xmlb.annotations.AbstractCollection;
import com.intellij.util.xmlb.annotations.Property;
public class Artifacts {
@Property(surroundWithTag = false)
@AbstractCollection(surroundWithTag = false)
public Artifact[] myVersions;
public Artifact[] getArtifacts() {
return myVersions;
}
}