1 | |
package org.apache.maven.plugins.shade.pom; |
2 | |
|
3 | |
|
4 | |
|
5 | |
|
6 | |
|
7 | |
|
8 | |
|
9 | |
|
10 | |
|
11 | |
|
12 | |
|
13 | |
|
14 | |
|
15 | |
|
16 | |
|
17 | |
|
18 | |
|
19 | |
|
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 | |
|
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 | |
} |