From: <mar...@us...> - 2017-02-02 06:59:01
|
Revision: 20055 http://sourceforge.net/p/gate/code/20055 Author: markagreenwood Date: 2017-02-02 06:58:58 +0000 (Thu, 02 Feb 2017) Log Message: ----------- an empty tool where ideas for how to automagically move apps onto the new plugins can go Added Paths: ----------- gate/branches/sawdust2/plugins/Developer_Tools/src/main/java/gate/creole/MoveToMaven.java Added: gate/branches/sawdust2/plugins/Developer_Tools/src/main/java/gate/creole/MoveToMaven.java =================================================================== --- gate/branches/sawdust2/plugins/Developer_Tools/src/main/java/gate/creole/MoveToMaven.java (rev 0) +++ gate/branches/sawdust2/plugins/Developer_Tools/src/main/java/gate/creole/MoveToMaven.java 2017-02-02 06:58:58 UTC (rev 20055) @@ -0,0 +1,31 @@ +/* + * MoveToMaven.java + * + * Copyright (c) 2017, The University of Sheffield. See the file + * COPYRIGHT.txt in the software or at http://gate.ac.uk/gate/COPYRIGHT.txt + * + * This file is part of GATE (see http://gate.ac.uk/), and is free + * software, licenced under the GNU Library General Public License, + * Version 3, June 2007 (in the distribution as file licence.html, + * and also available at http://gate.ac.uk/gate/licence.html). + * + * Mark A. Greenwood, 2nd February 2017 + */ +package gate.creole; + +import java.util.ArrayList; +import java.util.List; +import javax.swing.Action; + +import gate.creole.metadata.AutoInstance; +import gate.creole.metadata.CreoleResource; +import gate.gui.ActionsPublisher; + +@CreoleResource(tool = true, isPrivate = true, autoinstances = @AutoInstance, name = "Upgrade App to new Plugin format", comment = "Upgrade the plugins used within an app to the new Maven based format") +public class MoveToMaven extends AbstractResource implements ActionsPublisher { + + @Override + public List<Action> getActions() { + return null; + } +} This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |