| {{/* |
| Licensed to the Apache Software Foundation (ASF) under one |
| or more contributor license agreements. See the NOTICE file |
| distributed with this work for additional information |
| regarding copyright ownership. The ASF licenses this file |
| to you under the Apache License, Version 2.0 (the |
| "License"); you may not use this file except in compliance |
| with the License. You may obtain a copy of the License at |
| |
| http://www.apache.org/licenses/LICENSE-2.0 |
| |
| Unless required by applicable law or agreed to in writing, |
| software distributed under the License is distributed on an |
| "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY |
| KIND, either express or implied. See the License for the |
| specific language governing permissions and limitations |
| under the License. |
| */}} |
| {{/* |
| Generates an XML snippet for the maven artifact. |
| IMPORTANT: the whitespace is relevant. Do not change without looking at the |
| rendered documentation. |
| */}} |
| {{ $scalaVersion := "" }} |
| {{ $testScope := "" }} |
| {{ $providedScope := "" }} |
| {{ $testClassifier := "" }} |
| |
| {{ $artifactId := .Get 0 }} |
| |
| {{ $path := .Page.Path }} |
| |
| {{ range after 1 .Params }} |
| {{ if eq . "withScalaVersion" }} |
| {{ $scalaVersion = "true" }} |
| {{ else if eq . "withTestScope" }} |
| {{ $testScope = "true" }} |
| {{ else if eq . "withProvidedScope" }} |
| {{ $providedScope = "true" }} |
| {{ else if eq . "withTestClassifier" }} |
| {{ $testClassifier = "true" }} |
| {{ else }} |
| {{ errorf "%q: Invalid use of artifact shortcode. Unknown flag `%s`" $path . }} |
| {{ end }} |
| {{ end }} |
| |
| {{ $hash := md5 now }} |
| |
| {{ if ne $scalaVersion "" }} |
| {{ $artifactId = printf "%s%s" $artifactId $.Site.Params.ScalaVersion }} |
| {{ end }} |
| |
| <div id="{{ $hash }}" onclick="selectTextAndCopy('{{ $hash }}')"class="highlight"><pre class="chroma"><code class="language-xml" data-lang="xml"><span class="nt"><dependency></span> |
| <span class="nt"><groupId></span>org.apache.flink<span class="nt"></groupId></span> |
| <span class="nt"><artifactId></span>{{- $artifactId -}}<span class="nt"></artifactId></span> |
| <span class="nt"><version></span>{{- site.Params.Version -}}<span class="nt"></version></span>{{ if ne $testScope "" }} |
| <span class="nt"><scope></span>test<span class="nt"></scope></span>{{ end }}{{ if ne $providedScope "" }} |
| <span class="nt"><scope></span>provided<span class="nt"></scope></span>{{ end }}{{ if ne $testClassifier "" }} |
| <span class="nt"><classifier></span>tests<span class="nt"></classifier></span>{{ end }} |
| <span class="nt"></dependency></span></code></pre></div> |
| <div class="book-hint info" style="text-align:center;display:none" copyable="flink-module" copyattribute="{{ $hash }}"> |
| Copied to clipboard! |
| </div> |