]> git.argeo.org Git - gpl/argeo-slc.git/blob - runtime/org.argeo.slc.support.maven/src/main/java/org/argeo/slc/maven/MavenFile.java
Simplify equinox launching
[gpl/argeo-slc.git] / runtime / org.argeo.slc.support.maven / src / main / java / org / argeo / slc / maven / MavenFile.java
1 package org.argeo.slc.maven;
2
3 import org.argeo.slc.build.Distribution;
4 import org.argeo.slc.deploy.DeploymentData;
5
6 public class MavenFile implements Distribution, DeploymentData {
7 private String groupId;
8 private String artifactId;
9 private String version;
10 private String type;
11 private String classifier;
12 private String scope;
13
14 public String getScope() {
15 return scope;
16 }
17
18 public void setScope(String scope) {
19 this.scope = scope;
20 }
21
22 private String distributionId;
23
24 public String getDistributionId() {
25 return distributionId;
26 }
27
28 public void setDistributionId(String distributionId) {
29 this.distributionId = distributionId;
30 }
31
32 public String getGroupId() {
33 return groupId;
34 }
35
36 public void setGroupId(String groupId) {
37 this.groupId = groupId;
38 }
39
40 public String getArtifactId() {
41 return artifactId;
42 }
43
44 public void setArtifactId(String artifactId) {
45 this.artifactId = artifactId;
46 }
47
48 public String getVersion() {
49 return version;
50 }
51
52 public void setVersion(String version) {
53 this.version = version;
54 }
55
56 public String getType() {
57 return type;
58 }
59
60 public void setType(String type) {
61 this.type = type;
62 }
63
64 public String getClassifier() {
65 return classifier;
66 }
67
68 public void setClassifier(String classifier) {
69 this.classifier = classifier;
70 }
71
72 }