| | |
| | | <version>2.3.6.RELEASE</version> |
| | | <relativePath/> |
| | | </parent> |
| | | <!--打包成war--> |
| | | <packaging>war</packaging> |
| | | |
| | | <groupId>com.lf</groupId> |
| | | <artifactId>server</artifactId> |
| | |
| | | <dependency> |
| | | <groupId>org.springframework.boot</groupId> |
| | | <artifactId>spring-boot-starter-web</artifactId> |
| | | <!--排除内置tomcat容器,让外部容器运行spring-boot项目--> |
| | | <exclusions> |
| | | <exclusion> |
| | | <groupId>org.springframework.boot</groupId> |
| | | <artifactId>spring-boot-starter-tomcat</artifactId> |
| | | </exclusion> |
| | | </exclusions> |
| | | </dependency> |
| | | <!--tomcat--> |
| | | <dependency> |
| | | <groupId>org.springframework.boot</groupId> |
| | | <artifactId>spring-boot-starter-tomcat</artifactId> |
| | | <scope>provided</scope> |
| | | </dependency> |
| | | <!--<dependency> |
| | | <groupId>org.springframework.boot</groupId> |
| | |
| | | <artifactId>mybatis-plus-boot-starter</artifactId> |
| | | <version>3.5.1</version> |
| | | </dependency> |
| | | <!--支持PGIS的geometry类型:https://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> |
| | |
| | | <groupId>org.springframework.boot</groupId> |
| | | <artifactId>spring-boot-starter-aop</artifactId> |
| | | </dependency> |
| | | <!--热部署--> |
| | | <!--页面热部署--> |
| | | <dependency> |
| | | <groupId>org.springframework.boot</groupId> |
| | | <artifactId>spring-boot-devtools</artifactId> |
| | | <optional>true</optional> |
| | | <scope>true</scope> |
| | | </dependency> |
| | | <!--fastjson--> |
| | | <dependency> |
| | |
| | | <dependency> |
| | | <groupId>com.github.oshi</groupId> |
| | | <artifactId>oshi-core</artifactId> |
| | | <version>4.4.2</version> |
| | | <version>6.8.0</version> |
| | | </dependency> |
| | | <!--hutool--> |
| | | <dependency> |
| | |
| | | <dependency> |
| | | <groupId>net.java.dev.jna</groupId> |
| | | <artifactId>jna</artifactId> |
| | | <version>5.5.0</version> |
| | | <version>5.17.0</version> |
| | | </dependency> |
| | | <dependency> |
| | | <groupId>net.java.dev.jna</groupId> |
| | | <artifactId>jna-platform</artifactId> |
| | | <version>5.5.0</version> |
| | | <version>5.17.0</version> |
| | | </dependency> |
| | | <!--commons-fileupload--> |
| | | <dependency> |
| | |
| | | <artifactId>easyexcel</artifactId> |
| | | <version>2.2.10</version> |
| | | </dependency> |
| | | <!--access--> |
| | | <dependency> |
| | | <groupId>net.sf.ucanaccess</groupId> |
| | | <artifactId>ucanaccess</artifactId> |
| | | <version>5.0.1</version> |
| | | </dependency> |
| | | <!--war:servlet--> |
| | | <dependency> |
| | | <groupId>javax.servlet</groupId> |
| | | <artifactId>javax.servlet-api</artifactId> |
| | | <version>3.1.0</version> |
| | | <scope>provided</scope> |
| | | </dependency> |
| | | <!--fast-md5--> |
| | | <dependency> |
| | | <groupId>com.joyent.util</groupId> |
| | | <artifactId>fast-md5</artifactId> |
| | | <version>2.7.1</version> |
| | | </dependency> |
| | | <!--apache.poi--> |
| | | <dependency> |
| | | <groupId>org.apache.poi</groupId> |
| | | <artifactId>poi-ooxml</artifactId> |
| | | <version>3.16</version> |
| | | </dependency> |
| | | <!--SQLite--> |
| | | <dependency> |
| | | <groupId>org.xerial</groupId> |
| | | <artifactId>sqlite-jdbc</artifactId> |
| | | <version>3.36.0.3</version> |
| | | </dependency> |
| | | <!--proj4j--> |
| | | <dependency> |
| | | <groupId>org.osgeo</groupId> |
| | | <artifactId>proj4j</artifactId> |
| | | <version>0.1.0</version> |
| | | </dependency> |
| | | <!--JTS--> |
| | | <dependency> |
| | | <groupId>org.locationtech.jts</groupId> |
| | | <artifactId>jts-core</artifactId> |
| | | <version>1.19.0</version> |
| | | </dependency> |
| | | </dependencies> |
| | | |
| | | <build> |
| | | <finalName>server</finalName> |
| | | <plugins> |
| | | <plugin> |
| | | <groupId>org.springframework.boot</groupId> |