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