1 | |
package org.apache.torque.mojo; |
2 | |
|
3 | |
import java.io.File; |
4 | |
|
5 | |
import org.apache.maven.plugin.MojoExecutionException; |
6 | |
import org.apache.torque.mojo.morph.MorphRequest; |
7 | |
import org.apache.torque.mojo.morph.Morpher; |
8 | |
import org.apache.torque.mojo.morph.SchemaMorpher; |
9 | |
|
10 | |
|
11 | |
|
12 | |
|
13 | |
|
14 | |
|
15 | |
|
16 | 0 | public class MorphSchemaMojo extends AbstractMorphSingleMojo { |
17 | |
|
18 | |
|
19 | |
|
20 | |
|
21 | |
|
22 | |
|
23 | |
|
24 | |
|
25 | |
private File newSchemaXMLFile; |
26 | |
|
27 | |
|
28 | |
|
29 | |
|
30 | |
|
31 | |
|
32 | |
|
33 | |
private File oldSchemaXMLFile; |
34 | |
|
35 | |
@Override |
36 | |
protected void beforeExecution() { |
37 | 0 | setNewFile(newSchemaXMLFile); |
38 | 0 | setOldFile(oldSchemaXMLFile); |
39 | 0 | } |
40 | |
|
41 | |
@Override |
42 | |
protected void executeMojo() throws MojoExecutionException { |
43 | 0 | getLog().info("------------------------------------------------------------------------"); |
44 | 0 | getLog().info("Converting schema XML file"); |
45 | 0 | getLog().info("------------------------------------------------------------------------"); |
46 | 0 | super.executeMojo(); |
47 | 0 | } |
48 | |
|
49 | |
@Override |
50 | |
protected Morpher getMorpher(final MorphRequest request, final String artifactId) { |
51 | 0 | return new SchemaMorpher(request, artifactId); |
52 | |
} |
53 | |
|
54 | |
public File getNewSchemaXMLFile() { |
55 | 0 | return newSchemaXMLFile; |
56 | |
} |
57 | |
|
58 | |
public void setNewSchemaXMLFile(final File newSchemaXMLFile) { |
59 | 0 | this.newSchemaXMLFile = newSchemaXMLFile; |
60 | 0 | } |
61 | |
|
62 | |
public File getOldSchemaXMLFile() { |
63 | 0 | return oldSchemaXMLFile; |
64 | |
} |
65 | |
|
66 | |
public void setOldSchemaXMLFile(final File oldSchemaXMLFile) { |
67 | 0 | this.oldSchemaXMLFile = oldSchemaXMLFile; |
68 | 0 | } |
69 | |
} |