1   package org.apache.maven.shared.repository.model;
2   
3   
4   
5   
6   
7   
8   
9   
10  
11  
12  
13  
14  
15  
16  
17  
18  
19  
20  
21  
22  import org.apache.maven.artifact.Artifact;
23  
24  import java.util.List;
25  
26  
27  
28  
29  public class DefaultRepositoryInfo
30      implements RepositoryInfo
31  {
32  
33      private boolean includeMetadata;
34  
35      private String scope = Artifact.SCOPE_COMPILE;
36  
37      private List includes;
38  
39      private List groupVersionAlignments;
40  
41      private List excludes;
42  
43      public List getExcludes()
44      {
45          return excludes;
46      }
47  
48      public void setGroupVersionAlignments( List groupVersionAlignments )
49      {
50          this.groupVersionAlignments = groupVersionAlignments;
51      }
52  
53      public void setIncludeMetadata( boolean includeMetadata )
54      {
55          this.includeMetadata = includeMetadata;
56      }
57  
58      public void setIncludes( List includes )
59      {
60          this.includes = includes;
61      }
62  
63      public void setScope( String scope )
64      {
65          this.scope = scope;
66      }
67  
68      public List getGroupVersionAlignments()
69      {
70          return groupVersionAlignments;
71      }
72  
73      public List getIncludes()
74      {
75          return includes;
76      }
77  
78      public String getScope()
79      {
80          return scope;
81      }
82  
83      public boolean isIncludeMetadata()
84      {
85          return includeMetadata;
86      }
87  
88      public void setExcludes( List excludes )
89      {
90          this.excludes = excludes;
91      }
92  
93  }