com.simpligility.maven.plugins.android.IncludeExcludeSet Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of android-maven-plugin Show documentation
Show all versions of android-maven-plugin Show documentation
Maven Plugin for Android Development
The newest version!
package com.simpligility.maven.plugins.android;
import java.util.Set;
public class IncludeExcludeSet
{
private Set< String > includes;
private Set< String > excludes;
public Set< String > getIncludes()
{
return includes;
}
public Set< String > getExcludes()
{
return excludes;
}
}