Package io.github.gmazzo.importclasses
Interface ImportClassesTransform.Params
-
- All Implemented Interfaces:
-
org.gradle.api.artifacts.transform.TransformParameters
public interface ImportClassesTransform.Params implements TransformParameters
-
-
Method Summary
Modifier and Type Method Description abstract DirectoryPropertygetWorkDirectory()abstract ConfigurableFileCollectiongetProguardClasspath()abstract Property<String>getProguardMainClass()abstract ListProperty<String>getProguardJvmArgs()abstract ConfigurableFileCollectiongetImportClasspath()abstract ConfigurableFileCollectiongetLibrariesClasspath()abstract MapProperty<String, String>getKeepsAndRenames()abstract Property<String>getRepackageName()abstract ListProperty<String>getFilters()abstract ListProperty<String>getExtraOptions()-
-
Method Detail
-
getWorkDirectory
@Internal() abstract DirectoryProperty getWorkDirectory()
-
getProguardClasspath
@Classpath() abstract ConfigurableFileCollection getProguardClasspath()
-
getProguardMainClass
@Input() abstract Property<String> getProguardMainClass()
-
getProguardJvmArgs
@Input() abstract ListProperty<String> getProguardJvmArgs()
-
getImportClasspath
@Classpath() abstract ConfigurableFileCollection getImportClasspath()
-
getLibrariesClasspath
@Classpath() abstract ConfigurableFileCollection getLibrariesClasspath()
-
getKeepsAndRenames
@Input() abstract MapProperty<String, String> getKeepsAndRenames()
-
getRepackageName
@Input()@Optional() abstract Property<String> getRepackageName()
-
getFilters
@Input() abstract ListProperty<String> getFilters()
-
getExtraOptions
@Input() abstract ListProperty<String> getExtraOptions()
-
-
-
-