Gradle设置编码为UTF-8 Posted on 2016/12/02 by neohope — No Comments ↓ 下面的两部分,分别设置了java及javadoc的编码为UTF-8 build.gradle tasks.withType(JavaCompile) { options.encoding = 'UTF-8' } tasks.withType(Javadoc) { options.encoding = 'UTF-8' } Share the post "Gradle设置编码为UTF-8" FacebookGoogle+LinkedInTwitterWeiboE-mail
Gradle设置代理 Posted on 2016/04/17 by neohope — No Comments ↓ 1、设置socket代理 编辑gradle.properties,新增下面的内容 org.gradle.jvmargs=-DsocksProxyHost=IP -DsocksProxyPort=PORT Share the post "Gradle设置代理" FacebookGoogle+LinkedInTwitterWeiboE-mail