diff --git a/.idea/vcs.xml b/.idea/vcs.xml
new file mode 100644
index 0000000..94a25f7
--- /dev/null
+++ b/.idea/vcs.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/autoWebForMengCheng.iml b/autoWebForMengCheng.iml
new file mode 100644
index 0000000..9e3449c
--- /dev/null
+++ b/autoWebForMengCheng.iml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/pom.xml b/pom.xml
new file mode 100644
index 0000000..8996403
--- /dev/null
+++ b/pom.xml
@@ -0,0 +1,99 @@
+
+
+ 4.0.0
+
+ autoWebForSuZhou
+ autoWebForMengCheng
+ 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
+
+
+ cn.hutool
+ hutool-all
+ 4.6.6
+
+
+ org.apache.poi
+ poi-ooxml
+ 4.1.2
+
+
+
+
\ No newline at end of file
diff --git a/src/main/resources/META-INF/MANIFEST.MF b/src/main/resources/META-INF/MANIFEST.MF
new file mode 100644
index 0000000..1d285bc
--- /dev/null
+++ b/src/main/resources/META-INF/MANIFEST.MF
@@ -0,0 +1,3 @@
+Manifest-Version: 1.0
+Main-Class: com.bonus.autoweb.TestMain
+
diff --git a/src/main/resources/lib/freetts.jar b/src/main/resources/lib/freetts.jar
new file mode 100644
index 0000000..9c17194
Binary files /dev/null and b/src/main/resources/lib/freetts.jar differ
diff --git a/src/main/resources/log4j.properties b/src/main/resources/log4j.properties
new file mode 100644
index 0000000..66ea144
--- /dev/null
+++ b/src/main/resources/log4j.properties
@@ -0,0 +1,24 @@
+### 设置###
+log4j.rootLogger = debug,stdout,D,E
+
+### 输出信息到控制抬 ###
+log4j.appender.stdout = org.apache.log4j.ConsoleAppender
+log4j.appender.stdout.Target = System.out
+log4j.appender.stdout.layout = org.apache.log4j.PatternLayout
+log4j.appender.stdout.layout.ConversionPattern = [%-5p] %d{yyyy-MM-dd HH:mm:ss,SSS} method:%l%n%m%n
+
+### 输出DEBUG 级别以上的日志到=E://logs/error.log ###
+log4j.appender.D = org.apache.log4j.DailyRollingFileAppender
+log4j.appender.D.File = logs/log.log
+log4j.appender.D.Append = true
+log4j.appender.D.Threshold = DEBUG
+log4j.appender.D.layout = org.apache.log4j.PatternLayout
+log4j.appender.D.layout.ConversionPattern = %-d{yyyy-MM-dd HH:mm:ss} [ %t:%r ] - [ %p ] %m%n
+
+### 输出ERROR 级别以上的日志到=E://logs/error.log ###
+log4j.appender.E = org.apache.log4j.DailyRollingFileAppender
+log4j.appender.E.File =logs/error.log
+log4j.appender.E.Append = true
+log4j.appender.E.Threshold = ERROR
+log4j.appender.E.layout = org.apache.log4j.PatternLayout
+log4j.appender.E.layout.ConversionPattern = %-d{yyyy-MM-dd HH:mm:ss} [ %t:%r ] - [ %p ] %m%n
\ No newline at end of file