From c7d3fb7df9daa80e1ef01c87e5559a738f2bfa85 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=BD=A9=E8=BE=95=E9=BE=99=E5=84=BF?= Date: Tue, 26 Jul 2022 14:58:21 +0800 Subject: [PATCH] =?UTF-8?q?=E5=88=9D=E5=A7=8B=E5=8C=96=E9=A1=B9=E7=9B=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitignore | 4 ++ bw/.gitignore | 39 +++++++++++++++++++ bw/pom.xml | 41 ++++++++++++++++++++ bw/src/main/resources/application.properties | 0 4 files changed, 84 insertions(+) create mode 100644 .gitignore create mode 100644 bw/.gitignore create mode 100644 bw/pom.xml create mode 100644 bw/src/main/resources/application.properties diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..cda2da1 --- /dev/null +++ b/.gitignore @@ -0,0 +1,4 @@ +/.idea/ +/nowcoder.iml +/src/test/ +/target/ diff --git a/bw/.gitignore b/bw/.gitignore new file mode 100644 index 0000000..bdf57ce --- /dev/null +++ b/bw/.gitignore @@ -0,0 +1,39 @@ +#Maven +target/ +pom.xml.tag +pom.xml.releaseBackup +pom.xml.versionsBackup +release.properties + +# Eclipse +.project +.classpath +.settings/ +bin/ + +# IntelliJ +.idea +*.ipr +*.iml +*.iws + +# NetBeans +nb-configuration.xml + +# Visual Studio Code +.vscode +.factorypath + +# OSX +.DS_Store + +# Vim +*.swp +*.swo + +# patch +*.orig +*.rej + +# Local environment +.env diff --git a/bw/pom.xml b/bw/pom.xml new file mode 100644 index 0000000..f70d11d --- /dev/null +++ b/bw/pom.xml @@ -0,0 +1,41 @@ + + + 4.0.0 + + com.huangge1199.nowcoder.bw + bw + 1.0-SNAPSHOT + + + + org.projectlombok + lombok + 1.18.12 + + + + org.jsoup + jsoup + 1.10.2 + + + cn.hutool + hutool-all + 5.7.17 + + + org.projectlombok + lombok + RELEASE + compile + + + + + 17 + 17 + + + \ No newline at end of file diff --git a/bw/src/main/resources/application.properties b/bw/src/main/resources/application.properties new file mode 100644 index 0000000..e69de29