You are viewing a plain text version of this content. The canonical link for it is here.
Posted to easyant-commits@incubator.apache.org by jl...@apache.org on 2012/10/31 08:29:26 UTC

svn commit: r1404023 - in /incubator/easyant/core/trunk/src/main/java/org/apache/easyant: core/descriptor/ConfigureProjectDescriptor.java tasks/ConfigureProject.java

Author: jlboudart
Date: Wed Oct 31 08:29:26 2012
New Revision: 1404023

URL: http://svn.apache.org/viewvc?rev=1404023&view=rev
Log:
add a new easyant element : configure-project
this new element can define for the moment defaulttarget / basedir

Added:
    incubator/easyant/core/trunk/src/main/java/org/apache/easyant/core/descriptor/ConfigureProjectDescriptor.java
    incubator/easyant/core/trunk/src/main/java/org/apache/easyant/tasks/ConfigureProject.java

Added: incubator/easyant/core/trunk/src/main/java/org/apache/easyant/core/descriptor/ConfigureProjectDescriptor.java
URL: http://svn.apache.org/viewvc/incubator/easyant/core/trunk/src/main/java/org/apache/easyant/core/descriptor/ConfigureProjectDescriptor.java?rev=1404023&view=auto
==============================================================================
--- incubator/easyant/core/trunk/src/main/java/org/apache/easyant/core/descriptor/ConfigureProjectDescriptor.java (added)
+++ incubator/easyant/core/trunk/src/main/java/org/apache/easyant/core/descriptor/ConfigureProjectDescriptor.java Wed Oct 31 08:29:26 2012
@@ -0,0 +1,89 @@
+/*
+ *  Licensed to the Apache Software Foundation (ASF) under one or more
+ *  contributor license agreements.  See the NOTICE file distributed with
+ *  this work for additional information regarding copyright ownership.
+ *  The ASF licenses this file to You under the Apache License, Version 2.0
+ *  (the "License"); you may not use this file except in compliance with
+ *  the License.  You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ *  Unless required by applicable law or agreed to in writing, software
+ *  distributed under the License is distributed on an "AS IS" BASIS,
+ *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ *  See the License for the specific language governing permissions and
+ *  limitations under the License.
+ *
+ */
+package org.apache.easyant.core.descriptor;
+
+import org.apache.easyant.core.ivy.InheritableScope;
+import org.apache.ivy.core.module.id.ModuleRevisionId;
+
+/**
+ * This class is a simple POJO used to store informations on configureProject.
+ * 
+ */
+public class ConfigureProjectDescriptor implements AdvancedInheritableItem {
+
+    private String defaultTarget;
+    private String basedir;
+
+    private InheritableScope inheritScope = InheritableScope.BOTH;
+    private final ModuleRevisionId sourceModule;
+    private boolean inheritable = true;
+
+    /**
+     * Default constructor
+     */
+    public ConfigureProjectDescriptor() {
+        sourceModule = null;
+    }
+
+    /**
+     * Constructor specifying the source module which was defining the configureproject
+     * 
+     * @param sourceModule
+     *            a source module
+     */
+    public ConfigureProjectDescriptor(ModuleRevisionId sourceModule) {
+        this.sourceModule = sourceModule;
+    }
+
+    public String getDefaultTarget() {
+        return defaultTarget;
+    }
+
+    public void setDefaultTarget(String defaultTarget) {
+        this.defaultTarget = defaultTarget;
+    }
+
+    public String getBasedir() {
+        return basedir;
+    }
+
+    public void setBasedir(String basedir) {
+        this.basedir = basedir;
+    }
+
+    public InheritableScope getInheritScope() {
+        return inheritScope;
+    }
+
+    public void setInheritScope(InheritableScope inheritScope) {
+        this.inheritScope = inheritScope;
+    }
+
+    public boolean isInheritable() {
+        return inheritable;
+    }
+
+    public void setInheritable(boolean inheritable) {
+        this.inheritable = inheritable;
+    }
+
+    public ModuleRevisionId getSourceModule() {
+        return sourceModule;
+    }
+
+}
\ No newline at end of file

Added: incubator/easyant/core/trunk/src/main/java/org/apache/easyant/tasks/ConfigureProject.java
URL: http://svn.apache.org/viewvc/incubator/easyant/core/trunk/src/main/java/org/apache/easyant/tasks/ConfigureProject.java?rev=1404023&view=auto
==============================================================================
--- incubator/easyant/core/trunk/src/main/java/org/apache/easyant/tasks/ConfigureProject.java (added)
+++ incubator/easyant/core/trunk/src/main/java/org/apache/easyant/tasks/ConfigureProject.java Wed Oct 31 08:29:26 2012
@@ -0,0 +1,58 @@
+/*
+ *  Licensed to the Apache Software Foundation (ASF) under one or more
+ *  contributor license agreements.  See the NOTICE file distributed with
+ *  this work for additional information regarding copyright ownership.
+ *  The ASF licenses this file to You under the Apache License, Version 2.0
+ *  (the "License"); you may not use this file except in compliance with
+ *  the License.  You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ *  Unless required by applicable law or agreed to in writing, software
+ *  distributed under the License is distributed on an "AS IS" BASIS,
+ *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ *  See the License for the specific language governing permissions and
+ *  limitations under the License.
+ *
+ */
+package org.apache.easyant.tasks;
+
+import org.apache.tools.ant.BuildException;
+
+/**
+ * Configure current project
+ * 
+ */
+public class ConfigureProject extends AbstractEasyAntTask {
+
+    private String defaultTarget;
+    private String basedir;
+
+    @Override
+    public void execute() throws BuildException {
+        if (defaultTarget != null) {
+            getProject().setDefault(defaultTarget);
+        }
+
+        if (basedir != null) {
+            getProject().setBasedir(basedir);
+        }
+    }
+
+    public String getDefaultTarget() {
+        return defaultTarget;
+    }
+
+    public void setDefaultTarget(String defaultTarget) {
+        this.defaultTarget = defaultTarget;
+    }
+
+    public String getBasedir() {
+        return basedir;
+    }
+
+    public void setBasedir(String basedir) {
+        this.basedir = basedir;
+    }
+
+}