Ai
2 Star 0 Fork 0

mirrors_mongodb/mlab-data-api

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
build.gradle 1.58 KB
一键复制 编辑 原始数据 按行查看 历史
plugins {
id 'java'
id 'application'
id 'war'
id 'distribution'
}
version '1.0'
java {
sourceCompatibility = JavaVersion.VERSION_1_10
}
ext {
javaMainClass = 'com.mlab.api.Main'
}
application {
mainClassName = javaMainClass
}
distributions {
main {
baseName = 'mlab-data-api'
contents {
from('src/main/webapp') {
into('www')
}
}
}
}
test {
testLogging {
events "passed", "skipped", "failed", "standardOut", "standardError"
}
}
repositories {
mavenCentral()
}
dependencies {
compile 'ch.qos.logback:logback-classic:1.2.3'
compile 'com.fasterxml.jackson.core:jackson-core:2.10.2'
compile 'com.fasterxml.jackson.core:jackson-databind:2.10.2'
compile 'com.fasterxml.jackson.core:jackson-annotations:2.10.2'
compile 'com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:2.10.2'
compile 'commons-cli:commons-cli:1.4'
compile 'commons-io:commons-io:2.1'
compile 'org.apache.httpcomponents:httpclient:4.5.11'
compile 'org.apache.tomcat.embed:tomcat-embed-core:8.5.32'
compile 'org.apache.tomcat.embed:tomcat-embed-jasper:8.5.32'
compile 'org.apache.tomcat:tomcat-jasper:8.5.32'
compile 'org.json:json:20190722'
compile 'org.mongodb:mongo-java-driver:3.12.1'
compile 'org.slf4j:jcl-over-slf4j:1.7.30'
compile 'org.slf4j:jul-to-slf4j:1.7.30'
compile 'org.slf4j:log4j-over-slf4j:1.7.30'
compile 'org.slf4j:slf4j-api:1.7.30'
testImplementation 'junit:junit:4.12'
testImplementation 'org.mockito:mockito-core:2.28.2'
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/mirrors_mongodb/mlab-data-api.git
git@gitee.com:mirrors_mongodb/mlab-data-api.git
mirrors_mongodb
mlab-data-api
mlab-data-api
master

搜索帮助