1 Star 0 Fork 3

Jolly/WhereHows

forked from zlong/WhereHows 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
build.gradle 1.52 KB
一键复制 编辑 原始数据 按行查看 历史
version = '1.0'
buildscript {
apply from: 'gradle/scripts/repositories.gradle'
buildscript.repositories.addAll(project.repositories)
dependencies {
classpath 'gradle.plugin.com.palantir:jacoco-coverage:0.3.0'
classpath 'gradle.plugin.nl.javadude.gradle.plugins:license-gradle-plugin:0.13.1'
classpath 'org.kt3k.gradle.plugin:coveralls-gradle-plugin:2.8.1'
classpath 'com.moowork.gradle:gradle-node-plugin:1.1.1'
}
}
configurations.all {
exclude group: 'org.slf4j', module: 'slf4j-log4j12'
exclude group: 'log4j'
resolutionStrategy {
dependencySubstitution {
substitute module('org.slf4j:slf4j-log4j12') with module('ch.qos.logback:logback-classic:1.1.7')
//prefer 'log4j-over-slf4j' over 'log4j'
}
}
}
subprojects {
task excludegroup(type: Test) {
useTestNG() {
excludeGroups 'needConfig'
}
testLogging {
showStandardStreams = true
}
}
}
apply from: 'gradle/scripts/coverage.gradle'
apply from: 'gradle/scripts/dependency.gradle'
apply from: 'gradle/scripts/ide.gradle'
apply from: 'gradle/scripts/license.gradle'
task wrapper(type: Wrapper) {
gradleVersion = '2.14'
}
if (project.hasProperty('overrideBuildEnvironment')) {
//The property is automatically passed to the Gradle build when the project is built at LinkedIn
//The property contains the file path to a script plugin that 'adapts' this OS project to LinkedIn
//In order to adapt the project, we need to apply this script plugin:
apply from: project.overrideBuildEnvironment
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/zhlei2004/WhereHows.git
git@gitee.com:zhlei2004/WhereHows.git
zhlei2004
WhereHows
WhereHows
master

搜索帮助