プロジェクトのルートPOMに以下の設定が書かれている必要がある。
SCM情報の設定
| class HelloPublisher < Jenkins::Tasks::Publisher | |
| display_name "Hello publisher" | |
| # Invoked with the form parameters when this extension point | |
| # is created from a configuration screen. | |
| def initialize(attrs = {}) | |
| end |
| set autoupdategist | |
| set noautofocus | |
| let barposition = "top" | |
| let highlight = "#ffff00" | |
| let typelinkhintsdelay = 0 | |
| let hintcharacters = "fdsawerjkiop" | |
| let locale="jp" | |
| let scrollstep = 100 | |
| map ; : |
| ❯ mvn -e dbflute:download | |
| [INFO] Error stacktraces are turned on. | |
| [INFO] Scanning for projects... | |
| [INFO] | |
| [INFO] ------------------------------------------------------------------------ | |
| [INFO] Building Example Database Manager 0.0.1-SNAPSHOT | |
| [INFO] ------------------------------------------------------------------------ | |
| [INFO] | |
| [INFO] --- dbflute-maven-plugin:1.1.0-RC2:download (default-cli) @ example-databases --- | |
| [INFO] ------------------------------------------------------------------------ |
| -- 多分こんな感じでできる | |
| local x_hub_signature = ngx.hader['X_Hub_Signature'] | |
| local body = ngx.req.read_body | |
| local expected_signature = 'sha1=' .. ngx.hmac_sha1(ngx.var.secret_token, body) | |
| if expected_signature ~= x_hub_signature then | |
| ngx.log(ngx.WARN, 'Invalid access detected') | |
| ngx.header.content_type = 'text/plain' | |
| ngx.status = ngx.HTTP_UNAUTHORIZED | |
| ngx.print('401 Access Denied') |
DWORD(32ビット値) で以下を追加
| // Use Gists to store code you would like to remember later on | |
| console.log(window); // log the "window" object to the console |
| FROM r-base | |
| RUN apt-get -y update \ | |
| && apt-get -y install vim build-essential default-jdk default-jre \ | |
| && R CMD javareconf \ | |
| && apt-get clean \ | |
| && rm -rf /var/lib/apt/lists/ | |
| RUN install2.r --error RJDBC |