diff --git a/.idea/misc.xml b/.idea/misc.xml new file mode 100644 index 0000000000000000000000000000000000000000..d4b854b8d4fa7be1ca526617ed1590623b835f8c --- /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 0000000000000000000000000000000000000000..0c9ff983b2b8e239426cd778ebb01b38451ee950 --- /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 0000000000000000000000000000000000000000..35eb1ddfbbc029bcab630581847471d7f238ec53 --- /dev/null +++ b/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/.idea/web-framework1.iml b/.idea/web-framework1.iml new file mode 100644 index 0000000000000000000000000000000000000000..d6ebd4805981b8400db3e3291c74a743fef9a824 --- /dev/null +++ b/.idea/web-framework1.iml @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/.idea/workspace.xml b/.idea/workspace.xml new file mode 100644 index 0000000000000000000000000000000000000000..b27bfe218f2245de0b6b840f3df5e55fe588fc48 --- /dev/null +++ b/.idea/workspace.xml @@ -0,0 +1,145 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1713234585260 + + + 1713234643599 + + + 1713235162141 + + + 1713235240870 + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/README.en.md b/README.en.md deleted file mode 100644 index bd2cb730acb8953f053bb4efffb6c69acc969952..0000000000000000000000000000000000000000 --- a/README.en.md +++ /dev/null @@ -1,36 +0,0 @@ -# 软件开发与管理 - -#### Description -{**When you're done, you can delete the content in this README and update the file with details for others getting started with your repository**} - -#### Software Architecture -Software architecture description - -#### Installation - -1. xxxx -2. xxxx -3. xxxx - -#### Instructions - -1. xxxx -2. xxxx -3. xxxx - -#### Contribution - -1. Fork the repository -2. Create Feat_xxx branch -3. Commit your code -4. Create Pull Request - - -#### Gitee Feature - -1. You can use Readme\_XXX.md to support different languages, such as Readme\_en.md, Readme\_zh.md -2. Gitee blog [blog.gitee.com](https://blog.gitee.com) -3. Explore open source project [https://gitee.com/explore](https://gitee.com/explore) -4. The most valuable open source project [GVP](https://gitee.com/gvp) -5. The manual of Gitee [https://gitee.com/help](https://gitee.com/help) -6. The most popular members [https://gitee.com/gitee-stars/](https://gitee.com/gitee-stars/) diff --git a/pom.xml b/pom.xml new file mode 100644 index 0000000000000000000000000000000000000000..7139e3388f74449b07c3e166dbe1a5f74d194f72 --- /dev/null +++ b/pom.xml @@ -0,0 +1,28 @@ + + + 4.0.0 + + org.example + homework01 + 1.0-SNAPSHOT + + + 8 + 8 + + + + + + + junit + junit + 4.12 + test + + + + + \ No newline at end of file diff --git a/src/main/java/work1.java b/src/main/java/work1.java new file mode 100644 index 0000000000000000000000000000000000000000..c4c9f5f7b623ed80d531dc3c3509c61a90c99321 --- /dev/null +++ b/src/main/java/work1.java @@ -0,0 +1,12 @@ +public class work1 { + public void name(String n) { + System.out.println(n); + } + + public static void main(String[] args) { + System.out.println("hello"); + System.out.println("cherry 1"); + System.out.println("cherry 2"); + System.out.println("merge"); + } +} diff --git a/src/test/java/testWork1.java b/src/test/java/testWork1.java new file mode 100644 index 0000000000000000000000000000000000000000..cf0e524031073dcd4d129131e6093f7dc347f32b --- /dev/null +++ b/src/test/java/testWork1.java @@ -0,0 +1,9 @@ +import org.junit.Test; + +public class testWork1 { + @Test + public void testName() { + work1 w1 = new work1(); + w1.name("苏博文"); + } +}