From ef22eddce187cfc2177e731459045c41e035b9bc Mon Sep 17 00:00:00 2001 From: 13693261870 <252740454@qq.com> Date: 星期三, 17 七月 2024 09:15:08 +0800 Subject: [PATCH] 读取DEM数据 --- pom.xml | 30 +++++++++++++++++++++++++++++- 1 files changed, 29 insertions(+), 1 deletions(-) diff --git a/pom.xml b/pom.xml index 24dec46..2f3583f 100644 --- a/pom.xml +++ b/pom.xml @@ -8,6 +8,7 @@ <version>2.7.18</version> <relativePath/> </parent> + <packaging>jar</packaging> <groupId>com.se</groupId> <artifactId>simu</artifactId> @@ -106,20 +107,47 @@ <artifactId>fast-md5</artifactId> <version>2.7.1</version> </dependency> + <!--fastjson2--> + <dependency> + <groupId>com.alibaba.fastjson2</groupId> + <artifactId>fastjson2</artifactId> + <version>2.0.52</version> + </dependency> <!--gdal--> <dependency> <groupId>org.gdal</groupId> <artifactId>gdal</artifactId> - <version>3.9.0</version> + <!--<version>3.9.0</version>--> + <version>3.2.0</version> </dependency> </dependencies> + <profiles> + <profile> + <id>dev</id> + <properties> + <activatedProperties>dev</activatedProperties> + </properties> + <activation> + <activeByDefault>true</activeByDefault> + </activation> + </profile> + <profile> + <id>prod</id> + <properties> + <activatedProperties>prod</activatedProperties> + </properties> + </profile> + </profiles> + <build> + <finalName>SimuServer</finalName> <plugins> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> <configuration> + <mainClass>com.se.simu.SimuApplication</mainClass> <excludes> <exclude> <groupId>org.projectlombok</groupId> -- Gitblit v1.9.3