Rename io.bitsquare.{BitsquareUI=>app.gui.Main}

This commit is contained in:
Chris Beams 2014-11-04 20:14:55 +01:00
parent 865cf39e64
commit a969b415b4
No known key found for this signature in database
GPG Key ID: 3D214F8F5BC5ED73
3 changed files with 6 additions and 6 deletions

View File

@ -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') ) {

View File

@ -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"

View File

@ -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