diff --git a/README.md b/README.md index 383d234..3853447 100644 --- a/README.md +++ b/README.md @@ -27,6 +27,13 @@ mvnw clean install mvnw talend-component:deploy-in-studio -Dtalend.component.studioHome= ``` +If this is not working as it should, use the following commands instead of the deploy-in-studio command: + +```bash +mvnw talend-component.car +java -jar target\ARXDeidentifier-1.0.0.car studio-deploy --location +``` + License ------ diff --git a/src/main/java/org/deidentifier/arx/talend/processor/ParametersRisk.java b/src/main/java/org/deidentifier/arx/talend/processor/ParametersRisk.java index 301f9e3..aa0ae64 100644 --- a/src/main/java/org/deidentifier/arx/talend/processor/ParametersRisk.java +++ b/src/main/java/org/deidentifier/arx/talend/processor/ParametersRisk.java @@ -10,11 +10,13 @@ import java.util.ArrayList; import java.util.List; +import static org.talend.sdk.component.api.configuration.ui.layout.GridLayout.FormType.MAIN; + @Data -@GridLayout({ +@GridLayout(names = MAIN,value = { // the generated layout put one configuration entry per line, // customize it as much as needed - @GridLayout.Row({"highestRisk"}), + @GridLayout.Row({"highestRisk"}), @GridLayout.Row({"averageRisk"}), @GridLayout.Row({ "recordsAtRisk" }), @GridLayout.Row({ "qis" })