mirror of
https://github.com/haveno-dex/haveno.git
synced 2025-04-19 15:26:03 -04:00
Rename io.bitsquare.{BitsquareUI=>app.gui.Main}
This commit is contained in:
parent
865cf39e64
commit
a969b415b4
@ -17,7 +17,7 @@ sourceCompatibility = 1.8
|
||||
|
||||
sourceSets.main.resources.srcDirs += 'src/main/java'
|
||||
|
||||
mainClassName = "io.bitsquare.BitsquareUI"
|
||||
mainClassName = "io.bitsquare.app.gui.Main"
|
||||
|
||||
run {
|
||||
if ( project.hasProperty('args') ) {
|
||||
|
@ -1 +1 @@
|
||||
C:\Progra~1\Java\jdk1.8.0_20\bin\javapackager.exe -deploy -BappVersion=0.1.0 -native exe -name Bitsquare -title Bitsquare -vendor Bitsquare -outdir build -appclass io.bitsquare.BitsquareUI -srcfiles .\build\libs\bitsquare-0.1.0-SNAPSHOT-all.jar -outfile Bitsquare -Bruntime="c:\Program Files\Java\jdk1.8.0_20\jre"
|
||||
C:\Progra~1\Java\jdk1.8.0_20\bin\javapackager.exe -deploy -BappVersion=0.1.0 -native exe -name Bitsquare -title Bitsquare -vendor Bitsquare -outdir build -appclass io.bitsquare.app.gui.Main -srcfiles .\build\libs\bitsquare-0.1.0-SNAPSHOT-all.jar -outfile Bitsquare -Bruntime="c:\Program Files\Java\jdk1.8.0_20\jre"
|
||||
|
@ -15,7 +15,7 @@
|
||||
* along with Bitsquare. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
package io.bitsquare;
|
||||
package io.bitsquare.app.gui;
|
||||
|
||||
import io.bitsquare.di.BitsquareModule;
|
||||
import io.bitsquare.gui.Navigation;
|
||||
@ -47,8 +47,8 @@ import org.slf4j.LoggerFactory;
|
||||
import lighthouse.files.AppDirectory;
|
||||
import net.sourceforge.argparse4j.inf.Namespace;
|
||||
|
||||
public class BitsquareUI extends Application {
|
||||
private static final Logger log = LoggerFactory.getLogger(BitsquareUI.class);
|
||||
public class Main extends Application {
|
||||
private static final Logger log = LoggerFactory.getLogger(Main.class);
|
||||
private static String appName = "Bitsquare";
|
||||
|
||||
private BitsquareModule bitsquareModule;
|
||||
@ -62,7 +62,7 @@ public class BitsquareUI extends Application {
|
||||
appName = appName + "-" + namespace.getString(BitsquareArgumentParser.NAME_FLAG);
|
||||
}
|
||||
|
||||
Application.launch(BitsquareUI.class, args);
|
||||
Application.launch(Main.class, args);
|
||||
}
|
||||
|
||||
@Override
|
Loading…
x
Reference in New Issue
Block a user