Add a 'plugins' source set to the game module

Creates a new sourceset for server plugins to support IDE integration
with plugin code.  Additionally moves plugins to game/data/plugins and
contains some gradle related fixes (remove java plugin from root project
and fix exec task dependency).
This commit is contained in:
Gary Tierney
2017-05-27 18:33:17 +01:00
parent 3403c0a2d1
commit 79f79cd15c
8 changed files with 131 additions and 15 deletions
@@ -72,7 +72,7 @@ public final class PluginManager {
* @throws SAXException If a SAX error occurs.
*/
private Collection<PluginMetaData> findPlugins() throws IOException, SAXException {
return findPlugins(new File("./data/plugins"));
return findPlugins(new File("./game/data/plugins"));
}
/**