Skip to content

Commit

Permalink
Updating docker plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
Joris De Winne committed Nov 28, 2016
1 parent 521286c commit 2e4c6d5
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ deploy:
provider: releases
api_key:
secure: aoVXZyLOBmB4Q2lLKLaqEN8zcqN3K3/3agRBA1znM1PLeqXSE3CwQe6sHkX6BrfMoDDtjqeepDMgJ9TsqJFq+lPY+HuVFzOqGlrWlIZHBUKI3hmfjgM/61CkdK2eBO42Ym4tqCQ4L1Tp42fcrB6M/a/0TGI5ENW2bJk8+ofRT8M=
file: build/libs/xlr-xldeploy-plugin-2.4.0.jar
file: build/libs/xlr-xldeploy-plugin-2.5.0.jar
skip_cleanup: true
on:
all_branches: true
Expand Down
19 changes: 11 additions & 8 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,22 +1,25 @@
plugins {
id "com.github.hierynomus.license" version "0.13.0"
id "com.xebialabs.xlr.docker" version "1.2.1"
id "com.github.hierynomus.license" version "0.13.0"
id "com.xebialabs.xl.docker" version "1.0.0"
}

version="2.4.0"
version = "2.5.0"

apply plugin: 'java'
apply plugin: 'idea'
apply plugin: 'eclipse'
apply plugin: 'maven'

xlrDocker {
compileVersion = 'v6.0.0.1'
runVersion = 'v6.0.0.1'
xlDocker {
compileImage = 'xebialabs/xlr_dev_compile'
compileVersion = 'v6.0.0.1'
runImage = 'xebialabs/xlr_dev_run'
runVersion = 'v6.0.0.1'
runPortMapping = '15516:5516'
}

license {
header rootProject.file('src/main/license/xebialabs_community.license')
strictCheck false
header rootProject.file('src/main/license/xebialabs_community.license')
strictCheck false
}
1
2 changes: 1 addition & 1 deletion src/test/resources/docker/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,4 @@ xlr:
links:
- xld
ports:
- "5516:5516"
- "15516:5516"

0 comments on commit 2e4c6d5

Please sign in to comment.