~kaaloo/grails/grails-maven-plugin

« back to all changes in this revision

Viewing changes to src/main/java/org/grails/maven/plugin/tools/GrailsProject.java

  • Committer: pledbrook
  • Date: 2008-12-23 12:43:57 UTC
  • Revision ID: svn-v3-single1-dHJ1bmsvZ3JhaWxzLW1hdmVuLXBsdWdpbg..:1cfb16fd-6d17-0410-8ff1-b7e8e1e2867d:trunk%2Fgrails-maven-plugin:8037
Bumped plugin version to 1.0-SNAPSHOT and changed the packages to
org.grails.maven.plugin.*.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright 2007 the original author or authors.
 
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.grails.maven.plugin.tools;
 
17
 
 
18
/**
 
19
 * @author <a href="mailto:aheritier@gmail.com">Arnaud HERITIER</a>
 
20
 * @version $Id$
 
21
 */
 
22
public class GrailsProject {
 
23
 
 
24
    private String appGrailsVersion;
 
25
    private String appName;
 
26
    private String appVersion;
 
27
 
 
28
    /**
 
29
     * The default value for app.version when it's not defined in older grails versions.
 
30
     */
 
31
    public static final String DEFAULT_APP_VERSION = "1.0-SNAPSHOT";
 
32
 
 
33
    public String getAppGrailsVersion() {
 
34
        return appGrailsVersion;
 
35
    }
 
36
 
 
37
    public void setAppGrailsVersion(String appGrailsVersion) {
 
38
        this.appGrailsVersion = appGrailsVersion;
 
39
    }
 
40
 
 
41
    public String getAppName() {
 
42
        return appName;
 
43
    }
 
44
 
 
45
    public void setAppName(String appName) {
 
46
        this.appName = appName;
 
47
    }
 
48
 
 
49
    public String getAppVersion() {
 
50
        return appVersion;
 
51
    }
 
52
 
 
53
    public void setAppVersion(String appVersion) {
 
54
        this.appVersion = appVersion;
 
55
    }
 
56
}