1 Star 0 Fork 20

JWEB/onlyoffice-api

forked from Sherlock/onlyoffice-api 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
build.gradle 1.63 KB
一键复制 编辑 原始数据 按行查看 历史
Sherlock 提交于 2019-08-30 10:32 . 使用 swagger 生成 Restful API 文档
plugins {
id 'org.springframework.boot' version '2.1.6.RELEASE'
id 'java'
}
apply plugin: 'io.spring.dependency-management'
group = 'com.sherlocky'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = '1.8'
configurations {
compileOnly {
extendsFrom annotationProcessor
}
}
repositories {
maven {
url maven_url
}
}
dependencies {
implementation 'org.springframework.boot:spring-boot-starter-thymeleaf'
implementation 'org.springframework.boot:spring-boot-starter-web'
implementation 'commons-codec:commons-codec:1.12'
implementation 'commons-io:commons-io:2.6'
implementation 'org.apache.commons:commons-lang3:3.9'
implementation 'org.apache.commons:commons-collections4:4.4'
implementation 'com.alibaba:fastjson:1.2.58'
implementation 'com.github.ben-manes.caffeine:caffeine:2.8.0'
// Redis
implementation('org.springframework.boot:spring-boot-starter-data-redis') {
// 排除掉默认的 lettuce,使用jedis
exclude group: 'io.lettuce', module: 'lettuce-core'
}
implementation('redis.clients:jedis:2.10.2')
implementation 'org.hashids:hashids:1.0.3'
// 使用 swagger 生成 Restful API 文档
implementation 'io.springfox:springfox-swagger2:2.9.2'
implementation 'io.springfox:springfox-swagger-ui:2.9.2'
compileOnly 'org.projectlombok:lombok'
annotationProcessor 'org.springframework.boot:spring-boot-configuration-processor'
annotationProcessor 'org.projectlombok:lombok'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
testImplementation group: 'junit', name: 'junit', version: '4.12'
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Java
1
https://gitee.com/zxj16/onlyoffice-api.git
git@gitee.com:zxj16/onlyoffice-api.git
zxj16
onlyoffice-api
onlyoffice-api
master

搜索帮助