| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156 | <?xml version="1.0" encoding="UTF-8"?><project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"         xmlns="http://maven.apache.org/POM/4.0.0"         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">    <parent>        <groupId>com.siwei</groupId>        <artifactId>siwei-modules</artifactId>        <version>3.6.5</version>    </parent>    <modelVersion>4.0.0</modelVersion>    <artifactId>siwei-modules-spatial</artifactId>    <description>        system-modules-spatial 空间处理服务模块    </description>    <dependencies>        <!-- SpringCloud Alibaba Nacos -->        <dependency>            <groupId>com.alibaba.cloud</groupId>            <artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>        </dependency>        <!-- SpringCloud Alibaba Nacos Config -->        <dependency>            <groupId>com.alibaba.cloud</groupId>            <artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>        </dependency>        <!-- SpringCloud Alibaba Sentinel -->        <dependency>            <groupId>com.alibaba.cloud</groupId>            <artifactId>spring-cloud-starter-alibaba-sentinel</artifactId>        </dependency>        <!-- SpringBoot Actuator -->        <dependency>            <groupId>org.springframework.boot</groupId>            <artifactId>spring-boot-starter-actuator</artifactId>        </dependency>        <dependency>            <groupId>org.postgresql</groupId>            <artifactId>postgresql</artifactId>        </dependency>        <!-- Mysql Connector -->        <dependency>            <groupId>com.mysql</groupId>            <artifactId>mysql-connector-j</artifactId>        </dependency>        <!-- siwei Common DataSource -->        <dependency>            <groupId>com.siwei</groupId>            <artifactId>siwei-common-datasource</artifactId>        </dependency>        <!-- siwei Common DataScope -->        <dependency>            <groupId>com.siwei</groupId>            <artifactId>siwei-common-datascope</artifactId>        </dependency>        <!-- siwei Common Log -->        <dependency>            <groupId>com.siwei</groupId>            <artifactId>siwei-common-log</artifactId>        </dependency>        <!-- siwei Common Swagger -->        <dependency>            <groupId>com.siwei</groupId>            <artifactId>siwei-common-swagger</artifactId>        </dependency>        <!--geotools-->        <dependency>            <groupId>org.geotools</groupId>            <artifactId>gt-main</artifactId>        </dependency>        <dependency>            <groupId>org.geotools</groupId>            <artifactId>gt-cql</artifactId>        </dependency>        <dependency>            <groupId>org.geotools.jdbc</groupId>            <artifactId>gt-jdbc-postgis</artifactId>        </dependency>        <dependency>            <groupId>org.geotools</groupId>            <artifactId>gt-coverage</artifactId>        </dependency>        <dependency>            <groupId>org.geotools</groupId>            <artifactId>gt-render</artifactId>        </dependency>        <dependency>            <groupId>org.geotools</groupId>            <artifactId>gt-opengis</artifactId>        </dependency>        <dependency>            <groupId>org.geotools</groupId>            <artifactId>gt-referencing</artifactId>        </dependency>        <dependency>            <groupId>org.geotools</groupId>            <artifactId>gt-geojson</artifactId>        </dependency>        <dependency>            <groupId>org.geotools</groupId>            <artifactId>gt-geotiff</artifactId>        </dependency>        <dependency>            <groupId>org.geotools</groupId>            <artifactId>gt-swing</artifactId>        </dependency>        <dependency>            <groupId>org.geotools</groupId>            <artifactId>gt-shapefile</artifactId>        </dependency>        <dependency>            <groupId>org.geotools</groupId>            <artifactId>gt-tile-client</artifactId>        </dependency>        <dependency>            <groupId>org.geotools</groupId>            <artifactId>gt-epsg-hsql</artifactId>        </dependency>        <dependency>            <groupId>org.locationtech.jts</groupId>            <artifactId>jts-core</artifactId>        </dependency>    </dependencies>    <build>        <finalName>${project.artifactId}</finalName>        <plugins>            <plugin>                <groupId>org.springframework.boot</groupId>                <artifactId>spring-boot-maven-plugin</artifactId>                <executions>                    <execution>                        <goals>                            <goal>repackage</goal>                        </goals>                    </execution>                </executions>            </plugin>        </plugins>    </build></project>
 |