Coverage Report - org.apache.maven.plugins.shade.pom.PomWriter
 
Classes in this File Line Coverage Branch Coverage Complexity
PomWriter
0%
0/18
0%
0/6
2.5
 
 1  
 package org.apache.maven.plugins.shade.pom;
 2  
 
 3  
 /*
 4  
  * Licensed to the Apache Software Foundation (ASF) under one
 5  
  * or more contributor license agreements.  See the NOTICE file
 6  
  * distributed with this work for additional information
 7  
  * regarding copyright ownership.  The ASF licenses this file
 8  
  * to you under the Apache License, Version 2.0 (the
 9  
  * "License"); you may not use this file except in compliance
 10  
  * with the License.  You may obtain a copy of the License at
 11  
  *
 12  
  *   http://www.apache.org/licenses/LICENSE-2.0
 13  
  *
 14  
  * Unless required by applicable law or agreed to in writing,
 15  
  * software distributed under the License is distributed on an
 16  
  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
 17  
  * KIND, either express or implied.  See the License for the
 18  
  * specific language governing permissions and limitations
 19  
  * under the License.
 20  
  */
 21  
 
 22  
 import org.apache.maven.model.Model;
 23  
 import org.jdom.Document;
 24  
 import org.jdom.Element;
 25  
 import org.jdom.Namespace;
 26  
 import org.jdom.output.Format;
 27  
 
 28  
 import java.io.IOException;
 29  
 import java.io.Writer;
 30  
 
 31  
 /**
 32  
  * @author Jason van Zyl
 33  
  */
 34  0
 public class PomWriter
 35  
 {
 36  
     public static void write( Writer w, Model newModel )
 37  
         throws IOException
 38  
     {
 39  0
         write( w, newModel, false );
 40  0
     }
 41  
 
 42  
     public static void write( Writer w, Model newModel, boolean namespaceDeclaration )
 43  
         throws IOException
 44  
     {
 45  0
         Element root = new Element( "project" );
 46  
 
 47  0
         if ( namespaceDeclaration )
 48  
         {
 49  0
             String modelVersion = newModel.getModelVersion();
 50  
 
 51  0
             Namespace pomNamespace = Namespace.getNamespace( "", "http://maven.apache.org/POM/" + modelVersion );
 52  
 
 53  0
             root.setNamespace( pomNamespace );
 54  
 
 55  0
             Namespace xsiNamespace = Namespace.getNamespace( "xsi", "http://www.w3.org/2001/XMLSchema-instance" );
 56  
 
 57  0
             root.addNamespaceDeclaration( xsiNamespace );
 58  
 
 59  0
             if ( root.getAttribute( "schemaLocation", xsiNamespace ) == null )
 60  
             {
 61  0
                 root.setAttribute( "schemaLocation",
 62  
                                    "http://maven.apache.org/POM/" + modelVersion + " http://maven.apache.org/maven-v"
 63  
                                        + modelVersion.replace( '.', '_' ) + ".xsd", xsiNamespace );
 64  
             }
 65  
         }
 66  
 
 67  0
         Document doc = new Document( root );
 68  
 
 69  0
         MavenJDOMWriter writer = new MavenJDOMWriter();
 70  
 
 71  0
         String encoding = newModel.getModelEncoding() != null ? newModel.getModelEncoding() : "UTF-8";
 72  
 
 73  0
         Format format = Format.getPrettyFormat().setEncoding( encoding );
 74  
 
 75  0
         writer.write( newModel, doc, w, format );
 76  0
     }
 77  
 }