![JAR search and dependency download from the Maven repository](/logo.png)
hu.blackbelt.flutter.maven.plugin.api.CacheDescriptor Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of flutter-maven-plugin
Show all versions of flutter-maven-plugin
Flutter Maven plugin. It can run to flutter tasks
The newest version!
package hu.blackbelt.flutter.maven.plugin.api;
public class CacheDescriptor {
private final String name;
private final String version;
private final String extension;
public CacheDescriptor(String name, String version, String extension) {
this.name = name;
this.version = version;
this.extension = extension;
}
public String getName() {
return name;
}
public String getVersion() {
return version;
}
public String getExtension() {
return extension;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy