io.github.deweyjose.graphqlcodegen.Properties Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of graphqlcodegen-maven-plugin Show documentation
Show all versions of graphqlcodegen-maven-plugin Show documentation
Maven port of the Netflix DGS GraphQL Codegen gradle build plugin
The newest version!
package io.github.deweyjose.graphqlcodegen;
import org.apache.maven.plugins.annotations.Parameter;
import java.util.Map;
public class Properties {
@Parameter
private Map properties;
@Override
public String toString() {
return properties.toString();
} // to test
public Map getProperties() {
return properties;
}
public void setProperties(final Map properties) {
this.properties = properties;
}
}