Index: xdocs/goals.xml
===================================================================
--- xdocs/goals.xml	(Revision 383362)
+++ xdocs/goals.xml	(Arbeitskopie)
@@ -32,11 +32,15 @@
       <goal>
         <name>jalopy:format</name>
         <description>Format all sources with code convention conformance</description>
-      </goal>
+      </goal>      
       <goal>
         <name>jalopy:taskdef</name>
         <description>Define the jalopy task to Ant and Jelly</description>
       </goal>
+      <goal>
+        <name>jalopy:settings</name>
+        <description>Open the jalopy settings dialog</description>
+      </goal>
     </goals>
   </body>
 </document>
\ No newline at end of file
Index: project.xml
===================================================================
--- project.xml	(Revision 383362)
+++ project.xml	(Arbeitskopie)
@@ -100,6 +100,14 @@
       </properties>
     </dependency>
     <dependency>
+      <groupId>jalopy</groupId>
+      <artifactId>jalopy-console</artifactId>
+      <version>1.0.2</version>
+      <properties>
+        <classloader>root</classloader>
+      </properties>
+    </dependency>    
+    <dependency>
       <groupId>aelfred</groupId>
       <artifactId>aelfred</artifactId>
       <version>1.2</version>
Index: plugin.jelly
===================================================================
--- plugin.jelly	(Revision 383362)
+++ plugin.jelly	(Arbeitskopie)
@@ -74,5 +74,17 @@
       </j:if>
     </ant:jalopy>
   </goal>
-
+  
+  <goal name="jalopy:settings"
+	description="Call the jalopy settings dialog">
+    <ant:java classname="de.hunsicker.jalopy.swing.SettingsDialog" fork="true">
+      <ant:classpath>
+        <ant:pathelement path="${plugin.getDependencyPath('jalopy')}"/>
+        <ant:pathelement path="${plugin.getDependencyPath('aelfred')}"/>
+        <ant:pathelement path="${plugin.getDependencyPath('jdom')}"/>
+        <ant:pathelement path="${plugin.getDependencyPath('log4j')}"/>
+        <ant:pathelement path="${plugin.getDependencyPath('oro')}"/>
+      </ant:classpath>    
+    </ant:java>
+  </goal>
 </project>

