From 64cdf57209fadcd87c2574df4bf6d8293b90098a Mon Sep 17 00:00:00 2001 From: loic Date: Wed, 21 Sep 2016 08:45:12 +0200 Subject: [PATCH] Initial commit --- .idea/compiler.xml | 32 +++++ .idea/copyright/profiles_settings.xml | 3 + .idea/inspectionProfiles/Project_Default.xml | 10 ++ .../inspectionProfiles/profiles_settings.xml | 7 + .idea/misc.xml | 121 ++++++++++++++++++ .idea/modules.xml | 8 ++ 2048.iml | 15 +++ pom.xml | 12 ++ src/main/java/app/Application.java | 14 ++ 9 files changed, 222 insertions(+) create mode 100644 .idea/compiler.xml create mode 100644 .idea/copyright/profiles_settings.xml create mode 100644 .idea/inspectionProfiles/Project_Default.xml create mode 100644 .idea/inspectionProfiles/profiles_settings.xml create mode 100644 .idea/misc.xml create mode 100644 .idea/modules.xml create mode 100644 2048.iml create mode 100644 pom.xml create mode 100644 src/main/java/app/Application.java diff --git a/.idea/compiler.xml b/.idea/compiler.xml new file mode 100644 index 0000000..9565642 --- /dev/null +++ b/.idea/compiler.xml @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/copyright/profiles_settings.xml b/.idea/copyright/profiles_settings.xml new file mode 100644 index 0000000..e7bedf3 --- /dev/null +++ b/.idea/copyright/profiles_settings.xml @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/.idea/inspectionProfiles/Project_Default.xml b/.idea/inspectionProfiles/Project_Default.xml new file mode 100644 index 0000000..d87552a --- /dev/null +++ b/.idea/inspectionProfiles/Project_Default.xml @@ -0,0 +1,10 @@ + + + + \ No newline at end of file diff --git a/.idea/inspectionProfiles/profiles_settings.xml b/.idea/inspectionProfiles/profiles_settings.xml new file mode 100644 index 0000000..3b31283 --- /dev/null +++ b/.idea/inspectionProfiles/profiles_settings.xml @@ -0,0 +1,7 @@ + + + + \ No newline at end of file diff --git a/.idea/misc.xml b/.idea/misc.xml new file mode 100644 index 0000000..cd1cc97 --- /dev/null +++ b/.idea/misc.xml @@ -0,0 +1,121 @@ + + + + + + + + + + + + + + + + + Android > Lint > Correctness + + + Android > Lint > Security + + + Android Lint for Kotlin + + + CFML + + + GPath inspectionsGroovy + + + GeneralJavaScript + + + Google Web Toolkit issues + + + Groovy + + + JPA issues + + + JSP Inspections + + + Java + + + Java EE issues + + + JavaScript + + + Probable bugsJava + + + RESTful Web Service + + + Security issuesJava + + + Spring + + + Spring MVCSpring + + + WebSocket issues + + + XML + + + XPath + + + + + JpaQlInspection + + + + + + + + + + + + + + + + + + + + + + + 1.8 + + + + + + + + \ No newline at end of file diff --git a/.idea/modules.xml b/.idea/modules.xml new file mode 100644 index 0000000..9f367fb --- /dev/null +++ b/.idea/modules.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/2048.iml b/2048.iml new file mode 100644 index 0000000..73f608b --- /dev/null +++ b/2048.iml @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/pom.xml b/pom.xml new file mode 100644 index 0000000..4a01981 --- /dev/null +++ b/pom.xml @@ -0,0 +1,12 @@ + + + 4.0.0 + + manzerbredes + 2048 + 1.0-SNAPSHOT + + + diff --git a/src/main/java/app/Application.java b/src/main/java/app/Application.java new file mode 100644 index 0000000..7034373 --- /dev/null +++ b/src/main/java/app/Application.java @@ -0,0 +1,14 @@ +package app; + +/** + * Created by loic on 21/09/16. + */ +public class Application { + + + + + public static void main(String[] args){ + System.out.println("Test"); + } +}