From 024661032f11eeaae56bfa4e4ed18e34b32d0de9 Mon Sep 17 00:00:00 2001 From: Chenx221 Date: Fri, 2 Jun 2023 12:41:45 +0800 Subject: [PATCH] Init project --- project/.gitignore | 38 +++++++++++++++++++++++++++++++++++++ project/.idea/.gitignore | 8 ++++++++ project/.idea/encodings.xml | 7 +++++++ project/.idea/misc.xml | 14 ++++++++++++++ project/.idea/vcs.xml | 6 ++++++ project/pom.xml | 17 +++++++++++++++++ 6 files changed, 90 insertions(+) create mode 100644 project/.gitignore create mode 100644 project/.idea/.gitignore create mode 100644 project/.idea/encodings.xml create mode 100644 project/.idea/misc.xml create mode 100644 project/.idea/vcs.xml create mode 100644 project/pom.xml diff --git a/project/.gitignore b/project/.gitignore new file mode 100644 index 0000000..5ff6309 --- /dev/null +++ b/project/.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/project/.idea/.gitignore b/project/.idea/.gitignore new file mode 100644 index 0000000..35410ca --- /dev/null +++ b/project/.idea/.gitignore @@ -0,0 +1,8 @@ +# 默认忽略的文件 +/shelf/ +/workspace.xml +# 基于编辑器的 HTTP 客户端请求 +/httpRequests/ +# Datasource local storage ignored files +/dataSources/ +/dataSources.local.xml diff --git a/project/.idea/encodings.xml b/project/.idea/encodings.xml new file mode 100644 index 0000000..aa00ffa --- /dev/null +++ b/project/.idea/encodings.xml @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/project/.idea/misc.xml b/project/.idea/misc.xml new file mode 100644 index 0000000..463551f --- /dev/null +++ b/project/.idea/misc.xml @@ -0,0 +1,14 @@ + + + + + + + + + + \ No newline at end of file diff --git a/project/.idea/vcs.xml b/project/.idea/vcs.xml new file mode 100644 index 0000000..6c0b863 --- /dev/null +++ b/project/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/project/pom.xml b/project/pom.xml new file mode 100644 index 0000000..c8ccd99 --- /dev/null +++ b/project/pom.xml @@ -0,0 +1,17 @@ + + + 4.0.0 + + cyou.chenx221 + project + 1.0-SNAPSHOT + + + 17 + 17 + UTF-8 + + + \ No newline at end of file