From 207b034b9ea240ec12530b696374c4dbd63f7c1f Mon Sep 17 00:00:00 2001 From: 张洋洋 <10611411+yang-yang-z@user.noreply.gitee.com> Date: 星期四, 20 二月 2025 14:04:52 +0800 Subject: [PATCH] [add]服务发布 --- pom.xml | 164 ++++++++++++++++++++++++++++++++++++++++++++++++++++-- 1 files changed, 156 insertions(+), 8 deletions(-) diff --git a/pom.xml b/pom.xml index b3e8890..abbe004 100644 --- a/pom.xml +++ b/pom.xml @@ -167,7 +167,6 @@ <scope>compile</scope> </dependency> - <!--webclient璇锋眰--> <!-- https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-webflux --> <dependency> @@ -196,12 +195,6 @@ <artifactId>p6spy</artifactId> <version>3.9.1</version> </dependency> - <!--澶氭暟鎹簮--> - <dependency> - <groupId>com.baomidou</groupId> - <artifactId>dynamic-datasource-spring-boot-starter</artifactId> - <version>3.5.2</version> - </dependency> <!-- Apache Commons CSV (鍙��) --> <dependency> @@ -222,10 +215,156 @@ <version>1.5</version> </dependency> + <!-- https://mvnrepository.com/artifact/dev.zarr/jzarr --> + <dependency> + <groupId>dev.zarr</groupId> + <artifactId>jzarr</artifactId> + <version>0.4.2</version> + <scope>system</scope> + <systemPath>${project.basedir}/libs/jzarr-0.4.2.jar</systemPath> + </dependency> + <!-- https://mvnrepository.com/artifact/edu.ucar/cdm-core --> + <dependency> + <groupId>edu.ucar</groupId> + <artifactId>cdm-core</artifactId> + <version>5.4.1</version> + <scope>system</scope> + <systemPath>${project.basedir}/libs/cdm-core-5.4.1.jar</systemPath> + </dependency> + <!-- https://mvnrepository.com/artifact/org.blosc/jblosc --> + <dependency> + <groupId>org.blosc</groupId> + <artifactId>jblosc</artifactId> + <version>1.0.1.dev</version> + <scope>system</scope> + <systemPath>${project.basedir}/libs/jblosc-1.0.1.dev.jar</systemPath> + </dependency> + <dependency> + <groupId>net.java.dev.jna</groupId> + <artifactId>jna</artifactId> + <version>4.2.2</version> + </dependency> + + + <!-- zarr --> + <!-- https://mvnrepository.com/artifact/org.janelia.saalfeldlab/n5-zarr --> + <dependency> + <groupId>org.janelia.saalfeldlab</groupId> + <artifactId>n5-zarr</artifactId> + <version>1.3.5</version> + <scope>system</scope> + <systemPath>${project.basedir}/libs/n5-zarr-1.3.5.jar</systemPath> + </dependency> + + <!-- https://mvnrepository.com/artifact/dev.zarr/jzarr --> + <dependency> + <groupId>dev.zarr</groupId> + <artifactId>jzarr</artifactId> + <version>0.4.2</version> + <scope>system</scope> + <systemPath>${project.basedir}/libs/jzarr-0.4.2.jar</systemPath> + </dependency> + <!--gavaghan娴嬭窛--> + <dependency> + <groupId>org.gavaghan</groupId> + <artifactId>geodesy</artifactId> + <version>1.1.3</version> + </dependency> + <!--geotools娴嬭窛--> + <dependency> + <groupId>org.geotools</groupId> + <artifactId>gt-referencing</artifactId> + <version>27.2</version> + </dependency> + <!--璇诲彇shp鏂囦欢--> + <dependency> + <groupId>org.geotools</groupId> + <artifactId>gt-shapefile</artifactId> + <version>22-RC</version> + </dependency> + <dependency> + <groupId>com.vividsolutions</groupId> + <artifactId>jts</artifactId> + <version>1.13</version> + </dependency> + <dependency> + <groupId>com.fasterxml.jackson.core</groupId> + <artifactId>jackson-databind</artifactId> + <version>2.13.3</version> + </dependency> + <dependency> + <groupId>com.vividsolutions</groupId> + <artifactId>jts</artifactId> + <version>1.13</version> + </dependency> + <dependency> + <groupId>org.osgeo</groupId> + <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> + <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> + <repository> + <id>geotools</id> + <name>geotools</name> + <url>http://maven.icm.edu.pl/artifactory/repo/</url> + <releases> + <enabled>true</enabled> + </releases> + </repository> + </repositories> <build> + <resources> + <resource> + <directory>src/main/resources</directory> + <includes> + <include>win32-x86-64/blosc.dll</include> + <include>**/*.yml</include> + <include>**/*.xml</include> + <include>**/*.json</include> + </includes> + <filtering>false</filtering> + </resource> + </resources> <finalName>SimuServer</finalName> <plugins> <plugin> @@ -244,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