diff --git a/.dockerignore b/.dockerignore
new file mode 100644
index 00000000..5c405650
--- /dev/null
+++ b/.dockerignore
@@ -0,0 +1,15 @@
+# Excluir source code y targets pesados que no se necesitan en la imagen
+plugins/
+features/
+releng/afryca.application.configuration/
+releng/afryca.application.product/target/repository/
+releng/afryca.application.update/
+releng/afryca.application.product/target/p2agent/
+releng/afryca.application.product/target/products/afryca/macosx/
+releng/afryca.application.product/target/products/afryca/win32/
+afryca.consensusmodel.diego2020/
+design/
+theme/
+workspace/
+.git/
+*.bat
diff --git a/Dockerfile.run b/Dockerfile.run
new file mode 100644
index 00000000..fe844d05
--- /dev/null
+++ b/Dockerfile.run
@@ -0,0 +1,27 @@
+FROM --platform=linux/amd64 eclipse-temurin:11-jre-focal
+
+RUN apt-get update && apt-get install -y \
+ libgtk-3-0 \
+ libwebkit2gtk-4.0-37 \
+ libcanberra-gtk3-module \
+ libglib2.0-0 \
+ tigervnc-standalone-server \
+ tigervnc-common \
+ novnc \
+ websockify \
+ openbox \
+ x11-xkb-utils \
+ xkb-data \
+ fonts-dejavu \
+ fonts-liberation \
+ && rm -rf /var/lib/apt/lists/*
+
+EXPOSE 6080
+
+ENV DISPLAY=:1
+ENV LANG=es_ES.UTF-8
+
+COPY entrypoint.sh /entrypoint.sh
+RUN chmod +x /entrypoint.sh
+
+ENTRYPOINT ["/entrypoint.sh"]
diff --git a/docker-compose.yml b/docker-compose.yml
new file mode 100644
index 00000000..0b26017a
--- /dev/null
+++ b/docker-compose.yml
@@ -0,0 +1,11 @@
+services:
+ afryca:
+ build:
+ context: .
+ dockerfile: Dockerfile.run
+ platform: linux/amd64
+ volumes:
+ - "./releng/afryca.application.product/target/products/afryca/linux/gtk/x86_64:/app:ro"
+ ports:
+ - "6080:6080"
+ restart: unless-stopped
diff --git a/entrypoint.sh b/entrypoint.sh
new file mode 100644
index 00000000..f32788a6
--- /dev/null
+++ b/entrypoint.sh
@@ -0,0 +1,32 @@
+#!/bin/bash
+set -e
+
+# Limpiar locks de arranques anteriores
+rm -f /tmp/.X1-lock /tmp/.X11-unix/X1
+
+# Servidor VNC con TigerVNC (X server + VNC integrados)
+Xvnc :1 \
+ -SecurityTypes None \
+ -geometry 1280x960 \
+ -depth 24 \
+ -rfbport 5900 \
+ &
+
+sleep 2
+
+DISPLAY=:1 setxkbmap es 2>/dev/null || true
+
+DISPLAY=:1 openbox &
+
+# noVNC: sirve el VNC como página web en el puerto 6080
+websockify \
+ --web=/usr/share/novnc/ \
+ --wrap-mode=ignore \
+ 6080 localhost:5900 \
+ &
+
+echo "==> AFRYCA disponible en http://localhost:6080/vnc.html?autoconnect=true&resize=scale"
+
+exec /app/afryca \
+ -data @user.home/.afryca \
+ -vmargs -Djava.library.path=/app/plugins
diff --git a/features/afryca.ase.engine.default.feature/.polyglot.build.properties b/features/afryca.ase.engine.default.feature/.polyglot.build.properties
new file mode 100644
index 00000000..c3fd48bc
--- /dev/null
+++ b/features/afryca.ase.engine.default.feature/.polyglot.build.properties
@@ -0,0 +1,13 @@
+
+
+ 4.0.0
+
+ afryca.group
+ afryca.features
+ 1.0.0-SNAPSHOT
+
+ afryca.ase.engine.default.feature
+ 1.0.0-SNAPSHOT
+ eclipse-feature
+
diff --git a/features/afryca.ase.feature/.polyglot.build.properties b/features/afryca.ase.feature/.polyglot.build.properties
new file mode 100644
index 00000000..b371a499
--- /dev/null
+++ b/features/afryca.ase.feature/.polyglot.build.properties
@@ -0,0 +1,13 @@
+
+
+ 4.0.0
+
+ afryca.group
+ afryca.features
+ 1.0.0-SNAPSHOT
+
+ afryca.ase.feature
+ 1.0.0-SNAPSHOT
+ eclipse-feature
+
diff --git a/features/afryca.ase.gui.feature/.polyglot.build.properties b/features/afryca.ase.gui.feature/.polyglot.build.properties
new file mode 100644
index 00000000..bb83a87f
--- /dev/null
+++ b/features/afryca.ase.gui.feature/.polyglot.build.properties
@@ -0,0 +1,13 @@
+
+
+ 4.0.0
+
+ afryca.group
+ afryca.features
+ 1.0.0-SNAPSHOT
+
+ afryca.ase.gui.feature
+ 1.0.0-SNAPSHOT
+ eclipse-feature
+
diff --git a/features/afryca.behavior.default.feature/.polyglot.build.properties b/features/afryca.behavior.default.feature/.polyglot.build.properties
new file mode 100644
index 00000000..664e9f44
--- /dev/null
+++ b/features/afryca.behavior.default.feature/.polyglot.build.properties
@@ -0,0 +1,13 @@
+
+
+ 4.0.0
+
+ afryca.group
+ afryca.features
+ 1.0.0-SNAPSHOT
+
+ afryca.behavior.default.feature
+ 1.0.0-SNAPSHOT
+ eclipse-feature
+
diff --git a/features/afryca.behavior.feature/.polyglot.build.properties b/features/afryca.behavior.feature/.polyglot.build.properties
new file mode 100644
index 00000000..f92652d4
--- /dev/null
+++ b/features/afryca.behavior.feature/.polyglot.build.properties
@@ -0,0 +1,13 @@
+
+
+ 4.0.0
+
+ afryca.group
+ afryca.features
+ 1.0.0-SNAPSHOT
+
+ afryca.behavior.feature
+ 1.0.0-SNAPSHOT
+ eclipse-feature
+
diff --git a/features/afryca.behavior.gui.feature/.polyglot.build.properties b/features/afryca.behavior.gui.feature/.polyglot.build.properties
new file mode 100644
index 00000000..1f1a3030
--- /dev/null
+++ b/features/afryca.behavior.gui.feature/.polyglot.build.properties
@@ -0,0 +1,13 @@
+
+
+ 4.0.0
+
+ afryca.group
+ afryca.features
+ 1.0.0-SNAPSHOT
+
+ afryca.behavior.gui.feature
+ 1.0.0-SNAPSHOT
+ eclipse-feature
+
diff --git a/features/afryca.consensusmodel.default.feature/.polyglot.build.properties b/features/afryca.consensusmodel.default.feature/.polyglot.build.properties
new file mode 100644
index 00000000..df9852a6
--- /dev/null
+++ b/features/afryca.consensusmodel.default.feature/.polyglot.build.properties
@@ -0,0 +1,13 @@
+
+
+ 4.0.0
+
+ afryca.group
+ afryca.features
+ 1.0.0-SNAPSHOT
+
+ afryca.consensusmodel.default.feature
+ 1.0.0-SNAPSHOT
+ eclipse-feature
+
diff --git a/features/afryca.consensusmodel.feature/.polyglot.build.properties b/features/afryca.consensusmodel.feature/.polyglot.build.properties
new file mode 100644
index 00000000..057563c7
--- /dev/null
+++ b/features/afryca.consensusmodel.feature/.polyglot.build.properties
@@ -0,0 +1,13 @@
+
+
+ 4.0.0
+
+ afryca.group
+ afryca.features
+ 1.0.0-SNAPSHOT
+
+ afryca.consensusmodel.feature
+ 1.0.0-SNAPSHOT
+ eclipse-feature
+
diff --git a/features/afryca.consensusmodel.gui.feature/.polyglot.build.properties b/features/afryca.consensusmodel.gui.feature/.polyglot.build.properties
new file mode 100644
index 00000000..76929dcf
--- /dev/null
+++ b/features/afryca.consensusmodel.gui.feature/.polyglot.build.properties
@@ -0,0 +1,13 @@
+
+
+ 4.0.0
+
+ afryca.group
+ afryca.features
+ 1.0.0-SNAPSHOT
+
+ afryca.consensusmodel.gui.feature
+ 1.0.0-SNAPSHOT
+ eclipse-feature
+
diff --git a/features/afryca.decisionmatrix.feature/.polyglot.build.properties b/features/afryca.decisionmatrix.feature/.polyglot.build.properties
new file mode 100644
index 00000000..7f0cf48f
--- /dev/null
+++ b/features/afryca.decisionmatrix.feature/.polyglot.build.properties
@@ -0,0 +1,13 @@
+
+
+ 4.0.0
+
+ afryca.group
+ afryca.features
+ 1.0.0-SNAPSHOT
+
+ afryca.decisionmatrix.feature
+ 1.0.0-SNAPSHOT
+ eclipse-feature
+
diff --git a/features/afryca.decisionmatrix.gui.feature/.polyglot.build.properties b/features/afryca.decisionmatrix.gui.feature/.polyglot.build.properties
new file mode 100644
index 00000000..bd5d0048
--- /dev/null
+++ b/features/afryca.decisionmatrix.gui.feature/.polyglot.build.properties
@@ -0,0 +1,13 @@
+
+
+ 4.0.0
+
+ afryca.group
+ afryca.features
+ 1.0.0-SNAPSHOT
+
+ afryca.decisionmatrix.gui.feature
+ 1.0.0-SNAPSHOT
+ eclipse-feature
+
diff --git a/features/afryca.domain.feature/.polyglot.build.properties b/features/afryca.domain.feature/.polyglot.build.properties
new file mode 100644
index 00000000..392964e6
--- /dev/null
+++ b/features/afryca.domain.feature/.polyglot.build.properties
@@ -0,0 +1,13 @@
+
+
+ 4.0.0
+
+ afryca.group
+ afryca.features
+ 1.0.0-SNAPSHOT
+
+ afryca.domain.feature
+ 1.0.0-SNAPSHOT
+ eclipse-feature
+
diff --git a/features/afryca.domain.fuzzyset.feature/.polyglot.build.properties b/features/afryca.domain.fuzzyset.feature/.polyglot.build.properties
new file mode 100644
index 00000000..ad819ac8
--- /dev/null
+++ b/features/afryca.domain.fuzzyset.feature/.polyglot.build.properties
@@ -0,0 +1,13 @@
+
+
+ 4.0.0
+
+ afryca.group
+ afryca.features
+ 1.0.0-SNAPSHOT
+
+ afryca.domain.fuzzyset.feature
+ 1.0.0-SNAPSHOT
+ eclipse-feature
+
diff --git a/features/afryca.domain.gui.feature/.polyglot.build.properties b/features/afryca.domain.gui.feature/.polyglot.build.properties
new file mode 100644
index 00000000..b884bc6a
--- /dev/null
+++ b/features/afryca.domain.gui.feature/.polyglot.build.properties
@@ -0,0 +1,13 @@
+
+
+ 4.0.0
+
+ afryca.group
+ afryca.features
+ 1.0.0-SNAPSHOT
+
+ afryca.domain.gui.feature
+ 1.0.0-SNAPSHOT
+ eclipse-feature
+
diff --git a/features/afryca.domain.gui.fuzzyset.feature/.polyglot.build.properties b/features/afryca.domain.gui.fuzzyset.feature/.polyglot.build.properties
new file mode 100644
index 00000000..2588da27
--- /dev/null
+++ b/features/afryca.domain.gui.fuzzyset.feature/.polyglot.build.properties
@@ -0,0 +1,13 @@
+
+
+ 4.0.0
+
+ afryca.group
+ afryca.features
+ 1.0.0-SNAPSHOT
+
+ afryca.domain.gui.fuzzyset.feature
+ 1.0.0-SNAPSHOT
+ eclipse-feature
+
diff --git a/features/afryca.domain.integer.feature/.polyglot.build.properties b/features/afryca.domain.integer.feature/.polyglot.build.properties
new file mode 100644
index 00000000..93cf8f42
--- /dev/null
+++ b/features/afryca.domain.integer.feature/.polyglot.build.properties
@@ -0,0 +1,13 @@
+
+
+ 4.0.0
+
+ afryca.group
+ afryca.features
+ 1.0.0-SNAPSHOT
+
+ afryca.domain.integer.feature
+ 1.0.0-SNAPSHOT
+ eclipse-feature
+
diff --git a/features/afryca.domain.real.feature/.polyglot.build.properties b/features/afryca.domain.real.feature/.polyglot.build.properties
new file mode 100644
index 00000000..81ec19ee
--- /dev/null
+++ b/features/afryca.domain.real.feature/.polyglot.build.properties
@@ -0,0 +1,13 @@
+
+
+ 4.0.0
+
+ afryca.group
+ afryca.features
+ 1.0.0-SNAPSHOT
+
+ afryca.domain.real.feature
+ 1.0.0-SNAPSHOT
+ eclipse-feature
+
diff --git a/features/afryca.elicit.feature/.polyglot.build.properties b/features/afryca.elicit.feature/.polyglot.build.properties
new file mode 100644
index 00000000..dd12593f
--- /dev/null
+++ b/features/afryca.elicit.feature/.polyglot.build.properties
@@ -0,0 +1,13 @@
+
+
+ 4.0.0
+
+ afryca.group
+ afryca.features
+ 1.0.0-SNAPSHOT
+
+ afryca.elicit.feature
+ 1.0.0-SNAPSHOT
+ eclipse-feature
+
diff --git a/features/afryca.fpr.feature/.polyglot.build.properties b/features/afryca.fpr.feature/.polyglot.build.properties
new file mode 100644
index 00000000..8ba4315f
--- /dev/null
+++ b/features/afryca.fpr.feature/.polyglot.build.properties
@@ -0,0 +1,13 @@
+
+
+ 4.0.0
+
+ afryca.group
+ afryca.features
+ 1.0.0-SNAPSHOT
+
+ afryca.fpr.feature
+ 1.0.0-SNAPSHOT
+ eclipse-feature
+
diff --git a/features/afryca.fpr.gui.feature/.polyglot.build.properties b/features/afryca.fpr.gui.feature/.polyglot.build.properties
new file mode 100644
index 00000000..d6db0efa
--- /dev/null
+++ b/features/afryca.fpr.gui.feature/.polyglot.build.properties
@@ -0,0 +1,13 @@
+
+
+ 4.0.0
+
+ afryca.group
+ afryca.features
+ 1.0.0-SNAPSHOT
+
+ afryca.fpr.gui.feature
+ 1.0.0-SNAPSHOT
+ eclipse-feature
+
diff --git a/features/afryca.gdmp.feature/.polyglot.build.properties b/features/afryca.gdmp.feature/.polyglot.build.properties
new file mode 100644
index 00000000..7b1a4341
--- /dev/null
+++ b/features/afryca.gdmp.feature/.polyglot.build.properties
@@ -0,0 +1,13 @@
+
+
+ 4.0.0
+
+ afryca.group
+ afryca.features
+ 1.0.0-SNAPSHOT
+
+ afryca.gdmp.feature
+ 1.0.0-SNAPSHOT
+ eclipse-feature
+
diff --git a/features/afryca.gdmp.gui.feature/.polyglot.build.properties b/features/afryca.gdmp.gui.feature/.polyglot.build.properties
new file mode 100644
index 00000000..763401dc
--- /dev/null
+++ b/features/afryca.gdmp.gui.feature/.polyglot.build.properties
@@ -0,0 +1,13 @@
+
+
+ 4.0.0
+
+ afryca.group
+ afryca.features
+ 1.0.0-SNAPSHOT
+
+ afryca.gdmp.gui.feature
+ 1.0.0-SNAPSHOT
+ eclipse-feature
+
diff --git a/features/afryca.hlpr.feature/.polyglot.build.properties b/features/afryca.hlpr.feature/.polyglot.build.properties
new file mode 100644
index 00000000..4cbcad47
--- /dev/null
+++ b/features/afryca.hlpr.feature/.polyglot.build.properties
@@ -0,0 +1,13 @@
+
+
+ 4.0.0
+
+ afryca.group
+ afryca.features
+ 1.0.0-SNAPSHOT
+
+ afryca.hlpr.feature
+ 1.0.0-SNAPSHOT
+ eclipse-feature
+
diff --git a/features/afryca.hlpr.gui.feature/.polyglot.build.properties b/features/afryca.hlpr.gui.feature/.polyglot.build.properties
new file mode 100644
index 00000000..8bcecde6
--- /dev/null
+++ b/features/afryca.hlpr.gui.feature/.polyglot.build.properties
@@ -0,0 +1,13 @@
+
+
+ 4.0.0
+
+ afryca.group
+ afryca.features
+ 1.0.0-SNAPSHOT
+
+ afryca.hlpr.gui.feature
+ 1.0.0-SNAPSHOT
+ eclipse-feature
+
diff --git a/features/afryca.hpr.feature/.polyglot.build.properties b/features/afryca.hpr.feature/.polyglot.build.properties
new file mode 100644
index 00000000..6e2a56fe
--- /dev/null
+++ b/features/afryca.hpr.feature/.polyglot.build.properties
@@ -0,0 +1,13 @@
+
+
+ 4.0.0
+
+ afryca.group
+ afryca.features
+ 1.0.0-SNAPSHOT
+
+ afryca.hpr.feature
+ 1.0.0-SNAPSHOT
+ eclipse-feature
+
diff --git a/features/afryca.hpr.gui.feature/.polyglot.build.properties b/features/afryca.hpr.gui.feature/.polyglot.build.properties
new file mode 100644
index 00000000..6c434eee
--- /dev/null
+++ b/features/afryca.hpr.gui.feature/.polyglot.build.properties
@@ -0,0 +1,13 @@
+
+
+ 4.0.0
+
+ afryca.group
+ afryca.features
+ 1.0.0-SNAPSHOT
+
+ afryca.hpr.gui.feature
+ 1.0.0-SNAPSHOT
+ eclipse-feature
+
diff --git a/features/afryca.lpr.feature/.polyglot.build.properties b/features/afryca.lpr.feature/.polyglot.build.properties
new file mode 100644
index 00000000..4d54f8d4
--- /dev/null
+++ b/features/afryca.lpr.feature/.polyglot.build.properties
@@ -0,0 +1,13 @@
+
+
+ 4.0.0
+
+ afryca.group
+ afryca.features
+ 1.0.0-SNAPSHOT
+
+ afryca.lpr.feature
+ 1.0.0-SNAPSHOT
+ eclipse-feature
+
diff --git a/features/afryca.lpr.gui.feature/.polyglot.build.properties b/features/afryca.lpr.gui.feature/.polyglot.build.properties
new file mode 100644
index 00000000..23a0270a
--- /dev/null
+++ b/features/afryca.lpr.gui.feature/.polyglot.build.properties
@@ -0,0 +1,13 @@
+
+
+ 4.0.0
+
+ afryca.group
+ afryca.features
+ 1.0.0-SNAPSHOT
+
+ afryca.lpr.gui.feature
+ 1.0.0-SNAPSHOT
+ eclipse-feature
+
diff --git a/features/afryca.mpr.feature/.polyglot.build.properties b/features/afryca.mpr.feature/.polyglot.build.properties
new file mode 100644
index 00000000..21877894
--- /dev/null
+++ b/features/afryca.mpr.feature/.polyglot.build.properties
@@ -0,0 +1,13 @@
+
+
+ 4.0.0
+
+ afryca.group
+ afryca.features
+ 1.0.0-SNAPSHOT
+
+ afryca.mpr.feature
+ 1.0.0-SNAPSHOT
+ eclipse-feature
+
diff --git a/features/afryca.mpr.gui.feature/.polyglot.build.properties b/features/afryca.mpr.gui.feature/.polyglot.build.properties
new file mode 100644
index 00000000..96051951
--- /dev/null
+++ b/features/afryca.mpr.gui.feature/.polyglot.build.properties
@@ -0,0 +1,13 @@
+
+
+ 4.0.0
+
+ afryca.group
+ afryca.features
+ 1.0.0-SNAPSHOT
+
+ afryca.mpr.gui.feature
+ 1.0.0-SNAPSHOT
+ eclipse-feature
+
diff --git a/features/afryca.rcp.default.feature/.polyglot.build.properties b/features/afryca.rcp.default.feature/.polyglot.build.properties
new file mode 100644
index 00000000..ea24e6a8
--- /dev/null
+++ b/features/afryca.rcp.default.feature/.polyglot.build.properties
@@ -0,0 +1,13 @@
+
+
+ 4.0.0
+
+ afryca.group
+ afryca.features
+ 1.0.0-SNAPSHOT
+
+ afryca.rcp.default.feature
+ 1.0.0-SNAPSHOT
+ eclipse-feature
+
diff --git a/features/afryca.rcp.feature/.polyglot.build.properties b/features/afryca.rcp.feature/.polyglot.build.properties
new file mode 100644
index 00000000..2da32279
--- /dev/null
+++ b/features/afryca.rcp.feature/.polyglot.build.properties
@@ -0,0 +1,13 @@
+
+
+ 4.0.0
+
+ afryca.group
+ afryca.features
+ 1.0.0-SNAPSHOT
+
+ afryca.rcp.feature
+ 1.0.0-SNAPSHOT
+ eclipse-feature
+
diff --git a/features/afryca.simulation.feature/.polyglot.build.properties b/features/afryca.simulation.feature/.polyglot.build.properties
new file mode 100644
index 00000000..9e6bf39b
--- /dev/null
+++ b/features/afryca.simulation.feature/.polyglot.build.properties
@@ -0,0 +1,13 @@
+
+
+ 4.0.0
+
+ afryca.group
+ afryca.features
+ 1.0.0-SNAPSHOT
+
+ afryca.simulation.feature
+ 1.0.0-SNAPSHOT
+ eclipse-feature
+
diff --git a/features/afryca.simulation.gui.feature/.polyglot.build.properties b/features/afryca.simulation.gui.feature/.polyglot.build.properties
new file mode 100644
index 00000000..b10576b4
--- /dev/null
+++ b/features/afryca.simulation.gui.feature/.polyglot.build.properties
@@ -0,0 +1,13 @@
+
+
+ 4.0.0
+
+ afryca.group
+ afryca.features
+ 1.0.0-SNAPSHOT
+
+ afryca.simulation.gui.feature
+ 1.0.0-SNAPSHOT
+ eclipse-feature
+
diff --git a/features/afryca.structure.feature/.polyglot.build.properties b/features/afryca.structure.feature/.polyglot.build.properties
new file mode 100644
index 00000000..4ed9b8c5
--- /dev/null
+++ b/features/afryca.structure.feature/.polyglot.build.properties
@@ -0,0 +1,13 @@
+
+
+ 4.0.0
+
+ afryca.group
+ afryca.features
+ 1.0.0-SNAPSHOT
+
+ afryca.structure.feature
+ 1.0.0-SNAPSHOT
+ eclipse-feature
+
diff --git a/features/afryca.structure.gui.feature/.polyglot.build.properties b/features/afryca.structure.gui.feature/.polyglot.build.properties
new file mode 100644
index 00000000..94770047
--- /dev/null
+++ b/features/afryca.structure.gui.feature/.polyglot.build.properties
@@ -0,0 +1,13 @@
+
+
+ 4.0.0
+
+ afryca.group
+ afryca.features
+ 1.0.0-SNAPSHOT
+
+ afryca.structure.gui.feature
+ 1.0.0-SNAPSHOT
+ eclipse-feature
+
diff --git a/features/afryca.twotuple.feature/.polyglot.build.properties b/features/afryca.twotuple.feature/.polyglot.build.properties
new file mode 100644
index 00000000..be46ff33
--- /dev/null
+++ b/features/afryca.twotuple.feature/.polyglot.build.properties
@@ -0,0 +1,13 @@
+
+
+ 4.0.0
+
+ afryca.group
+ afryca.features
+ 1.0.0-SNAPSHOT
+
+ afryca.twotuple.feature
+ 1.0.0-SNAPSHOT
+ eclipse-feature
+
diff --git a/features/afryca.workspace.feature/.polyglot.build.properties b/features/afryca.workspace.feature/.polyglot.build.properties
new file mode 100644
index 00000000..b751ff92
--- /dev/null
+++ b/features/afryca.workspace.feature/.polyglot.build.properties
@@ -0,0 +1,13 @@
+
+
+ 4.0.0
+
+ afryca.group
+ afryca.features
+ 1.0.0-SNAPSHOT
+
+ afryca.workspace.feature
+ 1.0.0-SNAPSHOT
+ eclipse-feature
+
diff --git a/features/afryca.workspace.gui.feature/.polyglot.build.properties b/features/afryca.workspace.gui.feature/.polyglot.build.properties
new file mode 100644
index 00000000..75a29259
--- /dev/null
+++ b/features/afryca.workspace.gui.feature/.polyglot.build.properties
@@ -0,0 +1,13 @@
+
+
+ 4.0.0
+
+ afryca.group
+ afryca.features
+ 1.0.0-SNAPSHOT
+
+ afryca.workspace.gui.feature
+ 1.0.0-SNAPSHOT
+ eclipse-feature
+
diff --git a/plugins/Jython/.polyglot.build.properties b/plugins/Jython/.polyglot.build.properties
new file mode 100644
index 00000000..57daf153
--- /dev/null
+++ b/plugins/Jython/.polyglot.build.properties
@@ -0,0 +1,13 @@
+
+
+ 4.0.0
+
+ afryca.group
+ afryca.plugins
+ 1.0.0-SNAPSHOT
+
+ Jython
+ 1.0.0-SNAPSHOT
+ eclipse-plugin
+
diff --git a/plugins/afryca.ase.engine.Groovy/.polyglot.build.properties b/plugins/afryca.ase.engine.Groovy/.polyglot.build.properties
new file mode 100644
index 00000000..4dd57b39
--- /dev/null
+++ b/plugins/afryca.ase.engine.Groovy/.polyglot.build.properties
@@ -0,0 +1,13 @@
+
+
+ 4.0.0
+
+ afryca.group
+ afryca.plugins
+ 1.0.0-SNAPSHOT
+
+ afryca.ase.engine.Groovy
+ 1.0.0-SNAPSHOT
+ eclipse-plugin
+
diff --git a/plugins/afryca.ase.engine.JRuby/.polyglot.build.properties b/plugins/afryca.ase.engine.JRuby/.polyglot.build.properties
new file mode 100644
index 00000000..e1cb2814
--- /dev/null
+++ b/plugins/afryca.ase.engine.JRuby/.polyglot.build.properties
@@ -0,0 +1,13 @@
+
+
+ 4.0.0
+
+ afryca.group
+ afryca.plugins
+ 1.0.0-SNAPSHOT
+
+ afryca.ase.engine.JRuby
+ 1.0.0-SNAPSHOT
+ eclipse-plugin
+
diff --git a/plugins/afryca.ase.engine.Jython/.polyglot.build.properties b/plugins/afryca.ase.engine.Jython/.polyglot.build.properties
new file mode 100644
index 00000000..6335d5ad
--- /dev/null
+++ b/plugins/afryca.ase.engine.Jython/.polyglot.build.properties
@@ -0,0 +1,13 @@
+
+
+ 4.0.0
+
+ afryca.group
+ afryca.plugins
+ 1.0.0-SNAPSHOT
+
+ afryca.ase.engine.Jython
+ 1.0.0-SNAPSHOT
+ eclipse-plugin
+
diff --git a/plugins/afryca.ase.engine.LuaJ/.polyglot.build.properties b/plugins/afryca.ase.engine.LuaJ/.polyglot.build.properties
new file mode 100644
index 00000000..f2f35696
--- /dev/null
+++ b/plugins/afryca.ase.engine.LuaJ/.polyglot.build.properties
@@ -0,0 +1,13 @@
+
+
+ 4.0.0
+
+ afryca.group
+ afryca.plugins
+ 1.0.0-SNAPSHOT
+
+ afryca.ase.engine.LuaJ
+ 1.0.0-SNAPSHOT
+ eclipse-plugin
+
diff --git a/plugins/afryca.ase.engine.R.gui/.polyglot.build.properties b/plugins/afryca.ase.engine.R.gui/.polyglot.build.properties
new file mode 100644
index 00000000..7d81cbff
--- /dev/null
+++ b/plugins/afryca.ase.engine.R.gui/.polyglot.build.properties
@@ -0,0 +1,13 @@
+
+
+ 4.0.0
+
+ afryca.group
+ afryca.plugins
+ 1.0.0-SNAPSHOT
+
+ afryca.ase.engine.R.gui
+ 1.0.0-SNAPSHOT
+ eclipse-plugin
+
diff --git a/plugins/afryca.ase.engine.R/.polyglot.build.properties b/plugins/afryca.ase.engine.R/.polyglot.build.properties
new file mode 100644
index 00000000..0ba17776
--- /dev/null
+++ b/plugins/afryca.ase.engine.R/.polyglot.build.properties
@@ -0,0 +1,13 @@
+
+
+ 4.0.0
+
+ afryca.group
+ afryca.plugins
+ 1.0.0-SNAPSHOT
+
+ afryca.ase.engine.R
+ 1.0.0-SNAPSHOT
+ eclipse-plugin
+
diff --git a/plugins/afryca.ase.engine.Scala/.polyglot.build.properties b/plugins/afryca.ase.engine.Scala/.polyglot.build.properties
new file mode 100644
index 00000000..e9843fc6
--- /dev/null
+++ b/plugins/afryca.ase.engine.Scala/.polyglot.build.properties
@@ -0,0 +1,13 @@
+
+
+ 4.0.0
+
+ afryca.group
+ afryca.plugins
+ 1.0.0-SNAPSHOT
+
+ afryca.ase.engine.Scala
+ 1.0.0-SNAPSHOT
+ eclipse-plugin
+
diff --git a/plugins/afryca.ase.gui/.polyglot.build.properties b/plugins/afryca.ase.gui/.polyglot.build.properties
new file mode 100644
index 00000000..1e5c8dc1
--- /dev/null
+++ b/plugins/afryca.ase.gui/.polyglot.build.properties
@@ -0,0 +1,13 @@
+
+
+ 4.0.0
+
+ afryca.group
+ afryca.plugins
+ 1.0.0-SNAPSHOT
+
+ afryca.ase.gui
+ 1.0.0-SNAPSHOT
+ eclipse-plugin
+
diff --git a/plugins/afryca.ase/.polyglot.build.properties b/plugins/afryca.ase/.polyglot.build.properties
new file mode 100644
index 00000000..251797bc
--- /dev/null
+++ b/plugins/afryca.ase/.polyglot.build.properties
@@ -0,0 +1,13 @@
+
+
+ 4.0.0
+
+ afryca.group
+ afryca.plugins
+ 1.0.0-SNAPSHOT
+
+ afryca.ase
+ 1.0.0-SNAPSHOT
+ eclipse-plugin
+
diff --git a/plugins/afryca.behavior.gui/.polyglot.build.properties b/plugins/afryca.behavior.gui/.polyglot.build.properties
new file mode 100644
index 00000000..b2398a4d
--- /dev/null
+++ b/plugins/afryca.behavior.gui/.polyglot.build.properties
@@ -0,0 +1,13 @@
+
+
+ 4.0.0
+
+ afryca.group
+ afryca.plugins
+ 1.0.0-SNAPSHOT
+
+ afryca.behavior.gui
+ 1.0.0-SNAPSHOT
+ eclipse-plugin
+
diff --git a/plugins/afryca.behavior.standard/.polyglot.build.properties b/plugins/afryca.behavior.standard/.polyglot.build.properties
new file mode 100644
index 00000000..99545ce4
--- /dev/null
+++ b/plugins/afryca.behavior.standard/.polyglot.build.properties
@@ -0,0 +1,13 @@
+
+
+ 4.0.0
+
+ afryca.group
+ afryca.plugins
+ 1.0.0-SNAPSHOT
+
+ afryca.behavior.standard
+ 1.0.0-SNAPSHOT
+ eclipse-plugin
+
diff --git a/plugins/afryca.behavior.standard_with_adverse/.polyglot.build.properties b/plugins/afryca.behavior.standard_with_adverse/.polyglot.build.properties
new file mode 100644
index 00000000..c421d6a6
--- /dev/null
+++ b/plugins/afryca.behavior.standard_with_adverse/.polyglot.build.properties
@@ -0,0 +1,13 @@
+
+
+ 4.0.0
+
+ afryca.group
+ afryca.plugins
+ 1.0.0-SNAPSHOT
+
+ afryca.behavior.standard_with_adverse
+ 1.0.0-SNAPSHOT
+ eclipse-plugin
+
diff --git a/plugins/afryca.behavior/.polyglot.build.properties b/plugins/afryca.behavior/.polyglot.build.properties
new file mode 100644
index 00000000..7802ae42
--- /dev/null
+++ b/plugins/afryca.behavior/.polyglot.build.properties
@@ -0,0 +1,13 @@
+
+
+ 4.0.0
+
+ afryca.group
+ afryca.plugins
+ 1.0.0-SNAPSHOT
+
+ afryca.behavior
+ 1.0.0-SNAPSHOT
+ eclipse-plugin
+
diff --git a/plugins/afryca.birt/.polyglot.build.properties b/plugins/afryca.birt/.polyglot.build.properties
new file mode 100644
index 00000000..20a9ecc0
--- /dev/null
+++ b/plugins/afryca.birt/.polyglot.build.properties
@@ -0,0 +1,13 @@
+
+
+ 4.0.0
+
+ afryca.group
+ afryca.plugins
+ 1.0.0-SNAPSHOT
+
+ afryca.birt
+ 1.0.0-SNAPSHOT
+ eclipse-plugin
+
diff --git a/plugins/afryca.cm/.polyglot.build.properties b/plugins/afryca.cm/.polyglot.build.properties
new file mode 100644
index 00000000..54e9d16c
--- /dev/null
+++ b/plugins/afryca.cm/.polyglot.build.properties
@@ -0,0 +1,13 @@
+
+
+ 4.0.0
+
+ afryca.group
+ afryca.plugins
+ 1.0.0-SNAPSHOT
+
+ afryca.cm
+ 1.0.0-SNAPSHOT
+ eclipse-plugin
+
diff --git a/plugins/afryca.consensusmodel.Rodriguez2018HierarchicalClustering/.polyglot.build.properties b/plugins/afryca.consensusmodel.Rodriguez2018HierarchicalClustering/.polyglot.build.properties
new file mode 100644
index 00000000..83ce17a3
--- /dev/null
+++ b/plugins/afryca.consensusmodel.Rodriguez2018HierarchicalClustering/.polyglot.build.properties
@@ -0,0 +1,13 @@
+
+
+ 4.0.0
+
+ afryca.group
+ afryca.plugins
+ 1.0.0-SNAPSHOT
+
+ afryca.consensusmodel.rodriguez2018HierarchicalClustering
+ 1.0.0-SNAPSHOT
+ eclipse-plugin
+
diff --git a/plugins/afryca.consensusmodel.chiclana2008/.polyglot.build.properties b/plugins/afryca.consensusmodel.chiclana2008/.polyglot.build.properties
new file mode 100644
index 00000000..180a5a56
--- /dev/null
+++ b/plugins/afryca.consensusmodel.chiclana2008/.polyglot.build.properties
@@ -0,0 +1,13 @@
+
+
+ 4.0.0
+
+ afryca.group
+ afryca.plugins
+ 1.0.0-SNAPSHOT
+
+ afryca.consensusmodel.chiclana2008
+ 1.0.0-SNAPSHOT
+ eclipse-plugin
+
diff --git a/plugins/afryca.consensusmodel.fen2015/.polyglot.build.properties b/plugins/afryca.consensusmodel.fen2015/.polyglot.build.properties
new file mode 100644
index 00000000..df99ecf5
--- /dev/null
+++ b/plugins/afryca.consensusmodel.fen2015/.polyglot.build.properties
@@ -0,0 +1,13 @@
+
+
+ 4.0.0
+
+ afryca.group
+ afryca.plugins
+ 1.0.0-SNAPSHOT
+
+ afryca.consensusmodel.fen2015
+ 1.0.0-SNAPSHOT
+ eclipse-plugin
+
diff --git a/plugins/afryca.consensusmodel.gui/.polyglot.build.properties b/plugins/afryca.consensusmodel.gui/.polyglot.build.properties
new file mode 100644
index 00000000..f76977ac
--- /dev/null
+++ b/plugins/afryca.consensusmodel.gui/.polyglot.build.properties
@@ -0,0 +1,13 @@
+
+
+ 4.0.0
+
+ afryca.group
+ afryca.plugins
+ 1.0.0-SNAPSHOT
+
+ afryca.consensusmodel.gui
+ 1.0.0-SNAPSHOT
+ eclipse-plugin
+
diff --git a/plugins/afryca.consensusmodel.herreraviedma2002/.polyglot.build.properties b/plugins/afryca.consensusmodel.herreraviedma2002/.polyglot.build.properties
new file mode 100644
index 00000000..da64c342
--- /dev/null
+++ b/plugins/afryca.consensusmodel.herreraviedma2002/.polyglot.build.properties
@@ -0,0 +1,13 @@
+
+
+ 4.0.0
+
+ afryca.group
+ afryca.plugins
+ 1.0.0-SNAPSHOT
+
+ afryca.consensusmodel.herreraviedma2002
+ 1.0.0-SNAPSHOT
+ eclipse-plugin
+
diff --git a/plugins/afryca.consensusmodel.hongbin2018/.polyglot.build.properties b/plugins/afryca.consensusmodel.hongbin2018/.polyglot.build.properties
new file mode 100644
index 00000000..93aed3af
--- /dev/null
+++ b/plugins/afryca.consensusmodel.hongbin2018/.polyglot.build.properties
@@ -0,0 +1,13 @@
+
+
+ 4.0.0
+
+ afryca.group
+ afryca.plugins
+ 1.0.0-SNAPSHOT
+
+ afryca.consensusmodel.hongbin2018
+ 1.0.0-SNAPSHOT
+ eclipse-plugin
+
diff --git a/plugins/afryca.consensusmodel.ishizaka2018/.polyglot.build.properties b/plugins/afryca.consensusmodel.ishizaka2018/.polyglot.build.properties
new file mode 100644
index 00000000..b74f699f
--- /dev/null
+++ b/plugins/afryca.consensusmodel.ishizaka2018/.polyglot.build.properties
@@ -0,0 +1,13 @@
+
+
+ 4.0.0
+
+ afryca.group
+ afryca.plugins
+ 1.0.0-SNAPSHOT
+
+ afryca.consensusmodel.ishizaka2018
+ 1.0.0-SNAPSHOT
+ eclipse-plugin
+
diff --git a/plugins/afryca.consensusmodel.kacprzyk2010/.polyglot.build.properties b/plugins/afryca.consensusmodel.kacprzyk2010/.polyglot.build.properties
new file mode 100644
index 00000000..e056eea7
--- /dev/null
+++ b/plugins/afryca.consensusmodel.kacprzyk2010/.polyglot.build.properties
@@ -0,0 +1,13 @@
+
+
+ 4.0.0
+
+ afryca.group
+ afryca.plugins
+ 1.0.0-SNAPSHOT
+
+ afryca.consensusmodel.kacprzyk2010
+ 1.0.0-SNAPSHOT
+ eclipse-plugin
+
diff --git a/plugins/afryca.consensusmodel.labella2019/.polyglot.build.properties b/plugins/afryca.consensusmodel.labella2019/.polyglot.build.properties
new file mode 100644
index 00000000..a7532923
--- /dev/null
+++ b/plugins/afryca.consensusmodel.labella2019/.polyglot.build.properties
@@ -0,0 +1,13 @@
+
+
+ 4.0.0
+
+ afryca.group
+ afryca.plugins
+ 1.0.0-SNAPSHOT
+
+ afryca.consensusmodel.labella2019
+ 1.0.0-SNAPSHOT
+ eclipse-plugin
+
diff --git a/plugins/afryca.consensusmodel.labella2020/.polyglot.build.properties b/plugins/afryca.consensusmodel.labella2020/.polyglot.build.properties
new file mode 100644
index 00000000..ea3edf58
--- /dev/null
+++ b/plugins/afryca.consensusmodel.labella2020/.polyglot.build.properties
@@ -0,0 +1,13 @@
+
+
+ 4.0.0
+
+ afryca.group
+ afryca.plugins
+ 1.0.0-SNAPSHOT
+
+ afryca.consensusmodel.labella2020
+ 1.0.0-SNAPSHOT
+ eclipse-plugin
+
diff --git a/plugins/afryca.consensusmodel.labella2020ELICIT/.polyglot.build.properties b/plugins/afryca.consensusmodel.labella2020ELICIT/.polyglot.build.properties
new file mode 100644
index 00000000..89576705
--- /dev/null
+++ b/plugins/afryca.consensusmodel.labella2020ELICIT/.polyglot.build.properties
@@ -0,0 +1,13 @@
+
+
+ 4.0.0
+
+ afryca.group
+ afryca.plugins
+ 1.0.0-SNAPSHOT
+
+ afryca.consensusmodel.labella2020ELICIT
+ 1.0.0-SNAPSHOT
+ eclipse-plugin
+
diff --git a/plugins/afryca.consensusmodel.palomares2014/.polyglot.build.properties b/plugins/afryca.consensusmodel.palomares2014/.polyglot.build.properties
new file mode 100644
index 00000000..834133d9
--- /dev/null
+++ b/plugins/afryca.consensusmodel.palomares2014/.polyglot.build.properties
@@ -0,0 +1,13 @@
+
+
+ 4.0.0
+
+ afryca.group
+ afryca.plugins
+ 1.0.0-SNAPSHOT
+
+ afryca.consensusmodel.palomares2014
+ 1.0.0-SNAPSHOT
+ eclipse-plugin
+
diff --git a/plugins/afryca.consensusmodel.palomares2014WF/.polyglot.build.properties b/plugins/afryca.consensusmodel.palomares2014WF/.polyglot.build.properties
new file mode 100644
index 00000000..806f5427
--- /dev/null
+++ b/plugins/afryca.consensusmodel.palomares2014WF/.polyglot.build.properties
@@ -0,0 +1,13 @@
+
+
+ 4.0.0
+
+ afryca.group
+ afryca.plugins
+ 1.0.0-SNAPSHOT
+
+ afryca.consensusmodel.palomares2014WF
+ 1.0.0-SNAPSHOT
+ eclipse-plugin
+
diff --git a/plugins/afryca.consensusmodel.palomares2014cluster/.polyglot.build.properties b/plugins/afryca.consensusmodel.palomares2014cluster/.polyglot.build.properties
new file mode 100644
index 00000000..4811d0eb
--- /dev/null
+++ b/plugins/afryca.consensusmodel.palomares2014cluster/.polyglot.build.properties
@@ -0,0 +1,13 @@
+
+
+ 4.0.0
+
+ afryca.group
+ afryca.plugins
+ 1.0.0-SNAPSHOT
+
+ afryca.consensusmodel.palomares2014cluster
+ 1.0.0-SNAPSHOT
+ eclipse-plugin
+
diff --git a/plugins/afryca.consensusmodel.quesada2015/.polyglot.build.properties b/plugins/afryca.consensusmodel.quesada2015/.polyglot.build.properties
new file mode 100644
index 00000000..d94396dc
--- /dev/null
+++ b/plugins/afryca.consensusmodel.quesada2015/.polyglot.build.properties
@@ -0,0 +1,13 @@
+
+
+ 4.0.0
+
+ afryca.group
+ afryca.plugins
+ 1.0.0-SNAPSHOT
+
+ afryca.consensusmodel.quesada2015
+ 1.0.0-SNAPSHOT
+ eclipse-plugin
+
diff --git a/plugins/afryca.consensusmodel.rodriguez2015/.polyglot.build.properties b/plugins/afryca.consensusmodel.rodriguez2015/.polyglot.build.properties
new file mode 100644
index 00000000..fd9aee6c
--- /dev/null
+++ b/plugins/afryca.consensusmodel.rodriguez2015/.polyglot.build.properties
@@ -0,0 +1,13 @@
+
+
+ 4.0.0
+
+ afryca.group
+ afryca.plugins
+ 1.0.0-SNAPSHOT
+
+ afryca.consensusmodel.rodriguez2015
+ 1.0.0-SNAPSHOT
+ eclipse-plugin
+
diff --git a/plugins/afryca.consensusmodel.rodriguez2018/.polyglot.build.properties b/plugins/afryca.consensusmodel.rodriguez2018/.polyglot.build.properties
new file mode 100644
index 00000000..8b2e01c9
--- /dev/null
+++ b/plugins/afryca.consensusmodel.rodriguez2018/.polyglot.build.properties
@@ -0,0 +1,13 @@
+
+
+ 4.0.0
+
+ afryca.group
+ afryca.plugins
+ 1.0.0-SNAPSHOT
+
+ afryca.consensusmodel.rodriguez2018
+ 1.0.0-SNAPSHOT
+ eclipse-plugin
+
diff --git a/plugins/afryca.consensusmodel.rodriguez2018MinimumCostClustering/.polyglot.build.properties b/plugins/afryca.consensusmodel.rodriguez2018MinimumCostClustering/.polyglot.build.properties
new file mode 100644
index 00000000..2a51d24f
--- /dev/null
+++ b/plugins/afryca.consensusmodel.rodriguez2018MinimumCostClustering/.polyglot.build.properties
@@ -0,0 +1,13 @@
+
+
+ 4.0.0
+
+ afryca.group
+ afryca.plugins
+ 1.0.0-SNAPSHOT
+
+ afryca.consensusmodel.rodriguez2018MinimumCostClustering
+ 1.0.0-SNAPSHOT
+ eclipse-plugin
+
diff --git a/plugins/afryca.consensusmodel.transrisk2018/.polyglot.build.properties b/plugins/afryca.consensusmodel.transrisk2018/.polyglot.build.properties
new file mode 100644
index 00000000..db921822
--- /dev/null
+++ b/plugins/afryca.consensusmodel.transrisk2018/.polyglot.build.properties
@@ -0,0 +1,13 @@
+
+
+ 4.0.0
+
+ afryca.group
+ afryca.plugins
+ 1.0.0-SNAPSHOT
+
+ afryca.consensusmodel.transrisk2018
+ 1.0.0-SNAPSHOT
+ eclipse-plugin
+
diff --git a/plugins/afryca.consensusmodel.wu2012/.polyglot.build.properties b/plugins/afryca.consensusmodel.wu2012/.polyglot.build.properties
new file mode 100644
index 00000000..a1c72899
--- /dev/null
+++ b/plugins/afryca.consensusmodel.wu2012/.polyglot.build.properties
@@ -0,0 +1,13 @@
+
+
+ 4.0.0
+
+ afryca.group
+ afryca.plugins
+ 1.0.0-SNAPSHOT
+
+ afryca.consensusmodel.wu2012
+ 1.0.0-SNAPSHOT
+ eclipse-plugin
+
diff --git a/plugins/afryca.consensusmodel.xu2013/.polyglot.build.properties b/plugins/afryca.consensusmodel.xu2013/.polyglot.build.properties
new file mode 100644
index 00000000..6b1c5f35
--- /dev/null
+++ b/plugins/afryca.consensusmodel.xu2013/.polyglot.build.properties
@@ -0,0 +1,13 @@
+
+
+ 4.0.0
+
+ afryca.group
+ afryca.plugins
+ 1.0.0-SNAPSHOT
+
+ afryca.consensusmodel.xu2013
+ 1.0.0-SNAPSHOT
+ eclipse-plugin
+
diff --git a/plugins/afryca.consensusmodel.zhang2011minimumcost/.polyglot.build.properties b/plugins/afryca.consensusmodel.zhang2011minimumcost/.polyglot.build.properties
new file mode 100644
index 00000000..f62bd4ab
--- /dev/null
+++ b/plugins/afryca.consensusmodel.zhang2011minimumcost/.polyglot.build.properties
@@ -0,0 +1,13 @@
+
+
+ 4.0.0
+
+ afryca.group
+ afryca.plugins
+ 1.0.0-SNAPSHOT
+
+ afryca.consensusmodel.zhang2011minimumcost
+ 1.0.0-SNAPSHOT
+ eclipse-plugin
+
diff --git a/plugins/afryca.consensusmodel.zhang2012/.polyglot.build.properties b/plugins/afryca.consensusmodel.zhang2012/.polyglot.build.properties
new file mode 100644
index 00000000..bad29c2f
--- /dev/null
+++ b/plugins/afryca.consensusmodel.zhang2012/.polyglot.build.properties
@@ -0,0 +1,13 @@
+
+
+ 4.0.0
+
+ afryca.group
+ afryca.plugins
+ 1.0.0-SNAPSHOT
+
+ afryca.consensusmodel.zhang2012
+ 1.0.0-SNAPSHOT
+ eclipse-plugin
+
diff --git a/plugins/afryca.consensusmodel/.polyglot.build.properties b/plugins/afryca.consensusmodel/.polyglot.build.properties
new file mode 100644
index 00000000..fea24240
--- /dev/null
+++ b/plugins/afryca.consensusmodel/.polyglot.build.properties
@@ -0,0 +1,13 @@
+
+
+ 4.0.0
+
+ afryca.group
+ afryca.plugins
+ 1.0.0-SNAPSHOT
+
+ afryca.consensusmodel
+ 1.0.0-SNAPSHOT
+ eclipse-plugin
+
diff --git a/plugins/afryca.decisionmatrix.gui/.polyglot.build.properties b/plugins/afryca.decisionmatrix.gui/.polyglot.build.properties
new file mode 100644
index 00000000..aedcf711
--- /dev/null
+++ b/plugins/afryca.decisionmatrix.gui/.polyglot.build.properties
@@ -0,0 +1,13 @@
+
+
+ 4.0.0
+
+ afryca.group
+ afryca.plugins
+ 1.0.0-SNAPSHOT
+
+ afryca.decisionmatrix.gui
+ 1.0.0-SNAPSHOT
+ eclipse-plugin
+
diff --git a/plugins/afryca.decisionmatrix/.polyglot.build.properties b/plugins/afryca.decisionmatrix/.polyglot.build.properties
new file mode 100644
index 00000000..c31fdb0d
--- /dev/null
+++ b/plugins/afryca.decisionmatrix/.polyglot.build.properties
@@ -0,0 +1,13 @@
+
+
+ 4.0.0
+
+ afryca.group
+ afryca.plugins
+ 1.0.0-SNAPSHOT
+
+ afryca.decisionmatrix
+ 1.0.0-SNAPSHOT
+ eclipse-plugin
+
diff --git a/plugins/afryca.domain.fuzzyset/.polyglot.build.properties b/plugins/afryca.domain.fuzzyset/.polyglot.build.properties
new file mode 100644
index 00000000..fd293c88
--- /dev/null
+++ b/plugins/afryca.domain.fuzzyset/.polyglot.build.properties
@@ -0,0 +1,13 @@
+
+
+ 4.0.0
+
+ afryca.group
+ afryca.plugins
+ 1.0.0-SNAPSHOT
+
+ afryca.domain.fuzzyset
+ 1.0.0-SNAPSHOT
+ eclipse-plugin
+
diff --git a/plugins/afryca.domain.gui.fuzzyset/.polyglot.build.properties b/plugins/afryca.domain.gui.fuzzyset/.polyglot.build.properties
new file mode 100644
index 00000000..71c38b6f
--- /dev/null
+++ b/plugins/afryca.domain.gui.fuzzyset/.polyglot.build.properties
@@ -0,0 +1,13 @@
+
+
+ 4.0.0
+
+ afryca.group
+ afryca.plugins
+ 1.0.0-SNAPSHOT
+
+ afryca.domain.gui.fuzzyset
+ 1.0.0-SNAPSHOT
+ eclipse-plugin
+
diff --git a/plugins/afryca.domain.gui.integer/.polyglot.build.properties b/plugins/afryca.domain.gui.integer/.polyglot.build.properties
new file mode 100644
index 00000000..3363ada4
--- /dev/null
+++ b/plugins/afryca.domain.gui.integer/.polyglot.build.properties
@@ -0,0 +1,13 @@
+
+
+ 4.0.0
+
+ afryca.group
+ afryca.plugins
+ 1.0.0-SNAPSHOT
+
+ afryca.domain.gui.integer
+ 1.0.0-SNAPSHOT
+ eclipse-plugin
+
diff --git a/plugins/afryca.domain.gui.real/.polyglot.build.properties b/plugins/afryca.domain.gui.real/.polyglot.build.properties
new file mode 100644
index 00000000..351e156e
--- /dev/null
+++ b/plugins/afryca.domain.gui.real/.polyglot.build.properties
@@ -0,0 +1,13 @@
+
+
+ 4.0.0
+
+ afryca.group
+ afryca.plugins
+ 1.0.0-SNAPSHOT
+
+ afryca.domain.gui.real
+ 1.0.0-SNAPSHOT
+ eclipse-plugin
+
diff --git a/plugins/afryca.domain.gui/.polyglot.build.properties b/plugins/afryca.domain.gui/.polyglot.build.properties
new file mode 100644
index 00000000..1c7f6311
--- /dev/null
+++ b/plugins/afryca.domain.gui/.polyglot.build.properties
@@ -0,0 +1,13 @@
+
+
+ 4.0.0
+
+ afryca.group
+ afryca.plugins
+ 1.0.0-SNAPSHOT
+
+ afryca.domain.gui
+ 1.0.0-SNAPSHOT
+ eclipse-plugin
+
diff --git a/plugins/afryca.domain.integer/.polyglot.build.properties b/plugins/afryca.domain.integer/.polyglot.build.properties
new file mode 100644
index 00000000..5c133f82
--- /dev/null
+++ b/plugins/afryca.domain.integer/.polyglot.build.properties
@@ -0,0 +1,13 @@
+
+
+ 4.0.0
+
+ afryca.group
+ afryca.plugins
+ 1.0.0-SNAPSHOT
+
+ afryca.domain.integer
+ 1.0.0-SNAPSHOT
+ eclipse-plugin
+
diff --git a/plugins/afryca.domain.real/.polyglot.build.properties b/plugins/afryca.domain.real/.polyglot.build.properties
new file mode 100644
index 00000000..5d1b8f14
--- /dev/null
+++ b/plugins/afryca.domain.real/.polyglot.build.properties
@@ -0,0 +1,13 @@
+
+
+ 4.0.0
+
+ afryca.group
+ afryca.plugins
+ 1.0.0-SNAPSHOT
+
+ afryca.domain.real
+ 1.0.0-SNAPSHOT
+ eclipse-plugin
+
diff --git a/plugins/afryca.domain/.polyglot.build.properties b/plugins/afryca.domain/.polyglot.build.properties
new file mode 100644
index 00000000..d8588404
--- /dev/null
+++ b/plugins/afryca.domain/.polyglot.build.properties
@@ -0,0 +1,13 @@
+
+
+ 4.0.0
+
+ afryca.group
+ afryca.plugins
+ 1.0.0-SNAPSHOT
+
+ afryca.domain
+ 1.0.0-SNAPSHOT
+ eclipse-plugin
+
diff --git a/plugins/afryca.elicit/.polyglot.build.properties b/plugins/afryca.elicit/.polyglot.build.properties
new file mode 100644
index 00000000..c5da96d4
--- /dev/null
+++ b/plugins/afryca.elicit/.polyglot.build.properties
@@ -0,0 +1,13 @@
+
+
+ 4.0.0
+
+ afryca.group
+ afryca.plugins
+ 1.0.0-SNAPSHOT
+
+ afryca.elicit
+ 1.0.0-SNAPSHOT
+ eclipse-plugin
+
diff --git a/plugins/afryca.fpr.gui/.polyglot.build.properties b/plugins/afryca.fpr.gui/.polyglot.build.properties
new file mode 100644
index 00000000..cea4cd78
--- /dev/null
+++ b/plugins/afryca.fpr.gui/.polyglot.build.properties
@@ -0,0 +1,13 @@
+
+
+ 4.0.0
+
+ afryca.group
+ afryca.plugins
+ 1.0.0-SNAPSHOT
+
+ afryca.fpr.gui
+ 1.0.0-SNAPSHOT
+ eclipse-plugin
+
diff --git a/plugins/afryca.fpr/.polyglot.build.properties b/plugins/afryca.fpr/.polyglot.build.properties
new file mode 100644
index 00000000..6a4d6765
--- /dev/null
+++ b/plugins/afryca.fpr/.polyglot.build.properties
@@ -0,0 +1,13 @@
+
+
+ 4.0.0
+
+ afryca.group
+ afryca.plugins
+ 1.0.0-SNAPSHOT
+
+ afryca.fpr
+ 1.0.0-SNAPSHOT
+ eclipse-plugin
+
diff --git a/plugins/afryca.gdmp.gui/.polyglot.build.properties b/plugins/afryca.gdmp.gui/.polyglot.build.properties
new file mode 100644
index 00000000..f8fc4d68
--- /dev/null
+++ b/plugins/afryca.gdmp.gui/.polyglot.build.properties
@@ -0,0 +1,13 @@
+
+
+ 4.0.0
+
+ afryca.group
+ afryca.plugins
+ 1.0.0-SNAPSHOT
+
+ afryca.gdmp.gui
+ 1.0.0-SNAPSHOT
+ eclipse-plugin
+
diff --git a/plugins/afryca.gdmp/.polyglot.build.properties b/plugins/afryca.gdmp/.polyglot.build.properties
new file mode 100644
index 00000000..0311bdc3
--- /dev/null
+++ b/plugins/afryca.gdmp/.polyglot.build.properties
@@ -0,0 +1,13 @@
+
+
+ 4.0.0
+
+ afryca.group
+ afryca.plugins
+ 1.0.0-SNAPSHOT
+
+ afryca.gdmp
+ 1.0.0-SNAPSHOT
+ eclipse-plugin
+
diff --git a/plugins/afryca.hlpr.gui/.polyglot.build.properties b/plugins/afryca.hlpr.gui/.polyglot.build.properties
new file mode 100644
index 00000000..51925822
--- /dev/null
+++ b/plugins/afryca.hlpr.gui/.polyglot.build.properties
@@ -0,0 +1,13 @@
+
+
+ 4.0.0
+
+ afryca.group
+ afryca.plugins
+ 1.0.0-SNAPSHOT
+
+ afryca.hlpr.gui
+ 1.0.0-SNAPSHOT
+ eclipse-plugin
+
diff --git a/plugins/afryca.hlpr/.polyglot.build.properties b/plugins/afryca.hlpr/.polyglot.build.properties
new file mode 100644
index 00000000..9e7cd720
--- /dev/null
+++ b/plugins/afryca.hlpr/.polyglot.build.properties
@@ -0,0 +1,13 @@
+
+
+ 4.0.0
+
+ afryca.group
+ afryca.plugins
+ 1.0.0-SNAPSHOT
+
+ afryca.hlpr
+ 1.0.0-SNAPSHOT
+ eclipse-plugin
+
diff --git a/plugins/afryca.hpr.gui/.polyglot.build.properties b/plugins/afryca.hpr.gui/.polyglot.build.properties
new file mode 100644
index 00000000..f92e1b52
--- /dev/null
+++ b/plugins/afryca.hpr.gui/.polyglot.build.properties
@@ -0,0 +1,13 @@
+
+
+ 4.0.0
+
+ afryca.group
+ afryca.plugins
+ 1.0.0-SNAPSHOT
+
+ afryca.hpr.gui
+ 1.0.0-SNAPSHOT
+ eclipse-plugin
+
diff --git a/plugins/afryca.hpr/.polyglot.build.properties b/plugins/afryca.hpr/.polyglot.build.properties
new file mode 100644
index 00000000..36754d12
--- /dev/null
+++ b/plugins/afryca.hpr/.polyglot.build.properties
@@ -0,0 +1,13 @@
+
+
+ 4.0.0
+
+ afryca.group
+ afryca.plugins
+ 1.0.0-SNAPSHOT
+
+ afryca.hpr
+ 1.0.0-SNAPSHOT
+ eclipse-plugin
+
diff --git a/plugins/afryca.lpr.gui/.polyglot.build.properties b/plugins/afryca.lpr.gui/.polyglot.build.properties
new file mode 100644
index 00000000..066168e3
--- /dev/null
+++ b/plugins/afryca.lpr.gui/.polyglot.build.properties
@@ -0,0 +1,13 @@
+
+
+ 4.0.0
+
+ afryca.group
+ afryca.plugins
+ 1.0.0-SNAPSHOT
+
+ afryca.lpr.gui
+ 1.0.0-SNAPSHOT
+ eclipse-plugin
+
diff --git a/plugins/afryca.lpr/.polyglot.build.properties b/plugins/afryca.lpr/.polyglot.build.properties
new file mode 100644
index 00000000..0db63849
--- /dev/null
+++ b/plugins/afryca.lpr/.polyglot.build.properties
@@ -0,0 +1,13 @@
+
+
+ 4.0.0
+
+ afryca.group
+ afryca.plugins
+ 1.0.0-SNAPSHOT
+
+ afryca.lpr
+ 1.0.0-SNAPSHOT
+ eclipse-plugin
+
diff --git a/plugins/afryca.mpr.gui/.polyglot.build.properties b/plugins/afryca.mpr.gui/.polyglot.build.properties
new file mode 100644
index 00000000..06c4da51
--- /dev/null
+++ b/plugins/afryca.mpr.gui/.polyglot.build.properties
@@ -0,0 +1,13 @@
+
+
+ 4.0.0
+
+ afryca.group
+ afryca.plugins
+ 1.0.0-SNAPSHOT
+
+ afryca.mpr.gui
+ 1.0.0-SNAPSHOT
+ eclipse-plugin
+
diff --git a/plugins/afryca.mpr/.polyglot.build.properties b/plugins/afryca.mpr/.polyglot.build.properties
new file mode 100644
index 00000000..9cd75df9
--- /dev/null
+++ b/plugins/afryca.mpr/.polyglot.build.properties
@@ -0,0 +1,13 @@
+
+
+ 4.0.0
+
+ afryca.group
+ afryca.plugins
+ 1.0.0-SNAPSHOT
+
+ afryca.mpr
+ 1.0.0-SNAPSHOT
+ eclipse-plugin
+
diff --git a/plugins/afryca.parametervalueconverterhelper/.polyglot.build.properties b/plugins/afryca.parametervalueconverterhelper/.polyglot.build.properties
new file mode 100644
index 00000000..fa29374c
--- /dev/null
+++ b/plugins/afryca.parametervalueconverterhelper/.polyglot.build.properties
@@ -0,0 +1,13 @@
+
+
+ 4.0.0
+
+ afryca.group
+ afryca.plugins
+ 1.0.0-SNAPSHOT
+
+ afryca.parametervalueconverterhelper
+ 1.0.0-SNAPSHOT
+ eclipse-plugin
+
diff --git a/plugins/afryca.pr/.polyglot.build.properties b/plugins/afryca.pr/.polyglot.build.properties
new file mode 100644
index 00000000..c5a4de0c
--- /dev/null
+++ b/plugins/afryca.pr/.polyglot.build.properties
@@ -0,0 +1,13 @@
+
+
+ 4.0.0
+
+ afryca.group
+ afryca.plugins
+ 1.0.0-SNAPSHOT
+
+ afryca.pr
+ 1.0.0-SNAPSHOT
+ eclipse-plugin
+
diff --git a/plugins/afryca.rcp.ase.context/.polyglot.build.properties b/plugins/afryca.rcp.ase.context/.polyglot.build.properties
new file mode 100644
index 00000000..de528bf3
--- /dev/null
+++ b/plugins/afryca.rcp.ase.context/.polyglot.build.properties
@@ -0,0 +1,13 @@
+
+
+ 4.0.0
+
+ afryca.group
+ afryca.plugins
+ 1.0.0-SNAPSHOT
+
+ afryca.rcp.ase.context
+ 1.0.0-SNAPSHOT
+ eclipse-plugin
+
diff --git a/plugins/afryca.rcp/.polyglot.build.properties b/plugins/afryca.rcp/.polyglot.build.properties
new file mode 100644
index 00000000..32e94c21
--- /dev/null
+++ b/plugins/afryca.rcp/.polyglot.build.properties
@@ -0,0 +1,13 @@
+
+
+ 4.0.0
+
+ afryca.group
+ afryca.plugins
+ 1.0.0-SNAPSHOT
+
+ afryca.rcp
+ 1.0.0-SNAPSHOT
+ eclipse-plugin
+
diff --git a/plugins/afryca.simulation.gui/.polyglot.build.properties b/plugins/afryca.simulation.gui/.polyglot.build.properties
new file mode 100644
index 00000000..eb87e4cd
--- /dev/null
+++ b/plugins/afryca.simulation.gui/.polyglot.build.properties
@@ -0,0 +1,13 @@
+
+
+ 4.0.0
+
+ afryca.group
+ afryca.plugins
+ 1.0.0-SNAPSHOT
+
+ afryca.simulation.gui
+ 1.0.0-SNAPSHOT
+ eclipse-plugin
+
diff --git a/plugins/afryca.simulation/.polyglot.build.properties b/plugins/afryca.simulation/.polyglot.build.properties
new file mode 100644
index 00000000..c71be215
--- /dev/null
+++ b/plugins/afryca.simulation/.polyglot.build.properties
@@ -0,0 +1,13 @@
+
+
+ 4.0.0
+
+ afryca.group
+ afryca.plugins
+ 1.0.0-SNAPSHOT
+
+ afryca.simulation
+ 1.0.0-SNAPSHOT
+ eclipse-plugin
+
diff --git a/plugins/afryca.structure.gui/.polyglot.build.properties b/plugins/afryca.structure.gui/.polyglot.build.properties
new file mode 100644
index 00000000..7502ee34
--- /dev/null
+++ b/plugins/afryca.structure.gui/.polyglot.build.properties
@@ -0,0 +1,13 @@
+
+
+ 4.0.0
+
+ afryca.group
+ afryca.plugins
+ 1.0.0-SNAPSHOT
+
+ afryca.structure.gui
+ 1.0.0-SNAPSHOT
+ eclipse-plugin
+
diff --git a/plugins/afryca.structure/.polyglot.build.properties b/plugins/afryca.structure/.polyglot.build.properties
new file mode 100644
index 00000000..5694a745
--- /dev/null
+++ b/plugins/afryca.structure/.polyglot.build.properties
@@ -0,0 +1,13 @@
+
+
+ 4.0.0
+
+ afryca.group
+ afryca.plugins
+ 1.0.0-SNAPSHOT
+
+ afryca.structure
+ 1.0.0-SNAPSHOT
+ eclipse-plugin
+
diff --git a/plugins/afryca.theme/.polyglot.build.properties b/plugins/afryca.theme/.polyglot.build.properties
new file mode 100644
index 00000000..9c295f69
--- /dev/null
+++ b/plugins/afryca.theme/.polyglot.build.properties
@@ -0,0 +1,13 @@
+
+
+ 4.0.0
+
+ afryca.group
+ afryca.plugins
+ 1.0.0-SNAPSHOT
+
+ afryca.theme
+ 1.0.0-SNAPSHOT
+ eclipse-plugin
+
diff --git a/plugins/afryca.twotuple/.polyglot.build.properties b/plugins/afryca.twotuple/.polyglot.build.properties
new file mode 100644
index 00000000..101938cd
--- /dev/null
+++ b/plugins/afryca.twotuple/.polyglot.build.properties
@@ -0,0 +1,13 @@
+
+
+ 4.0.0
+
+ afryca.group
+ afryca.plugins
+ 1.0.0-SNAPSHOT
+
+ afryca.twotuple
+ 1.0.0-SNAPSHOT
+ eclipse-plugin
+
diff --git a/plugins/afryca.valueforcer/.polyglot.build.properties b/plugins/afryca.valueforcer/.polyglot.build.properties
new file mode 100644
index 00000000..ccd6e4ab
--- /dev/null
+++ b/plugins/afryca.valueforcer/.polyglot.build.properties
@@ -0,0 +1,13 @@
+
+
+ 4.0.0
+
+ afryca.group
+ afryca.plugins
+ 1.0.0-SNAPSHOT
+
+ afryca.valueforcer
+ 1.0.0-SNAPSHOT
+ eclipse-plugin
+
diff --git a/plugins/afryca.workspace.gui/.polyglot.build.properties b/plugins/afryca.workspace.gui/.polyglot.build.properties
new file mode 100644
index 00000000..29e3aaa4
--- /dev/null
+++ b/plugins/afryca.workspace.gui/.polyglot.build.properties
@@ -0,0 +1,13 @@
+
+
+ 4.0.0
+
+ afryca.group
+ afryca.plugins
+ 1.0.0-SNAPSHOT
+
+ afryca.workspace.gui
+ 1.0.0-SNAPSHOT
+ eclipse-plugin
+
diff --git a/plugins/afryca.workspace.service.events/.polyglot.build.properties b/plugins/afryca.workspace.service.events/.polyglot.build.properties
new file mode 100644
index 00000000..e5a0b748
--- /dev/null
+++ b/plugins/afryca.workspace.service.events/.polyglot.build.properties
@@ -0,0 +1,13 @@
+
+
+ 4.0.0
+
+ afryca.group
+ afryca.plugins
+ 1.0.0-SNAPSHOT
+
+ afryca.workspace.service.events
+ 1.0.0-SNAPSHOT
+ eclipse-plugin
+
diff --git a/plugins/afryca.workspace/.polyglot.build.properties b/plugins/afryca.workspace/.polyglot.build.properties
new file mode 100644
index 00000000..cd98058c
--- /dev/null
+++ b/plugins/afryca.workspace/.polyglot.build.properties
@@ -0,0 +1,13 @@
+
+
+ 4.0.0
+
+ afryca.group
+ afryca.plugins
+ 1.0.0-SNAPSHOT
+
+ afryca.workspace
+ 1.0.0-SNAPSHOT
+ eclipse-plugin
+
diff --git a/plugins/de.kupzog.ktable/.polyglot.build.properties b/plugins/de.kupzog.ktable/.polyglot.build.properties
new file mode 100644
index 00000000..3198cc90
--- /dev/null
+++ b/plugins/de.kupzog.ktable/.polyglot.build.properties
@@ -0,0 +1,13 @@
+
+
+ 4.0.0
+
+ afryca.group
+ afryca.plugins
+ 1.0.0-SNAPSHOT
+
+ de.kupzog.ktable
+ 1.0.0-SNAPSHOT
+ eclipse-plugin
+
diff --git a/plugins/org.apache.commons.math3/.polyglot.build.properties b/plugins/org.apache.commons.math3/.polyglot.build.properties
new file mode 100644
index 00000000..3b029454
--- /dev/null
+++ b/plugins/org.apache.commons.math3/.polyglot.build.properties
@@ -0,0 +1,13 @@
+
+
+ 4.0.0
+
+ afryca.group
+ afryca.plugins
+ 1.0.0-SNAPSHOT
+
+ org.apache.commons.math3
+ 1.0.0-SNAPSHOT
+ eclipse-plugin
+
diff --git a/plugins/org.codehaus.groovy/.polyglot.build.properties b/plugins/org.codehaus.groovy/.polyglot.build.properties
new file mode 100644
index 00000000..cb0f2e23
--- /dev/null
+++ b/plugins/org.codehaus.groovy/.polyglot.build.properties
@@ -0,0 +1,13 @@
+
+
+ 4.0.0
+
+ afryca.group
+ afryca.plugins
+ 1.0.0-SNAPSHOT
+
+ org.codehaus.groovy
+ 1.0.0-SNAPSHOT
+ eclipse-plugin
+
diff --git a/plugins/org.eclipse.e4.ui.workbench.perspectiveswitcher/.polyglot.build.properties b/plugins/org.eclipse.e4.ui.workbench.perspectiveswitcher/.polyglot.build.properties
new file mode 100644
index 00000000..da648fbd
--- /dev/null
+++ b/plugins/org.eclipse.e4.ui.workbench.perspectiveswitcher/.polyglot.build.properties
@@ -0,0 +1,13 @@
+
+
+ 4.0.0
+
+ afryca.group
+ afryca.plugins
+ 1.0.0-SNAPSHOT
+
+ org.eclipse.e4.ui.workbench.perspectiveswitcher
+ 1.0.0-SNAPSHOT
+ eclipse-plugin
+
diff --git a/plugins/org.eclipse.wb.swt/.polyglot.build.properties b/plugins/org.eclipse.wb.swt/.polyglot.build.properties
new file mode 100644
index 00000000..6fd5b35f
--- /dev/null
+++ b/plugins/org.eclipse.wb.swt/.polyglot.build.properties
@@ -0,0 +1,13 @@
+
+
+ 4.0.0
+
+ afryca.group
+ afryca.plugins
+ 1.0.0-SNAPSHOT
+
+ org.eclipse.wb.swt
+ 1.0.0-SNAPSHOT
+ eclipse-plugin
+
diff --git a/plugins/org.jfree.chart.JFreeChart/.polyglot.build.properties b/plugins/org.jfree.chart.JFreeChart/.polyglot.build.properties
new file mode 100644
index 00000000..4294b79e
--- /dev/null
+++ b/plugins/org.jfree.chart.JFreeChart/.polyglot.build.properties
@@ -0,0 +1,13 @@
+
+
+ 4.0.0
+
+ afryca.group
+ afryca.plugins
+ 1.0.0-SNAPSHOT
+
+ org.jfree.chart.JFreeChart
+ 1.0.0-SNAPSHOT
+ eclipse-plugin
+
diff --git a/plugins/org.jruby/.polyglot.build.properties b/plugins/org.jruby/.polyglot.build.properties
new file mode 100644
index 00000000..0ef68e80
--- /dev/null
+++ b/plugins/org.jruby/.polyglot.build.properties
@@ -0,0 +1,13 @@
+
+
+ 4.0.0
+
+ afryca.group
+ afryca.plugins
+ 1.0.0-SNAPSHOT
+
+ org.jruby
+ 1.0.0-SNAPSHOT
+ eclipse-plugin
+
diff --git a/plugins/org.luaj/.polyglot.build.properties b/plugins/org.luaj/.polyglot.build.properties
new file mode 100644
index 00000000..92cd636b
--- /dev/null
+++ b/plugins/org.luaj/.polyglot.build.properties
@@ -0,0 +1,13 @@
+
+
+ 4.0.0
+
+ afryca.group
+ afryca.plugins
+ 1.0.0-SNAPSHOT
+
+ org.luaj
+ 1.0.0-SNAPSHOT
+ eclipse-plugin
+
diff --git a/plugins/org.swtchart.ext/.polyglot.build.properties b/plugins/org.swtchart.ext/.polyglot.build.properties
new file mode 100644
index 00000000..4e09c2a9
--- /dev/null
+++ b/plugins/org.swtchart.ext/.polyglot.build.properties
@@ -0,0 +1,13 @@
+
+
+ 4.0.0
+
+ afryca.group
+ afryca.plugins
+ 1.0.0-SNAPSHOT
+
+ org.swtchart.ext
+ 1.0.0-SNAPSHOT
+ eclipse-plugin
+
diff --git a/plugins/org.swtchart/.polyglot.build.properties b/plugins/org.swtchart/.polyglot.build.properties
new file mode 100644
index 00000000..8dcd8baa
--- /dev/null
+++ b/plugins/org.swtchart/.polyglot.build.properties
@@ -0,0 +1,13 @@
+
+
+ 4.0.0
+
+ afryca.group
+ afryca.plugins
+ 1.0.0-SNAPSHOT
+
+ org.swtchart
+ 1.0.0-SNAPSHOT
+ eclipse-plugin
+
diff --git a/plugins/scala/.polyglot.build.properties b/plugins/scala/.polyglot.build.properties
new file mode 100644
index 00000000..38c2b23d
--- /dev/null
+++ b/plugins/scala/.polyglot.build.properties
@@ -0,0 +1,13 @@
+
+
+ 4.0.0
+
+ afryca.group
+ afryca.plugins
+ 1.0.0-SNAPSHOT
+
+ scala
+ 1.0.0-SNAPSHOT
+ eclipse-plugin
+
diff --git a/releng/afryca.application.product/target/products/afryca/linux/gtk/x86_64/afryca b/releng/afryca.application.product/target/products/afryca/linux/gtk/x86_64/afryca
old mode 100644
new mode 100755