File tree 2 files changed +21
-0
lines changed
2 files changed +21
-0
lines changed Original file line number Diff line number Diff line change @@ -126,6 +126,13 @@ install_eclipse_import_projects () {
126
126
wget -P eclipse/plugins -qi $IMPORT_PROJECTS_JAR
127
127
}
128
128
129
+ # Install custom global configuration
130
+ install_global_eclipse_settings () {
131
+ log " Install global Eclipse settings."
132
+ cp ./resources/emoflon.properties ./eclipse
133
+ echo " -Declipse.pluginCustomization=emoflon.properties" >> ./eclipse/eclipse.ini
134
+ }
135
+
129
136
130
137
#
131
138
# Script
@@ -165,6 +172,9 @@ elif [[ "$OS" = "windows" ]]; then
165
172
unzip -qq -o eclipse-modeling-$VERSION -R-win32-x86_64.zip
166
173
fi
167
174
175
+ # Install global Eclipse settings from config file
176
+ install_global_eclipse_settings
177
+
168
178
log " Install Eclipse plug-ins."
169
179
for p in ${ORDER[@]} ; do
170
180
# Check if eMoflon packages must be skipped (for dev builds).
Original file line number Diff line number Diff line change
1
+ #
2
+ # This file can be used to set global settings for the eMoflon-Eclipses.
3
+ #
4
+ # Set default encoding to UTF-8
5
+ org.eclipse.core.resources/encoding =UTF-8
6
+ #
7
+ # Set default Git location to workspace related path
8
+ org.eclipse.egit.core/core_defaultRepositoryDir =${workspace_loc}/git
9
+ #
10
+ # Disable console log output limitation
11
+ org.eclipse.debug.ui/Console.limitConsoleOutput =false
You can’t perform that action at this time.
0 commit comments