View Javadoc

1   /**
2    * Copyright 2004-2011 The Kuali Foundation
3    *
4    * Licensed under the Educational Community License, Version 2.0 (the "License");
5    * you may not use this file except in compliance with the License.
6    * You may obtain a copy of the License at
7    *
8    * http://www.opensource.org/licenses/ecl2.php
9    *
10   * Unless required by applicable law or agreed to in writing, software
11   * distributed under the License is distributed on an "AS IS" BASIS,
12   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13   * See the License for the specific language governing permissions and
14   * limitations under the License.
15   */
16  package org.kuali.maven.mojo;
17  
18  /**
19   * Pojo representing the Ant "ant" task
20   * 
21   * http://ant.apache.org/manual/Tasks/ant.html
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  }