1/*
2 * Copyright 2018 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 *      http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17package com.android.tools.build.jetifier.processor.transform.pom
18
19import com.android.tools.build.jetifier.core.pom.PomDependency
20import org.jdom2.Document
21import org.jdom2.Element
22
23/**
24 * Transforms the current data into XML '<dependency>' node.
25 */
26fun PomDependency.toXmlElement(document: Document): Element {
27    val node = Element("dependency")
28    node.namespace = document.rootElement.namespace
29
30    XmlUtils.addStringNodeToNode(node, "groupId", groupId)
31    XmlUtils.addStringNodeToNode(node, "artifactId", artifactId)
32    XmlUtils.addStringNodeToNode(node, "version", version)
33    XmlUtils.addStringNodeToNode(node, "classifier", classifier)
34    XmlUtils.addStringNodeToNode(node, "type", type)
35    XmlUtils.addStringNodeToNode(node, "scope", scope)
36    XmlUtils.addStringNodeToNode(node, "systemPath", systemPath)
37    XmlUtils.addStringNodeToNode(node, "optional", optional)
38    return node
39}