1 |
|
package org.apache.torque.mojo; |
2 |
|
|
3 |
|
import java.io.File; |
4 |
|
import java.io.IOException; |
5 |
|
|
6 |
|
import org.apache.commons.io.FileUtils; |
7 |
|
import org.apache.maven.plugin.MojoExecutionException; |
8 |
|
import org.kuali.core.db.torque.KualiTorqueDataDumpTask; |
9 |
|
|
10 |
|
|
11 |
|
|
12 |
|
|
13 |
|
|
14 |
|
|
15 |
|
|
|
|
| 0% |
Uncovered Elements: 22 (22) |
Complexity: 8 |
Complexity Density: 0.57 |
|
16 |
|
public class ExportDataMojo extends ExportMojo { |
17 |
|
|
18 |
|
|
19 |
|
|
20 |
|
|
21 |
|
|
22 |
|
|
23 |
|
|
24 |
|
private String dateFormat; |
25 |
|
|
26 |
|
|
27 |
|
|
28 |
|
|
29 |
|
|
30 |
|
|
31 |
|
|
32 |
|
private File dataXMLDir; |
33 |
|
|
34 |
|
|
35 |
|
|
36 |
|
|
|
|
| 0% |
Uncovered Elements: 5 (5) |
Complexity: 1 |
Complexity Density: 0.2 |
|
37 |
0
|
@Override... |
38 |
|
protected void configureTask() throws MojoExecutionException { |
39 |
0
|
KualiTorqueDataDumpTask task = new KualiTorqueDataDumpTask(); |
40 |
0
|
task.setBuildDirectory(new File(getProject().getBuild().getDirectory())); |
41 |
0
|
setAntTask(task); |
42 |
0
|
super.configureTask(); |
43 |
0
|
makeOutputDir(); |
44 |
|
} |
45 |
|
|
|
|
| 0% |
Uncovered Elements: 7 (7) |
Complexity: 3 |
Complexity Density: 0.6 |
|
46 |
0
|
protected void makeOutputDir() throws MojoExecutionException {... |
47 |
0
|
if (getDataXMLDir().exists()) { |
48 |
0
|
return; |
49 |
|
} |
50 |
0
|
try { |
51 |
0
|
FileUtils.forceMkdir(getDataXMLDir()); |
52 |
|
} catch (IOException e) { |
53 |
0
|
throw new MojoExecutionException("Error creating output directory", e); |
54 |
|
} |
55 |
|
} |
56 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
57 |
0
|
public File getDataXMLDir() {... |
58 |
0
|
return dataXMLDir; |
59 |
|
} |
60 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
61 |
0
|
public void setDataXMLDir(File outputDir) {... |
62 |
0
|
this.dataXMLDir = outputDir; |
63 |
|
} |
64 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
65 |
0
|
public String getDateFormat() {... |
66 |
0
|
return dateFormat; |
67 |
|
} |
68 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
69 |
0
|
public void setDateFormat(String dateFormat) {... |
70 |
0
|
this.dateFormat = dateFormat; |
71 |
|
} |
72 |
|
} |