From 9087c0aeee96f33e751412a7dd1837759dd53603 Mon Sep 17 00:00:00 2001 From: jjLv <1981429112@qq.com> Date: Fri, 17 Jan 2025 14:22:40 +0800 Subject: [PATCH] =?UTF-8?q?build:=20=E6=B7=BB=E5=8A=A0=20Maven=20=E9=A1=B9?= =?UTF-8?q?=E7=9B=AE=E9=85=8D=E7=BD=AE=E6=96=87=E4=BB=B6=20pom.xml?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 创建 pom.xml 文件,定义项目依赖和构建插件 - 添加 Java 8 编译配置 - 引入 Selenium --- pom.xml | 94 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 94 insertions(+) create mode 100644 pom.xml diff --git a/pom.xml b/pom.xml new file mode 100644 index 0000000..f3d5445 --- /dev/null +++ b/pom.xml @@ -0,0 +1,94 @@ + + + 4.0.0 + + autoWebForLiXin + autoWebForLiXin + 1.0-SNAPSHOT + + + + org.apache.maven.plugins + maven-compiler-plugin + + 8 + 8 + + + + + + + + org.seleniumhq.selenium + selenium-java + 3.141.59 + + + + + com.google.code.gson + gson + 2.2.4 + + + com.thoughtworks.xstream + xstream + 1.4.9 + + + org.codehaus.jettison + jettison + 1.3.7 + + + org.projectlombok + lombok + 1.18.26 + compile + + + + org.quartz-scheduler + quartz + 2.2.1 + + + + com.hynnet + jacob + 1.18 + + + + commons-logging + commons-logging-api + 1.1 + + + + org.slf4j + slf4j-api + 1.7.26 + + + + org.slf4j + slf4j-log4j12 + 1.7.26 + + + org.apache.poi + poi + 4.1.2 + + + org.apache.poi + poi-ooxml + 4.1.2 + + + + \ No newline at end of file