1 Star 0 Fork 1

卢本伟/java-gitlab-api

forked from 阿布/java-gitlab-api 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
build.gradle 1001 Bytes
一键复制 编辑 原始数据 按行查看 历史
Tim Olshansky 提交于 2016-08-13 10:29 . Update gradle settings
buildscript {
tasks.withType(JavaCompile) {
options.encoding = 'UTF-8'
}
}
apply plugin: 'java'
apply plugin: 'maven'
// IDE plugins
apply plugin: 'idea'
apply plugin: 'eclipse'
sourceCompatibility = 1.7
targetCompatibility = 1.7
group = 'org.gitlab'
version = '1.2.7-SNAPSHOT'
repositories {
mavenLocal()
mavenCentral()
}
dependencies {
compile(group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version: '2.5.3')
compile(group: 'commons-io', name: 'commons-io', version: '2.4')
testCompile(group: 'org.hamcrest', name: 'hamcrest-all', version: '1.3')
testCompile(group: 'junit', name: 'junit', version: '4.12')
}
jar {
manifest { attributes 'Gradle-Version': gradle.gradleVersion }
}
install {
repositories.mavenInstaller { pom.artifactId = 'java-gitlab-api' }
}
task sourcesJar(type: Jar, dependsOn:classes) {
classifier = 'sources'
from sourceSets.main.allSource
}
artifacts { archives sourcesJar }
task wrapper(type: Wrapper) {
gradleVersion = '2.4'
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/lu_benwei233/java-gitlab-api.git
git@gitee.com:lu_benwei233/java-gitlab-api.git
lu_benwei233
java-gitlab-api
java-gitlab-api
master

搜索帮助