赞
踩
apply plugin: 'java'//添加java插件 apply plugin: 'maven'//添加maven插件 group 'com.jeff' version '170325' dependencies {//添加依赖库 testCompile group: 'junit', name: 'junit', version: '4.11' compile group: 'org.apache.httpcomponents', name:'httpasyncclient', version:'4.1.1' compile group: 'com.alibaba', name: 'fastjson', version: '1.2.12' //compile:编译时必须。runtime:运行时必须,包括编译时。testCompile:测试编译时必须。testRuntime:测试运行时必须,包括编译时。 } sourceCompatibility = 1.8//指定编码环境 targetCompatibility = 1.8//指定编译环境 tasks.withType(JavaCompile) {//设置编码 options.encoding = "UTF-8" } sourceSets { main { java {//源文件 srcDir 'src' } resources {//项目资源文件 srcDir 'res' } } test { java { srcDirs 'junit', 'test' } } } repositories {//添加资源库 jcenter()//java和android仓库 maven {//添加maven私库 url"http://127.0.0.1:8081/nexus/content/repositories/" } mavenLocal()//添加Maven本地资源库 mavenCentral()//添加Maven中央资源库 }
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。