加载中
Lua for IntelliJ IDEA

Lua IDE for IntelliJ IDEA Download feature progress Syntax highlighting ok Highlighting Global ok Highlighting local/param ok Find usages ok Rename(Shift + F6) ok Go to definiti...

2017/01/12 12:04
1.5K
SQLite 文件使用 Memory 模式

SQLiteConnection source = new SQLiteConnection("Data Source=c:\\test.db"); source.Open(); using (SQLiteConnection destination = new SQLiteConnection("Data Source=:memory:")) { ...

2015/10/27 19:24
8.5K
Jenkins Git 变更记录乱码问题

设置jenkins所在服务器环境变量,添加JAVA_TOOL_OPTIONS

2015/08/31 15:06
943
Gradle插件Debug

设置环境变量 unix,linux export GRADLE_OPTS="-Xdebug -Xrunjdwp:transport=dt_socket,address=9999,server=y,suspend=n” windows set GRADLE_OPTS="-Xdebug -Xrunjdwp:transport=dt_sock...

2015/06/24 14:23
154
Gradle/Ant 合并AndroidManifest

<!-- lang: groovy --> dependencies {   compile fileTree(dir:"${System.env.ANDROID_HOME}/tools/lib", include:["*.jar"]) } task merge << {   ant {     taskdef(name:"mergemanifest", c...

2015/03/31 09:33
791
Gradle : Running another build from a build

build.gradle task build(type: GradleBuild) { buildFile = 'other.gradle' tasks = [ 'hello'] } other.gradle task hello << { println "hello from the other build." } O...

2014/06/21 10:56
137
Gradle FTP上传文件

configurations {     ftpAntTask } repositories {   mavenCentral() } dependencies {     ftpAntTask("org.apache.ant:ant-commons-net:1.8.4") {         module(...

2014/06/19 18:24
794
Cocos2d-x Lua Bindings 各种配置备忘

备忘 安装Python 2.7+32位 一定是要32位的,否则在生成lua时会报***不是有效的 Win32***.的错误 下载并安装Pyyml 地址 ,并将PYTHON_ROOT加入环境变量中 如果安装的过程中报找不到Python 2....

2014/06/05 11:10
522
Gradle 取相对路径

import java.nio.file.Path; import java.nio.file.Paths; def path1 = ... def path2 = ... task hello { Path pathBase = Paths.get(path1); Path pathAbsolute = Paths.get(pat...

2014/05/23 18:03
3.5K
Gradle 中引用外部Gradle脚本,相当于import/include功能

原文地址 Configuring the project using an external build script You can configure the current project using an external build script. All of the Gradle build language is availab...

2014/05/21 13:42
1.5K
Gradle 动态创建Task+依赖+增量构建

defaultTasks 'main' def resource_dir = new File("resources") task main { fileTree(resource_dir) { include "*.zip" }.each { File f -> def output = new Fil...

2014/05/13 17:17
1.6K
Gradle 接受用户输入

某些时候构建时需要通过控制台接受用户输入参数 def myName task hello() << {   myName = System.console().readLine("\nEnter your name:")   println "name is $myName" } defaultTasks(...

2014/04/30 23:49
1.2K
Gradle 加载 properties 文件

prj.properties build_name = my_prj build.gradle def pFile = file("prj.properties") loadProperties = {      Properties p = new Properties()   pFile.withInputStream { stream->     p...

2014/04/30 22:32
9.2K

没有更多内容

加载失败,请刷新页面

没有更多内容

返回顶部
顶部