diff --git a/Client_Api_Rest/.gitignore b/Client_Api_Rest/.gitignore new file mode 100644 index 0000000..5ff6309 --- /dev/null +++ b/Client_Api_Rest/.gitignore @@ -0,0 +1,38 @@ +target/ +!.mvn/wrapper/maven-wrapper.jar +!**/src/main/**/target/ +!**/src/test/**/target/ + +### IntelliJ IDEA ### +.idea/modules.xml +.idea/jarRepositories.xml +.idea/compiler.xml +.idea/libraries/ +*.iws +*.iml +*.ipr + +### Eclipse ### +.apt_generated +.classpath +.factorypath +.project +.settings +.springBeans +.sts4-cache + +### NetBeans ### +/nbproject/private/ +/nbbuild/ +/dist/ +/nbdist/ +/.nb-gradle/ +build/ +!**/src/main/**/build/ +!**/src/test/**/build/ + +### VS Code ### +.vscode/ + +### Mac OS ### +.DS_Store \ No newline at end of file diff --git a/Client_Api_Rest/.idea/.gitignore b/Client_Api_Rest/.idea/.gitignore new file mode 100644 index 0000000..13566b8 --- /dev/null +++ b/Client_Api_Rest/.idea/.gitignore @@ -0,0 +1,8 @@ +# Default ignored files +/shelf/ +/workspace.xml +# Editor-based HTTP Client requests +/httpRequests/ +# Datasource local storage ignored files +/dataSources/ +/dataSources.local.xml diff --git a/Client_Api_Rest/.idea/encodings.xml b/Client_Api_Rest/.idea/encodings.xml new file mode 100644 index 0000000..aa00ffa --- /dev/null +++ b/Client_Api_Rest/.idea/encodings.xml @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/Client_Api_Rest/.idea/misc.xml b/Client_Api_Rest/.idea/misc.xml new file mode 100644 index 0000000..ecfa09c --- /dev/null +++ b/Client_Api_Rest/.idea/misc.xml @@ -0,0 +1,14 @@ + + + + + + + + + + \ No newline at end of file diff --git a/Client_Api_Rest/.idea/vcs.xml b/Client_Api_Rest/.idea/vcs.xml new file mode 100644 index 0000000..6c0b863 --- /dev/null +++ b/Client_Api_Rest/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/Client_Api_Rest/pom.xml b/Client_Api_Rest/pom.xml new file mode 100644 index 0000000..aebc622 --- /dev/null +++ b/Client_Api_Rest/pom.xml @@ -0,0 +1,17 @@ + + + 4.0.0 + + org.example + Client_Api_Rest + 1.0-SNAPSHOT + + + 17 + 17 + UTF-8 + + + \ No newline at end of file diff --git a/Client_Api_Rest/src/main/java/org/example/Main.java b/Client_Api_Rest/src/main/java/org/example/Main.java new file mode 100644 index 0000000..3e59c38 --- /dev/null +++ b/Client_Api_Rest/src/main/java/org/example/Main.java @@ -0,0 +1,5 @@ +public class Main { + public static void main(String[] args) { + System.out.println("Hello world!"); + } +} \ No newline at end of file