From 29a05c05b0c7e2dda6cb9c264c6f5325b35b06e6 Mon Sep 17 00:00:00 2001 From: Dmitry Isaenko Date: Wed, 12 Feb 2020 01:40:37 +0300 Subject: [PATCH] +Maven --- .idea/.gitignore | 2 + .idea/compiler.xml | 16 +++++ .idea/encodings.xml | 7 +++ .idea/misc.xml | 9 ++- XMLtoWeb.iml | 12 ++-- pom.xml | 77 +++++++++++++++++++++++++ src/{ => main/java}/general/AppGui.form | 0 src/{ => main/java}/general/AppGui.java | 3 +- 8 files changed, 120 insertions(+), 6 deletions(-) create mode 100644 .idea/.gitignore create mode 100644 .idea/compiler.xml create mode 100644 .idea/encodings.xml create mode 100644 pom.xml rename src/{ => main/java}/general/AppGui.form (100%) rename src/{ => main/java}/general/AppGui.java (96%) diff --git a/.idea/.gitignore b/.idea/.gitignore new file mode 100644 index 0000000..5c98b42 --- /dev/null +++ b/.idea/.gitignore @@ -0,0 +1,2 @@ +# Default ignored files +/workspace.xml \ No newline at end of file diff --git a/.idea/compiler.xml b/.idea/compiler.xml new file mode 100644 index 0000000..c30c57a --- /dev/null +++ b/.idea/compiler.xml @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/encodings.xml b/.idea/encodings.xml new file mode 100644 index 0000000..aa00ffa --- /dev/null +++ b/.idea/encodings.xml @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/.idea/misc.xml b/.idea/misc.xml index 2c55e21..a56eaeb 100644 --- a/.idea/misc.xml +++ b/.idea/misc.xml @@ -38,7 +38,14 @@ - + + + + \ No newline at end of file diff --git a/XMLtoWeb.iml b/XMLtoWeb.iml index c90834f..c035f0b 100644 --- a/XMLtoWeb.iml +++ b/XMLtoWeb.iml @@ -1,9 +1,13 @@ - - - + + + + - + + + + diff --git a/pom.xml b/pom.xml new file mode 100644 index 0000000..096580e --- /dev/null +++ b/pom.xml @@ -0,0 +1,77 @@ + + + 4.0.0 + + loper + XMLtoWeb + + XMLtoWeb + 1.0-SNAPSHOT + + https://github.com/developersu/XMLtoWeb/ + + NS Atmosphere dongle flash tool + + 2017 + + Dmitry Isaenko + https://developersu.blogspot.com/ + + + + + GNU General Public License v3 + http://www.gnu.org/licenses/gpl.txt + manual + + + + + + developer.su + Dmitry Isaenko + + Developer + + +3 + https://developersu.blogspot.com/ + + + + + UTF-8 + + + + GitHub + https://github.com/developer_su/${project.artifactId}/issues + + + + + + org.apache.maven.plugins + maven-compiler-plugin + 3.1 + + 1.8 + 1.8 + + + + + maven-jar-plugin + 2.4 + + + + general.AppGui + + + + + + + \ No newline at end of file diff --git a/src/general/AppGui.form b/src/main/java/general/AppGui.form similarity index 100% rename from src/general/AppGui.form rename to src/main/java/general/AppGui.form diff --git a/src/general/AppGui.java b/src/main/java/general/AppGui.java similarity index 96% rename from src/general/AppGui.java rename to src/main/java/general/AppGui.java index 168beeb..0c23351 100644 --- a/src/general/AppGui.java +++ b/src/main/java/general/AppGui.java @@ -43,7 +43,8 @@ public class AppGui { public static void main(String[] args){ JFrame frame = new JFrame("XMLtoWeb"); - frame.setContentPane(new AppGui().myPanel); + AppGui appGui = new AppGui(); + frame.setContentPane(appGui.myPanel); frame.pack(); frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); frame.setMinimumSize(new Dimension(1024, 480));