1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package org.kuali.maven.mojo;
17
18
19
20
21
22
23 public class AntTaskPojo {
24 String antfile;
25 String dir;
26 String target;
27 String output;
28 boolean inheritAll = true;
29 boolean inheritRefs;
30 boolean useNativeBasedir;
31
32 public String getAntfile() {
33 return antfile;
34 }
35
36 public void setAntfile(String antfile) {
37 this.antfile = antfile;
38 }
39
40 public String getDir() {
41 return dir;
42 }
43
44 public void setDir(String dir) {
45 this.dir = dir;
46 }
47
48 public String getTarget() {
49 return target;
50 }
51
52 public void setTarget(String target) {
53 this.target = target;
54 }
55
56 public String getOutput() {
57 return output;
58 }
59
60 public void setOutput(String output) {
61 this.output = output;
62 }
63
64 public boolean isInheritAll() {
65 return inheritAll;
66 }
67
68 public void setInheritAll(boolean inheritAll) {
69 this.inheritAll = inheritAll;
70 }
71
72 public boolean isInheritRefs() {
73 return inheritRefs;
74 }
75
76 public void setInheritRefs(boolean inheritRefs) {
77 this.inheritRefs = inheritRefs;
78 }
79
80 public boolean isUseNativeBasedir() {
81 return useNativeBasedir;
82 }
83
84 public void setUseNativeBasedir(boolean useNativeBasedir) {
85 this.useNativeBasedir = useNativeBasedir;
86 }
87
88 }