]> git.argeo.org Git - gpl/argeo-slc.git/blob - legacy/runtime/org.argeo.slc.support.maven/src/main/java/org/argeo/slc/maven/MavenFile.java
Clean up directories
[gpl/argeo-slc.git] / legacy / runtime / org.argeo.slc.support.maven / src / main / java / org / argeo / slc / maven / MavenFile.java
1 /*
2 * Copyright (C) 2007-2012 Argeo GmbH
3 *
4 * Licensed under the Apache 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.apache.org/licenses/LICENSE-2.0
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.argeo.slc.maven;
17
18 import org.argeo.slc.build.Distribution;
19 import org.argeo.slc.deploy.DeploymentData;
20
21 public class MavenFile implements Distribution, DeploymentData {
22 private String groupId;
23 private String artifactId;
24 private String version;
25 private String type;
26 private String classifier;
27 private String scope;
28
29 public String getScope() {
30 return scope;
31 }
32
33 public void setScope(String scope) {
34 this.scope = scope;
35 }
36
37 private String distributionId;
38
39 public String getDistributionId() {
40 return distributionId;
41 }
42
43 public void setDistributionId(String distributionId) {
44 this.distributionId = distributionId;
45 }
46
47 public String getGroupId() {
48 return groupId;
49 }
50
51 public void setGroupId(String groupId) {
52 this.groupId = groupId;
53 }
54
55 public String getArtifactId() {
56 return artifactId;
57 }
58
59 public void setArtifactId(String artifactId) {
60 this.artifactId = artifactId;
61 }
62
63 public String getVersion() {
64 return version;
65 }
66
67 public void setVersion(String version) {
68 this.version = version;
69 }
70
71 public String getType() {
72 return type;
73 }
74
75 public void setType(String type) {
76 this.type = type;
77 }
78
79 public String getClassifier() {
80 return classifier;
81 }
82
83 public void setClassifier(String classifier) {
84 this.classifier = classifier;
85 }
86
87 }