View Javadoc

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 java.io.IOException;
23  import java.io.Writer;
24  
25  import org.apache.maven.model.Model;
26  import org.jdom.Document;
27  import org.jdom.Element;
28  import org.jdom.Namespace;
29  import org.jdom.output.Format;
30  
31  /** @author Jason van Zyl */
32  public class PomWriter
33  {
34      public static void write( Writer w,
35                                Model newModel )
36          throws IOException
37          {
38          write( w, newModel, false );
39      }
40  
41      public static void write( Writer w,
42                                Model newModel,
43                                boolean namespaceDeclaration )
44          throws IOException
45      {
46          Element root = new Element( "project" );
47  
48          if ( namespaceDeclaration )
49          {
50              String modelVersion = newModel.getModelVersion();
51  
52              Namespace pomNamespace = Namespace.getNamespace( "", "http://maven.apache.org/POM/" + modelVersion );
53  
54              root.setNamespace( pomNamespace );
55  
56              Namespace xsiNamespace = Namespace.getNamespace( "xsi", "http://www.w3.org/2001/XMLSchema-instance" );
57  
58              root.addNamespaceDeclaration( xsiNamespace );
59  
60              if ( root.getAttribute( "schemaLocation", xsiNamespace ) == null )
61              {
62                  root.setAttribute( "schemaLocation", "http://maven.apache.org/POM/" + modelVersion
63                      + " http://maven.apache.org/maven-v" + modelVersion.replace( '.', '_' ) + ".xsd", xsiNamespace );
64              }
65          }
66  
67          Document doc = new Document( root );
68  
69          MavenJDOMWriter writer = new MavenJDOMWriter();
70  
71          String encoding = newModel.getModelEncoding() != null ? newModel.getModelEncoding() : "UTF-8";
72  
73          Format format = Format.getPrettyFormat().setEncoding( encoding );
74  
75          writer.write( newModel, doc, w, format );
76      }
77  }