Remove the .docker file Maven profile activation TINKERPOP-1897
Project: http://git-wip-us.apache.org/repos/asf/tinkerpop/repo Commit: http://git-wip-us.apache.org/repos/asf/tinkerpop/commit/6b1f4997 Tree: http://git-wip-us.apache.org/repos/asf/tinkerpop/tree/6b1f4997 Diff: http://git-wip-us.apache.org/repos/asf/tinkerpop/diff/6b1f4997 Branch: refs/heads/TINKERPOP-1897 Commit: 6b1f4997f8081ceff20f4644b4d552d00c9af5b9 Parents: 579bc44 Author: Florian Hockmann <[email protected]> Authored: Wed May 23 18:32:01 2018 +0200 Committer: Florian Hockmann <[email protected]> Committed: Wed May 23 18:32:46 2018 +0200 ---------------------------------------------------------------------- docs/src/dev/developer/development-environment.asciidoc | 4 +--- gremlin-console/pom.xml | 6 ------ gremlin-server/pom.xml | 6 ------ 3 files changed, 1 insertion(+), 15 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/tinkerpop/blob/6b1f4997/docs/src/dev/developer/development-environment.asciidoc ---------------------------------------------------------------------- diff --git a/docs/src/dev/developer/development-environment.asciidoc b/docs/src/dev/developer/development-environment.asciidoc index cb20d4e..ae97d1a 100644 --- a/docs/src/dev/developer/development-environment.asciidoc +++ b/docs/src/dev/developer/development-environment.asciidoc @@ -136,9 +136,7 @@ The Docker images can be built from the command line with: ---- mvn clean install -Pdocker-images ---- -which enables the "docker-images" Maven profile or in a more automated fashion simply add a `.docker` file to the -directories of the `gremlin-server` and/or `gremlin-console` modules which will signify to Maven that Docker is present -in the environment. +which enables the "docker-images" Maven profile. [[release-environment]] http://git-wip-us.apache.org/repos/asf/tinkerpop/blob/6b1f4997/gremlin-console/pom.xml ---------------------------------------------------------------------- diff --git a/gremlin-console/pom.xml b/gremlin-console/pom.xml index 8e8b357..b5dca0e 100644 --- a/gremlin-console/pom.xml +++ b/gremlin-console/pom.xml @@ -338,12 +338,6 @@ limitations under the License. <profile> <id>docker-images</id> - <activation> - <activeByDefault>false</activeByDefault> - <file> - <exists>.docker</exists> - </file> - </activation> <build> <plugins> <plugin> http://git-wip-us.apache.org/repos/asf/tinkerpop/blob/6b1f4997/gremlin-server/pom.xml ---------------------------------------------------------------------- diff --git a/gremlin-server/pom.xml b/gremlin-server/pom.xml index b2c3435..e361c9e 100644 --- a/gremlin-server/pom.xml +++ b/gremlin-server/pom.xml @@ -246,12 +246,6 @@ limitations under the License. <profile> <id>docker-images</id> - <activation> - <activeByDefault>false</activeByDefault> - <file> - <exists>.docker</exists> - </file> - </activation> <build> <plugins> <plugin>
