From e268d54c84a86bd2e82e56860525181537758d16 Mon Sep 17 00:00:00 2001 From: 13693261870 <252740454@qq.com> Date: 星期五, 16 八月 2024 13:44:35 +0800 Subject: [PATCH] 1 --- pom.xml | 344 +++++++++++++++++++++++++++++++++------------------------ 1 files changed, 198 insertions(+), 146 deletions(-) diff --git a/pom.xml b/pom.xml index 39912fb..2e72745 100644 --- a/pom.xml +++ b/pom.xml @@ -1,24 +1,38 @@ <?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" - xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"> + <!-- https://start.springboot.io/ --> <modelVersion>4.0.0</modelVersion> - - <groupId>org.yssh</groupId> - <artifactId>yssh</artifactId> - <version>1.0</version> - <packaging>war</packaging> <parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artifactId> - <version>2.3.3.RELEASE</version> + <version>2.3.6.RELEASE</version> + <relativePath/> </parent> + <!--鎵撳寘鎴恓ar銆亀ar--> + <packaging>jar</packaging> + + <groupId>com</groupId> + <artifactId>yssh</artifactId> + <version>1.0.0</version> + <name>yssh</name> + <description>鐕曞北鐭冲寲婧簮涓夌淮鐢靛瓙娌欑洏</description> <properties> + <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> + <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> <java.version>1.8</java.version> </properties> <dependencies> - <!--dependency> + <!--log4j--> + <!--<dependency> + <groupId>log4j</groupId> + <artifactId>log4j</artifactId> + <version>1.2.17</version> + </dependency>--> + <!--logback--> + <!--<dependency> <groupId>ch.qos.logback</groupId> <artifactId>logback-core</artifactId> <version>1.1.3</version> @@ -32,141 +46,201 @@ <groupId>ch.qos.logback</groupId> <artifactId>logback-classic</artifactId> <version>1.1.3</version> - </dependency--> - <!--log4j--> - <dependency> - <groupId>log4j</groupId> - <artifactId>log4j</artifactId> - <version>1.2.17</version> - </dependency> - <dependency> - <groupId>org.slf4j</groupId> - <artifactId>slf4j-api</artifactId> - <version>1.7.26</version> - </dependency> - <dependency> - <groupId>ch.qos.logback</groupId> - <artifactId>logback-classic</artifactId> - <version>1.2.3</version> - </dependency> - <dependency> - <groupId>ch.qos.logback</groupId> - <artifactId>logback-core</artifactId> - <version>1.2.3</version> - </dependency> - <dependency> - <groupId>org.springframework.boot</groupId> - <artifactId>spring-boot-starter-aop</artifactId> - </dependency> - <dependency> - <groupId>mysql</groupId> - <artifactId>mysql-connector-java</artifactId> - </dependency> - <dependency> - <groupId>org.mybatis.spring.boot</groupId> - <artifactId>mybatis-spring-boot-starter</artifactId> - <version>1.3.0</version> - </dependency> + </dependency>--> + <!--spring-boot--> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> - <!-- <exclusions> - <exclusion> - <groupId>org.springframework.boot</groupId> - <artifactId>spring-boot-starter-tomcat</artifactId> - </exclusion> - </exclusions> --> + <!--鎺掗櫎鍐呯疆tomcat瀹瑰櫒锛岃澶栭儴瀹瑰櫒杩愯spring-boot椤圭洰--> + <exclusions> + <!--jar涓嶉渶瑕佸睆钄絫omcat--> + <!--<exclusion> + <groupId>org.springframework.boot</groupId> + <artifactId>spring-boot-starter-tomcat</artifactId> + </exclusion>--> + <exclusion> + <groupId>org.apache.logging.log4j</groupId> + <artifactId>log4j-api</artifactId> + </exclusion> + </exclusions> </dependency> - <dependency> - <groupId>org.springframework.boot</groupId> - <artifactId>spring-boot-devtools</artifactId> - <optional>true</optional> - </dependency> - <!--<dependency>娣诲姞Swagger渚濊禆 - <groupId>io.springfox</groupId> - <artifactId>springfox-swagger2</artifactId> - <version>2.7.0</version> - </dependency> - <dependency>娣诲姞Swagger-UI渚濊禆 - <groupId>io.springfox</groupId> - <artifactId>springfox-swagger-ui</artifactId> - <version>2.7.0</version> - </dependency>--> - <!--<dependency> - <groupId>io.springfox</groupId> - <artifactId>springfox-boot-starter</artifactId> - <version>3.0.0</version> - </dependency>--> + <!--spring浜嬪姟绠$悊--> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-tx</artifactId> </dependency> + <!--tomcat--> <dependency> - <groupId>com.google.code.gson</groupId> - <artifactId>gson</artifactId> + <groupId>org.springframework.boot</groupId> + <artifactId>spring-boot-starter-tomcat</artifactId> + <scope>provided</scope> </dependency> + <!--jdbc--> + <dependency> + <groupId>org.springframework.boot</groupId> + <artifactId>spring-boot-starter-jdbc</artifactId> + </dependency> + <!--thymeleaf--> + <dependency> + <groupId>org.springframework.boot</groupId> + <artifactId>spring-boot-starter-thymeleaf</artifactId> + <version>2.2.2.RELEASE</version> + </dependency> + <!--lombok--> <dependency> <groupId>org.projectlombok</groupId> <artifactId>lombok</artifactId> + <optional>true</optional> </dependency> + <!--mybatis-plus--> <dependency> - <groupId>org.openjdk.jol</groupId> - <artifactId>jol-core</artifactId> - <version>0.9</version> + <groupId>com.baomidou</groupId> + <artifactId>mybatis-plus-boot-starter</artifactId> + <version>3.5.1</version> </dependency> - <dependency> - <groupId>org.springframework.boot</groupId> - <artifactId>spring-boot-starter-test</artifactId> - <exclusions> - <exclusion> - <groupId>org.junit.vintage</groupId> - <artifactId>junit-vintage-engine</artifactId> - </exclusion> - </exclusions> - </dependency> - <dependency> - <groupId>org.springframework</groupId> - <artifactId>spring-core</artifactId> + <!--postgresql--> + <!--dependency> + <groupId>org.postgresql</groupId> + <artifactId>postgresql</artifactId> + <scope>runtime</scope> </dependency> <dependency> <groupId>org.apache.commons</groupId> - <artifactId>commons-lang3</artifactId> - <version>3.12.0</version> - </dependency> + <artifactId>commons-pool2</artifactId> + </dependency--> + <!--aop--> <dependency> - <groupId>org.apache.maven.surefire</groupId> - <artifactId>surefire-booter</artifactId> - <version>2.22.2</version> + <groupId>org.springframework.boot</groupId> + <artifactId>spring-boot-starter-aop</artifactId> </dependency> - <!--闃块噷杩炴帴姹� --> + <!--椤甸潰鐑儴缃�--> + <dependency> + <groupId>org.springframework.boot</groupId> + <artifactId>spring-boot-devtools</artifactId> + <optional>true</optional> + <scope>true</scope> + </dependency> + <!--fastjson--> + <dependency> + <groupId>com.alibaba</groupId> + <artifactId>fastjson</artifactId> + <version>1.2.47</version> + </dependency> + <!--鏁村悎druid鏁版嵁婧�--> <dependency> <groupId>com.alibaba</groupId> <artifactId>druid</artifactId> - <version>1.1.10</version> + <version>1.1.22</version> </dependency> <dependency> - <groupId>org.springframework.boot</groupId> - <artifactId>spring-boot-configuration-processor</artifactId> - <optional>true</optional> + <groupId>com.alibaba</groupId> + <artifactId>druid-spring-boot-starter</artifactId> + <version>1.1.22</version> </dependency> + <!--test--> + <dependency> + <groupId>org.springframework.boot</groupId> + <artifactId>spring-boot-starter-test</artifactId> + <scope>test</scope> + </dependency> + <!--text--> + <dependency> + <groupId>org.apache.commons</groupId> + <artifactId>commons-text</artifactId> + <version>1.1</version> + </dependency> + <!--swagger--> + <!--<dependency> + <groupId>io.springfox</groupId> + <artifactId>springfox-swagger2</artifactId> + <version>2.9.2</version> + </dependency> + <dependency> + <groupId>io.springfox</groupId> + <artifactId>springfox-swagger-ui</artifactId> + <version>2.9.2</version> + </dependency>--> + <!--httpclient--> + <dependency> + <groupId>org.apache.httpcomponents</groupId> + <artifactId>httpclient</artifactId> + </dependency> + <!--websocket--> + <dependency> + <groupId>javax.websocket</groupId> + <artifactId>javax.websocket-api</artifactId> + <version>1.0</version> + </dependency> + <!--websocket--> + <dependency> + <groupId>org.springframework.boot</groupId> + <artifactId>spring-boot-starter-websocket</artifactId> + </dependency> + <!--hutool--> + <dependency> + <groupId>cn.hutool</groupId> + <artifactId>hutool-all</artifactId> + <version>5.7.20</version> + </dependency> + <dependency> + <groupId>net.java.dev.jna</groupId> + <artifactId>jna</artifactId> + <version>5.5.0</version> + </dependency> + <dependency> + <groupId>net.java.dev.jna</groupId> + <artifactId>jna-platform</artifactId> + <version>5.5.0</version> + </dependency> + <!--commons-fileupload--> + <dependency> + <groupId>commons-fileupload</groupId> + <artifactId>commons-fileupload</artifactId> + <version>1.4</version> + </dependency> + <dependency> + <groupId>commons-io</groupId> + <artifactId>commons-io</artifactId> + <version>2.11.0</version> + </dependency> + <!--war:servlet--> + <dependency> + <groupId>javax.servlet</groupId> + <artifactId>javax.servlet-api</artifactId> + <version>3.1.0</version> + <scope>provided</scope> + </dependency> + <!--fast-md5--> + <dependency> + <groupId>com.joyent.util</groupId> + <artifactId>fast-md5</artifactId> + <version>2.7.1</version> + </dependency> + <!--apache.poi--> + <dependency> + <groupId>org.apache.poi</groupId> + <artifactId>poi-ooxml</artifactId> + <version>3.16</version> + </dependency> + + <!--mysql--> + <dependency> + <groupId>mysql</groupId> + <artifactId>mysql-connector-java</artifactId> + </dependency> + <!--biyanwen--> <dependency> <groupId>com.github.biyanwen</groupId> <artifactId>easycsv</artifactId> <version>1.0.0</version> </dependency> - + <!--knife4j--> <dependency> <groupId>com.github.xiaoymin</groupId> <artifactId>knife4j-spring-boot-starter</artifactId> <version>3.0.3</version> </dependency> - <!-- 浜岀淮绌洪棿璋撹瘝鍜屽嚱鏁扮殑Java API --> - <dependency> - <groupId>org.locationtech.jts</groupId> - <artifactId>jts-core</artifactId> - <version>1.18.2</version> - </dependency> - <!-- geotools渚濊禆 --> + <!--geotools渚濊禆--> <dependency> <groupId>org.geotools</groupId> <artifactId>gt-shapefile</artifactId> @@ -214,6 +288,18 @@ <artifactId>caffeine</artifactId> <version>2.9.3</version> </dependency> + <!--easyexcel--> + <dependency> + <groupId>com.alibaba</groupId> + <artifactId>easyexcel</artifactId> + <version>2.2.10</version> + </dependency> + <!--email--> + <dependency> + <groupId>com.sun.mail</groupId> + <artifactId>javax.mail</artifactId> + <version>1.6.2</version> + </dependency> </dependencies> <profiles> @@ -239,38 +325,18 @@ </properties> </profile> </profiles> + <build> <finalName>yssh</finalName> <plugins> <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-war-plugin</artifactId> - <version>3.0.0</version> + <groupId>org.springframework.boot</groupId> + <artifactId>spring-boot-maven-plugin</artifactId> + <!--<version>2.3.0.RELEASE</version>--> <configuration> - <!--濡傛灉鎯冲湪娌℃湁web.xml鏂囦欢鐨勬儏鍐典笅鏋勫缓WAR锛岃璁剧疆涓篺alse銆� --> - <failOnMissingWebXml>false</failOnMissingWebXml> + <mainClass>com.yssh.Application</mainClass> </configuration> </plugin> - <!--<plugin> - <groupId>org.codehaus.cargo</groupId> - <artifactId>cargo-maven2-plugin</artifactId> - <version>1.5.0</version> - <configuration> - <container> - <containerId>tomcat8x</containerId> - <type>remote</type> - <timeout>1200000</timeout> - </container> - <configuration> - <type>runtime</type> - <properties> - <cargo.remote.username>admin</cargo.remote.username> - <cargo.remote.password>terra</cargo.remote.password> - <cargo.remote.uri>http://183.162.245.49:2228/manager/text</cargo.remote.uri> - </properties> - </configuration> - </configuration> - </plugin>--> </plugins> </build> @@ -306,18 +372,4 @@ </releases> </repository> </repositories> - - <pluginRepositories> - <pluginRepository> - <id>public</id> - <name>aliyun nexus</name> - <url>http://maven.aliyun.com/nexus/content/groups/public/</url> - <releases> - <enabled>true</enabled> - </releases> - <snapshots> - <enabled>false</enabled> - </snapshots> - </pluginRepository> - </pluginRepositories> -</project> \ No newline at end of file +</project> -- Gitblit v1.9.3