From aa23fdacb23b6e7e194d3e02760ab47590345205 Mon Sep 17 00:00:00 2001 From: 13693261870 <252740454@qq.com> Date: 星期一, 04 十二月 2023 14:10:24 +0800 Subject: [PATCH] 修订分析的有效值 --- pom.xml | 84 ++++++++++++++++++++++++++++++++--------- 1 files changed, 65 insertions(+), 19 deletions(-) diff --git a/pom.xml b/pom.xml index cca4ce0..20edfb9 100644 --- a/pom.xml +++ b/pom.xml @@ -12,11 +12,11 @@ <!--鎵撳寘鎴恮ar--> <packaging>war</packaging> - <groupId>com.lf</groupId> + <groupId>com.moon</groupId> <artifactId>server</artifactId> <version>1.0.0</version> - <name>LFServer</name> - <description>绠¢亾鍩虹澶ф暟鎹钩鍙版湇鍔�</description> + <name>MoonServer</name> + <description>鏈堢悆鍚庡彴鏈嶅姟</description> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> @@ -70,22 +70,21 @@ <artifactId>mybatis-plus-boot-starter</artifactId> <version>3.5.1</version> </dependency> - <!--鏀寔PGIS鐨刧eometry绫诲瀷锛歨ttps://www.91mszl.com/zhangwuji/article/details/1350--> - <!--<dependency> - <groupId>com.eyougo</groupId> - <artifactId>mybatis-typehandlers-postgis</artifactId> - <version>1.0</version> - </dependency>--> - <!--mybatis--> - <!--<dependency> - <groupId>org.mybatis.spring.boot</groupId> - <artifactId>mybatis-spring-boot-starter</artifactId> - <version>2.2.0</version> - </dependency>--> <!--redis--> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-data-redis</artifactId> + <exclusions> + <!--杩囨护lettuce锛屼娇鐢╦edis浣滀负redis瀹㈡埛绔�--> + <exclusion> + <groupId>io.lettuce</groupId> + <artifactId>lettuce-core</artifactId> + </exclusion> + </exclusions> + </dependency> + <dependency> + <groupId>redis.clients</groupId> + <artifactId>jedis</artifactId> </dependency> <!--postgresql--> <dependency> @@ -102,7 +101,7 @@ <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-aop</artifactId> </dependency> - <!--椤甸潰鐑儴缃�--> + <!--devtools--> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-devtools</artifactId> @@ -115,7 +114,7 @@ <artifactId>fastjson</artifactId> <version>1.2.47</version> </dependency> - <!--鏁村悎druid鏁版嵁婧�--> + <!--druid--> <dependency> <groupId>com.alibaba</groupId> <artifactId>druid</artifactId> @@ -254,19 +253,66 @@ <artifactId>sqlite-jdbc</artifactId> <version>3.36.0.3</version> </dependency> + <!--geotools--> + <dependency> + <groupId>org.geotools</groupId> + <artifactId>gt-main</artifactId> + <version>22.0</version> + </dependency> + <dependency> + <groupId>org.geotools</groupId> + <artifactId>gt-epsg-hsql</artifactId> + <version>22.0</version> + </dependency> + <dependency> + <groupId>org.geotools</groupId> + <artifactId>gt-api</artifactId> + <version>20.0</version> + </dependency> + <dependency> + <groupId>org.geotools</groupId> + <artifactId>gt-opengis</artifactId> + <version>22.0</version> + <scope>compile</scope> + </dependency> </dependencies> <build> - <finalName>server</finalName> + <finalName>MoonServer</finalName> <plugins> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> <!--<version>2.3.0.RELEASE</version>--> <configuration> - <mainClass>com.lf.server.LfApplication</mainClass> + <mainClass>com.moon.server.LfApplication</mainClass> </configuration> </plugin> </plugins> </build> + + <repositories> + <repository> + <id>osgeo</id> + <name>OSGeo Release Repository</name> + <url>https://repo.osgeo.org/repository/release/</url> + <snapshots> + <enabled>false</enabled> + </snapshots> + <releases> + <enabled>true</enabled> + </releases> + </repository> + <repository> + <id>osgeo-snapshot</id> + <name>OSGeo Snapshot Repository</name> + <url>https://repo.osgeo.org/repository/snapshot/</url> + <snapshots> + <enabled>true</enabled> + </snapshots> + <releases> + <enabled>false</enabled> + </releases> + </repository> + </repositories> </project> -- Gitblit v1.9.3