Skip to content

Commit 7f18644

Browse files
committed
Preparing for 1.2: docs, version, repo.
1 parent f762383 commit 7f18644

File tree

5 files changed

+43
-5
lines changed

5 files changed

+43
-5
lines changed

CHANGELOG.md

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,45 @@
11
# Changelog
22

3+
## Version 1.2 (2014-07-28)
4+
5+
#### Docker Remote API
6+
It is now possible to use the Docker Remote API instead of the `docker` command line tool. See the [docs](README.md#docker-remote-api) for more information (PR #10). This is particularly useful for users who do not have Docker installed locally.
7+
8+
#### addFile
9+
* Fixed `addFile` accepting a copySpec as an argument (issue #4).
10+
* `addFile` now accepts the destination path as an optional second argument (default: `/`)
11+
12+
#### Base image
13+
* Fixed setting of a custom base image both through the plugin extension or a task property (issue #11).
14+
* Fixed default base image detection based on project's `targetCompatibility`.
15+
* Added default base image for Java 8 (PR #9).
16+
17+
#### External Dockerfile
18+
* Supply an external Dockerfile instead of defining it in the build script. See the [docs](README.md#building-your-dockerfile) (issue #13).
19+
* Mix and match loading external Dockerfiles and extending in the build script.
20+
21+
#### Gradle 2.0
22+
The plugin is now compatible with Gradle 2.0 (see the [docs](README.md#note-to-gradle-1.x-users) if you are using Gradle 1.x)
23+
24+
#### Image tagging
25+
* Possible to set docker image tag version to something else than *:latest* (PR #5).
26+
* Fixed setting of the image tag name and version (issue #15).
27+
28+
Many thanks to the contributors
29+
30+
* [@aglover](https://github.com/aglover)
31+
* [@Teudimundo](https://github.com/Teudimundo)
32+
* [@sfitts](https://github.com/sfitts)
33+
* [@frvi](https://github.com/frvi)
34+
* [@mattgruter](https://github.com/mattgruter)
35+
36+
337
## Version 1.1.1 (2014-06-13)
438
* Possible to build without specifying group.
539
* Failing gradle build if Docker execution fails.
640

741
Many thanks to the contributors:
42+
843
* [@Teudimundo](https://github.com/Teudimundo)
944
* [@frvi](https://github.com/frvi)
1045

@@ -20,6 +55,7 @@ Many thanks to the contributors:
2055
* Fixed path seperator bug for integration testing on Windows.
2156

2257
Many thanks to the contributors:
58+
2359
* [@sfitts](https://github.com/sfitts)
2460
* [@kernel164](https://github.com/kernel164)
2561
* [@nicarlsson](https://github.com/nicarlsson)

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@
44

55
This plugin for [Gradle](http://www.gradle.org/) adds the capability to build und publish [Docker](http://docker.io/) images from the build script.
66

7+
See the [change log](CHANGELOG.md) for information about the latest changes.
8+
79
## Extending the application plugin
810
The gradle-docker plugin adds a task `distDocker` if the project already has the [application plugin](http://www.gradle.org/docs/current/userguide/application_plugin.html) applied:
911

@@ -30,7 +32,7 @@ apply plugin: 'docker'
3032
buildscript {
3133
repositories { jcenter() }
3234
dependencies {
33-
classpath 'se.transmode.gradle:gradle-docker:1.1.1'
35+
classpath 'se.transmode.gradle:gradle-docker:1.2'
3436
}
3537
}
3638

examples/application/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ apply plugin: 'docker'
55
buildscript {
66
repositories { mavenLocal(); jcenter() }
77
dependencies {
8-
classpath 'se.transmode.gradle:gradle-docker:1.2-SNAPSHOT'
8+
classpath 'se.transmode.gradle:gradle-docker:1.2'
99
}
1010
}
1111

examples/simple/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ apply plugin: 'docker'
33
buildscript {
44
repositories { mavenLocal(); jcenter() }
55
dependencies {
6-
classpath 'se.transmode.gradle:gradle-docker:1.2-SNAPSHOT'
6+
classpath 'se.transmode.gradle:gradle-docker:1.2'
77
}
88
}
99

gradle.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
group=se.transmode.gradle
2-
version=1.2-SNAPSHOT
2+
version=1.2
33

44
# use gradle daemon by default
55
org.gradle.daemon = true
66

77
# ArtifactoryOSS / Bintray
88
artifactoryUrl = https://oss.jfrog.org/artifactory
9-
artifactoryRepo = oss-snapshot-local
9+
artifactoryRepo = oss-release-local
1010
bintrayUser = myUser
1111
bintrayKey = myKey

0 commit comments

Comments
 (0)