diff options
author | Florian Zschocke <florian.zschocke@devolo.de> | 2019-11-08 11:27:51 +0100 |
---|---|---|
committer | Florian Zschocke <florian.zschocke@devolo.de> | 2019-11-08 11:27:51 +0100 |
commit | b557eced9e6030c5b1414c18ed2caade6a77d855 (patch) | |
tree | 46f67283e708cb645e7e08cd961524e562d1f520 /build.xml | |
parent | 4a58ee79389e4fa0c087dba3675b3a9a552024c3 (diff) | |
download | gitblit-b557eced9e6030c5b1414c18ed2caade6a77d855.tar.gz gitblit-b557eced9e6030c5b1414c18ed2caade6a77d855.zip |
Remove Launcher from Manager and Federation Client.
They will need to be called with the classpath and main class now,
instead of simply using the Jar.
Diffstat (limited to 'build.xml')
-rw-r--r-- | build.xml | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -308,7 +308,6 @@ excludes="**/.class, **/*.java, **/Thumbs.db, **/*.mkd, **/*.md, **/*.css, com/gitblit/wicket/**">
<mainclass name="com.gitblit.FederationClient" />
<class name="com.gitblit.Keys" />
- <launcher paths="ext" />
<resource file="${project.compileOutputDirectory}/log4j.properties" />
</mx:genjar>
@@ -379,7 +378,7 @@ </fileset>
</resource>
- <mainclass name="com.gitblit.client.GitblitManagerLauncher" />
+ <mainclass name="com.gitblit.client.GitblitManager" />
<class name="com.gitblit.Keys" />
<class name="com.gitblit.client.GitblitClient" />
<class name="com.gitblit.models.FederationModel" />
|