クラウド上にITS + VCS + Build環境がほしくて下記を選定
CloudBeesのみでVCS + Build環境は実現できるのだが、ITSが付いてない。。
ので、ITS + VCSをBitbucketで実現し、CloudBeesでBuildする方法にした。
| buildscript { | |
| repositories { | |
| mavenCentral() | |
| maven { url 'http://dl.bintray.com/robfletcher/gradle-plugins' } | |
| } | |
| dependencies { | |
| classpath 'org.gradle.plugins:gradle-compass:1.0.7' | |
| } | |
| } |
| knife solo prepare [email protected] |
| d-i mirror/http/proxy string http://proxy:port/ |
| [リンク](#section1) | |
| <a name="section1"></a> | |
| # アンカー |
| <!doctype html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <title>js-function-measurement</title> | |
| </head> | |
| <body> | |
| <style type="text/css"> | |
| dd {position: relative; width: 250px;} | |
| [id^=item] { font-weight: bold; position: absolute; right: 0;} |
| ext { | |
| webdriver { | |
| chrome { | |
| driver = file('tools/chromedriver/chromedriver') | |
| } | |
| } | |
| } | |
| task setupChromeDriver << { | |
| ext { |
JUnit実践入門
| [ | |
| // open a docblock with enter | |
| { "keys": ["enter"], "command": "jsdocs", | |
| "context": [ | |
| { "key": "setting.auto_indent", "operator": "equal", "operand": true, "match_all": true }, | |
| { "key": "selection_empty", "operator": "equal", "operand": true, "match_all": true }, | |
| { "key": "auto_complete_visible", "operator": "equal", "operand": false, "match_all": true }, | |
| { "key": "preceding_text", "operator": "regex_contains", "operand": "^\\s*(\\/\\*|###)\\*$", "match_all": true } | |
| ] | |
| }, |