This is an automated email from the ASF dual-hosted git repository. lburgazzoli pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/camel-k.git
The following commit(s) were added to refs/heads/master by this push: new d74fbe4 docs: remove old references to the runtime d74fbe4 is described below commit d74fbe48d699d69fb7d7b5323c4233416554856b Author: lburgazzoli <lburgazz...@gmail.com> AuthorDate: Fri Aug 21 13:32:59 2020 +0200 docs: remove old references to the runtime --- docs/modules/ROOT/pages/developers.adoc | 26 -------------------------- 1 file changed, 26 deletions(-) diff --git a/docs/modules/ROOT/pages/developers.adoc b/docs/modules/ROOT/pages/developers.adoc index 29aea92..8e098d7 100644 --- a/docs/modules/ROOT/pages/developers.adoc +++ b/docs/modules/ROOT/pages/developers.adoc @@ -67,7 +67,6 @@ This executes a full build of the Go code. If you need to build the components s * `make build-operator`: to build the operator binary only. * `make build-kamel`: to build the `kamel` client tool only. -* `make build-runtime`: to build the Java-based runtime code only. After a successful build, if you're connected to a Docker daemon, you can build the operator Docker image by running: @@ -76,31 +75,6 @@ After a successful build, if you're connected to a Docker daemon, you can build make images ---- -[[push-snapshot]] -== Push runtime snapshot - -For the Java bits in runtime you can push to the Apache Snapshot repository with: - -* `make push-runtime-snapshot`: to push the Java-based runtime snapshot JARs. - -In your settings.xml you'll need to have the correct ASF credentials to push. - -[source,xml] ----- - <server> - <id>apache.snapshots.https</id> - <username>username</username> - <password>password</password> - </server> - <server> - <id>apache.releases.https</id> - <username>username</username> - <password>password</password> - </server> ----- - -Don't forget to first run a `make build-runtime` before pushing the snapshot. - The above command produces a `camel-k` image with name `docker.io/apache/camel-k`. Sometimes you might need to produce camel-k images that need to be pushed to the custom repository e.g. `docker.io/myrepo/camel-k`, to do that you can pass a parameter `imgDestination` to the make as shown below: [source]