加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
build.gradle 977 Bytes
一键复制 编辑 原始数据 按行查看 历史
虞小龙 提交于 2019-04-19 17:22 . 提交项目
plugins {
id 'org.springframework.boot' version '2.1.3.RELEASE'
id 'java'
}
apply plugin: 'io.spring.dependency-management'
group = 'com.view.office'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = '1.8'
repositories {
maven{url 'http://maven.aliyun.com/nexus/content/groups/public/'}
mavenCentral()
}
dependencies {
implementation 'org.springframework.boot:spring-boot-starter-thymeleaf'
implementation 'org.springframework.boot:spring-boot-starter-web'
implementation 'org.springframework.shell:spring-shell-starter:2.0.0.RELEASE'
implementation 'commons-io:commons-io:2.5'
compile('com.alibaba:fastjson:1.2.47')
//word模板替换
compile('org.apache.commons:commons-collections4:4.2')
compile('org.apache.poi:ooxml-schemas:1.3')
compile('org.apache.poi:poi:3.14')
compile('org.apache.poi:poi-ooxml:3.14')
compile('org.apache.poi:poi-scratchpad:3.14')
compile fileTree(dir: 'libs', includes: ['*jar'])
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化