# HG changeset patch # User Dirk Olmes # Date 1410168856 -7200 # Node ID 9c4944f26b0018418a7c22f67cfb33855a0ba55b # Parent 96084c11584a8703ad1e64f8bb71b4c8a393c006 new blog post about the workspacemechanic plugin diff -r 96084c11584a -r 9c4944f26b00 content/Eclipse/workspacemechanic.md --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/content/Eclipse/workspacemechanic.md Mon Sep 08 11:34:16 2014 +0200 @@ -0,0 +1,24 @@ +Title: Automating Eclipse Workspace Settings +Date: 2014-09-08 +Lang: en + +Working in a team of developers sometimes requires you to unify certain settings in the Eclipse workspace. We used to solve this manually by documenting the required settings on a wiki page. This woks only so good because everyone (including me) tends to forget about those settings and when crating a new workspace all is mixed up. + +Since manually managing the workspace settings does not quite work it would be good to automate the preference management. The [workspacemechanic plugin](https://code.google.com/a/eclipselabs.org/p/workspacemechanic/) comes in very handy here. It works quite simple: you install the plugin, define the settings you want to unify across all workspaces and distribute those rules. The plugin then checks your current preference settings and will allow you to fix anything that does not match the required setup. + +A rather undocumented feature of the plugin is how to distribute rules. Just put all rules on a HTTP server. Then, create a json document that references all these rules in the same directory as the rules files. Use this snippet as a template: + + { + type : 'com.google.eclipse.mechanic.UriTaskProviderModel', + metadata : { + name : 'Workspace Settings', + description : 'Sample Mandatory Workspace Settings', + contact: 'my@email.com' + }, + tasks : [ + 'MyFirstRule.epf', + 'MySecondRule.epf', + ] + } + +As the last step, configure the full URL to the json file as task source. The plugin will load these rules and apply them.