Remove old license headers
[gpl/argeo-slc.git] / org.argeo.slc.support.maven / src / org / argeo / slc / maven / MavenFile.java
index 93e242b44871911c5c66d289c333ab09bdd7e112..210f3af930e1c7798a9d5e42f69bae2a428006b7 100644 (file)
@@ -1,87 +1,72 @@
-/*\r
- * Copyright (C) 2007-2012 Argeo GmbH\r
- *\r
- * Licensed under the Apache License, Version 2.0 (the "License");\r
- * you may not use this file except in compliance with the License.\r
- * You may obtain a copy of the License at\r
- *\r
- *         http://www.apache.org/licenses/LICENSE-2.0\r
- *\r
- * Unless required by applicable law or agreed to in writing, software\r
- * distributed under the License is distributed on an "AS IS" BASIS,\r
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
- * See the License for the specific language governing permissions and\r
- * limitations under the License.\r
- */\r
-package org.argeo.slc.maven;\r
-\r
-import org.argeo.slc.build.Distribution;\r
-import org.argeo.slc.deploy.DeploymentData;\r
-\r
-public class MavenFile implements Distribution, DeploymentData {\r
-       private String groupId;\r
-       private String artifactId;\r
-       private String version;\r
-       private String type;\r
-       private String classifier;\r
-       private String scope;\r
-\r
-       public String getScope() {\r
-               return scope;\r
-       }\r
-\r
-       public void setScope(String scope) {\r
-               this.scope = scope;\r
-       }\r
-\r
-       private String distributionId;\r
-\r
-       public String getDistributionId() {\r
-               return distributionId;\r
-       }\r
-\r
-       public void setDistributionId(String distributionId) {\r
-               this.distributionId = distributionId;\r
-       }\r
-\r
-       public String getGroupId() {\r
-               return groupId;\r
-       }\r
-\r
-       public void setGroupId(String groupId) {\r
-               this.groupId = groupId;\r
-       }\r
-\r
-       public String getArtifactId() {\r
-               return artifactId;\r
-       }\r
-\r
-       public void setArtifactId(String artifactId) {\r
-               this.artifactId = artifactId;\r
-       }\r
-\r
-       public String getVersion() {\r
-               return version;\r
-       }\r
-\r
-       public void setVersion(String version) {\r
-               this.version = version;\r
-       }\r
-\r
-       public String getType() {\r
-               return type;\r
-       }\r
-\r
-       public void setType(String type) {\r
-               this.type = type;\r
-       }\r
-\r
-       public String getClassifier() {\r
-               return classifier;\r
-       }\r
-\r
-       public void setClassifier(String classifier) {\r
-               this.classifier = classifier;\r
-       }\r
-\r
-}\r
+package org.argeo.slc.maven;
+
+import org.argeo.slc.build.Distribution;
+import org.argeo.slc.deploy.DeploymentData;
+
+public class MavenFile implements Distribution, DeploymentData {
+       private String groupId;
+       private String artifactId;
+       private String version;
+       private String type;
+       private String classifier;
+       private String scope;
+
+       public String getScope() {
+               return scope;
+       }
+
+       public void setScope(String scope) {
+               this.scope = scope;
+       }
+
+       private String distributionId;
+
+       public String getDistributionId() {
+               return distributionId;
+       }
+
+       public void setDistributionId(String distributionId) {
+               this.distributionId = distributionId;
+       }
+
+       public String getGroupId() {
+               return groupId;
+       }
+
+       public void setGroupId(String groupId) {
+               this.groupId = groupId;
+       }
+
+       public String getArtifactId() {
+               return artifactId;
+       }
+
+       public void setArtifactId(String artifactId) {
+               this.artifactId = artifactId;
+       }
+
+       public String getVersion() {
+               return version;
+       }
+
+       public void setVersion(String version) {
+               this.version = version;
+       }
+
+       public String getType() {
+               return type;
+       }
+
+       public void setType(String type) {
+               this.type = type;
+       }
+
+       public String getClassifier() {
+               return classifier;
+       }
+
+       public void setClassifier(String classifier) {
+               this.classifier = classifier;
+       }
+
+}