~ubuntu-branches/ubuntu/saucy/ivy/saucy-proposed

« back to all changes in this revision

Viewing changes to src/java/org/apache/ivy/ant/IvyInstall.java

  • Committer: Package Import Robot
  • Author(s): tony mancill
  • Date: 2013-05-15 17:44:57 UTC
  • mfrom: (3.1.2 experimental)
  • Revision ID: package-import@ubuntu.com-20130515174457-ogntd0vxluwalq11
Tags: 2.3.0-2
* Team upload.
* Upload to unstable.

Show diffs side-by-side

added added

removed removed

Lines of Context:
40
40
    private String revision;
41
41
 
42
42
    private String branch;
 
43
    
 
44
    private String conf = "*";
43
45
 
44
46
    private boolean overwrite = false;
45
47
 
48
50
    private String to;
49
51
 
50
52
    private boolean transitive;
51
 
 
 
53
    
52
54
    private String type;
53
55
 
54
56
    private String matcher = PatternMatcher.EXACT;
103
105
                    .setTransitive(transitive)
104
106
                    .setValidate(doValidate(settings))
105
107
                    .setOverwrite(overwrite)
 
108
                    .setConfs(conf.split(","))
106
109
                    .setArtifactFilter(FilterHelper.getArtifactTypeFilter(type))
107
110
                    .setMatcherName(matcher));
108
111
        } catch (Exception e) {
206
209
    public void setMatcher(String matcher) {
207
210
        this.matcher = matcher;
208
211
    }
 
212
    
 
213
    public String getConf() {
 
214
        return conf;
 
215
    }
 
216
    
 
217
    public void setConf(String conf) {
 
218
        this.conf = conf;
 
219
    }
 
220
 
209
221
}