From 060453c1ef69759c55451a461bb50b09bbd06487 Mon Sep 17 00:00:00 2001 From: shangguilong <1751220476@qq.com> Date: Mon, 15 Apr 2024 23:41:56 +0800 Subject: [PATCH 1/3] first --- .idea/.gitignore | 8 ++++++++ .idea/misc.xml | 9 +++++++++ .idea/modules.xml | 8 ++++++++ .idea/vcs.xml | 6 ++++++ .idea/web-framework.iml | 9 +++++++++ 5 files changed, 40 insertions(+) create mode 100644 .idea/.gitignore create mode 100644 .idea/misc.xml create mode 100644 .idea/modules.xml create mode 100644 .idea/vcs.xml create mode 100644 .idea/web-framework.iml diff --git a/.idea/.gitignore b/.idea/.gitignore new file mode 100644 index 0000000..73f69e0 --- /dev/null +++ b/.idea/.gitignore @@ -0,0 +1,8 @@ +# Default ignored files +/shelf/ +/workspace.xml +# Datasource local storage ignored files +/dataSources/ +/dataSources.local.xml +# Editor-based HTTP Client requests +/httpRequests/ diff --git a/.idea/misc.xml b/.idea/misc.xml new file mode 100644 index 0000000..d4b854b --- /dev/null +++ b/.idea/misc.xml @@ -0,0 +1,9 @@ + + + + + + + + \ No newline at end of file diff --git a/.idea/modules.xml b/.idea/modules.xml new file mode 100644 index 0000000..8e99870 --- /dev/null +++ b/.idea/modules.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml new file mode 100644 index 0000000..35eb1dd --- /dev/null +++ b/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/.idea/web-framework.iml b/.idea/web-framework.iml new file mode 100644 index 0000000..d6ebd48 --- /dev/null +++ b/.idea/web-framework.iml @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file -- Gitee From 3928d68f7d24ee77e508e3eeabd3f4c05019e609 Mon Sep 17 00:00:00 2001 From: shangguilong <1751220476@qq.com> Date: Mon, 15 Apr 2024 23:45:13 +0800 Subject: [PATCH 2/3] first --- .idea/compiler.xml | 16 ++++++++++++++++ .idea/jarRepositories.xml | 20 ++++++++++++++++++++ .idea/misc.xml | 7 +++++++ .idea/modules.xml | 1 + untitled/pom.xml | 12 ++++++++++++ untitled/untitled.iml | 15 +++++++++++++++ 6 files changed, 71 insertions(+) create mode 100644 .idea/compiler.xml create mode 100644 .idea/jarRepositories.xml create mode 100644 untitled/pom.xml create mode 100644 untitled/untitled.iml diff --git a/.idea/compiler.xml b/.idea/compiler.xml new file mode 100644 index 0000000..ae34903 --- /dev/null +++ b/.idea/compiler.xml @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/jarRepositories.xml b/.idea/jarRepositories.xml new file mode 100644 index 0000000..712ab9d --- /dev/null +++ b/.idea/jarRepositories.xml @@ -0,0 +1,20 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/misc.xml b/.idea/misc.xml index d4b854b..99d69dd 100644 --- a/.idea/misc.xml +++ b/.idea/misc.xml @@ -3,6 +3,13 @@ + + + diff --git a/.idea/modules.xml b/.idea/modules.xml index 8e99870..aa6cc6b 100644 --- a/.idea/modules.xml +++ b/.idea/modules.xml @@ -2,6 +2,7 @@ + diff --git a/untitled/pom.xml b/untitled/pom.xml new file mode 100644 index 0000000..980af15 --- /dev/null +++ b/untitled/pom.xml @@ -0,0 +1,12 @@ + + + 4.0.0 + + org.example + untitled + 1.0-SNAPSHOT + + + \ No newline at end of file diff --git a/untitled/untitled.iml b/untitled/untitled.iml new file mode 100644 index 0000000..c035f0b --- /dev/null +++ b/untitled/untitled.iml @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + \ No newline at end of file -- Gitee From a1de26911e59d652ac0d5fadf2869a88d92f56cc Mon Sep 17 00:00:00 2001 From: shangguilong <1751220476@qq.com> Date: Tue, 16 Apr 2024 00:10:55 +0800 Subject: [PATCH 3/3] first --- untitled/src/main/java/one.java | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 untitled/src/main/java/one.java diff --git a/untitled/src/main/java/one.java b/untitled/src/main/java/one.java new file mode 100644 index 0000000..68df598 --- /dev/null +++ b/untitled/src/main/java/one.java @@ -0,0 +1,2 @@ +public class one { +} -- Gitee