From 4ffb61934bd556bb681b96bcc5c690105000ed5e Mon Sep 17 00:00:00 2001 From: xingjinshuang <xingjs@qq.com> Date: 星期四, 20 二月 2025 14:31:41 +0800 Subject: [PATCH] Merge remote-tracking branch 'origin/master' --- pom.xml | 33 +++++++++++++++++++++++++++++++++ 1 files changed, 33 insertions(+), 0 deletions(-) diff --git a/pom.xml b/pom.xml index bf667d9..abbe004 100644 --- a/pom.xml +++ b/pom.xml @@ -303,6 +303,30 @@ <artifactId>proj4j</artifactId> <version>0.1.0</version> </dependency> + <dependency> + <groupId>org.apache.commons</groupId> + <artifactId>commons-imaging</artifactId> + <version>1.0-alpha2</version> + </dependency> + <dependency> + <groupId>org.citygml4j</groupId> + <artifactId>citygson</artifactId> + <version>1.1.3.8</version> + <scope>system</scope> + <systemPath>${project.basedir}/libs/citygson-1.1.3.8.jar</systemPath> + </dependency> + <dependency> + <groupId>cn.smartearth</groupId> + <artifactId>sem</artifactId> + <version>1.1.1</version> + <scope>system</scope> + <systemPath>${project.basedir}/libs/sem-1.1.1.jar</systemPath> + </dependency> + <dependency> + <groupId>com.google.code.gson</groupId> + <artifactId>gson</artifactId> + <version>2.8.2</version> + </dependency> </dependencies> <repositories> <repository> @@ -359,6 +383,15 @@ </excludes> </configuration> </plugin> + <plugin> + <groupId>org.springframework.boot</groupId> + <artifactId>spring-boot-maven-plugin</artifactId> + <configuration> + <jvmArguments> + -Xms2048m -Xmx4096m -XX:+PrintGCDetails + </jvmArguments> + </configuration> + </plugin> </plugins> </build> </project> -- Gitblit v1.9.3