1 Star 0 Fork 13

giszjother/spring_gis_template

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
build.gradle 2.27 KB
一键复制 编辑 原始数据 按行查看 历史
plugins {
id 'org.springframework.boot' version '2.2.5.RELEASE'
id 'io.spring.dependency-management' version '1.0.9.RELEASE'
id 'java'
id 'war'
}
group 'org.example'
version '1.0-SNAPSHOT'
repositories {
maven { url "https://maven.aliyun.com/repository/public/" }
mavenCentral()
}
dependencies {
testCompile group: 'junit', name: 'junit', version: '4.12'
compile group: 'javax.servlet', name: 'jstl', version: '1.2'
compile group: 'org.apache.tomcat.embed', name: 'tomcat-embed-jasper', version: '9.0.31'
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
implementation 'org.springframework.boot:spring-boot-starter-web'
implementation 'org.springframework.boot:spring-boot-starter-aop'
providedRuntime 'org.springframework.boot:spring-boot-starter-tomcat'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
compileOnly 'org.springframework.boot:spring-boot-configuration-processor'
compile group: 'org.apache.commons', name: 'commons-lang3', version: '3.9'
compile group: 'org.apache.httpcomponents', name: 'httpcore', version: '4.4.13'
compile group: 'org.apache.httpcomponents', name: 'httpclient', version: '4.5.11'
compile group: 'com.alibaba', name: 'fastjson', version: '1.2.73'
annotationProcessor 'org.projectlombok:lombok:1.18.2'
compileOnly 'org.projectlombok:lombok:1.18.2'
/*postgesql*/
compile group: 'org.postgresql', name: 'postgresql', version: '42.2.14'
compile group: 'net.postgis', name: 'postgis-jdbc', version: '2.5.0'
compile group: 'org.locationtech.jts', name: 'jts-core', version: '1.17.1'
compile group: 'org.locationtech.spatial4j', name: 'spatial4j', version: '0.8'
implementation 'com.fasterxml.jackson.core:jackson-databind:2.10.1'
/*swagger-ui*/
compile group: 'commons-io', name: 'commons-io', version: '2.6'
compile group: 'io.springfox', name: 'springfox-swagger2', version: '2.9.2'
compile group: 'io.springfox', name: 'springfox-swagger-ui', version: '2.9.2'
/*mybatis plus*/
compile group: 'com.baomidou', name: 'mybatis-plus-boot-starter', version: '3.3.1'
compile group: 'com.baomidou', name: 'mybatis-plus-generator', version: '3.3.2'
/*GDAL*/
compile fileTree(dir:'libs',include:['*.jar'])
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Java
1
https://gitee.com/giszjother/spring_gis_template.git
git@gitee.com:giszjother/spring_gis_template.git
giszjother
spring_gis_template
spring_gis_template
master

搜索帮助