Convert to Maven Project

This commit is contained in:
Alexis Delhaie
2020-10-21 21:12:33 +02:00
parent 4a327bb683
commit 6293d4e52c
15 changed files with 36 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
package ovh.alexisdelhaie.endpoint;
import com.formdev.flatlaf.FlatIntelliJLaf;
import javax.swing.*;
public class Application {
public static void main(String[] args) throws UnsupportedLookAndFeelException {
UIManager.setLookAndFeel(new FlatIntelliJLaf());
MainWindow dialog = new MainWindow();
dialog.pack();
dialog.setTitle("EndPoint");
dialog.setVisible(true);
dialog.centerFrame();
}
}