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 2011/05/30 06:01:47 UTC

svn commit: r1129002 - in /incubator/easyant/plugins/trunk/abstract-provisioning: ./ module.ivy src/ src/main/ src/main/resources/ src/main/resources/abstract-provisioning.ant

Author: jlboudart
Date: Mon May 30 06:01:46 2011
New Revision: 1129002

URL: http://svn.apache.org/viewvc?rev=1129002&view=rev
Log:
Add abstract provisionning plugin

Added:
    incubator/easyant/plugins/trunk/abstract-provisioning/
    incubator/easyant/plugins/trunk/abstract-provisioning/module.ivy
    incubator/easyant/plugins/trunk/abstract-provisioning/src/
    incubator/easyant/plugins/trunk/abstract-provisioning/src/main/
    incubator/easyant/plugins/trunk/abstract-provisioning/src/main/resources/
    incubator/easyant/plugins/trunk/abstract-provisioning/src/main/resources/abstract-provisioning.ant

Added: incubator/easyant/plugins/trunk/abstract-provisioning/module.ivy
URL: http://svn.apache.org/viewvc/incubator/easyant/plugins/trunk/abstract-provisioning/module.ivy?rev=1129002&view=auto
==============================================================================
--- incubator/easyant/plugins/trunk/abstract-provisioning/module.ivy (added)
+++ incubator/easyant/plugins/trunk/abstract-provisioning/module.ivy Mon May 30 06:01:46 2011
@@ -0,0 +1,31 @@
+<!--
+   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.
+-->
+<ivy-module version="2.0" xmlns:ea="http://www.easyant.org"> 
+    <info organisation="org.apache.easyant.plugins" module="abstract-provisioning" revision="0.1">
+           <description>This module provides abstraction layer for provisioning.</description>
+           <ea:build organisation="org.apache.easyant.buildtypes" module="build-std-ant-plugin" revision="0.1"/>
+        </info>
+        <configurations>
+                <conf name="default" description="runtime dependencies artifact can be used with this conf"/>
+                <conf name="test" description="this scope indicates that the dependency is not required for normal use of the application, and is only available for the test compilation and execution phases."/>
+                <conf name="provided" description="this is much like compile, but indicates you expect the JDK or a container to provide it. It is only available on the compilation classpath, and is not transitive."/>
+        </configurations>
+    <publications>
+        <artifact type="ant"/>
+    </publications>
+    
+</ivy-module>

Added: incubator/easyant/plugins/trunk/abstract-provisioning/src/main/resources/abstract-provisioning.ant
URL: http://svn.apache.org/viewvc/incubator/easyant/plugins/trunk/abstract-provisioning/src/main/resources/abstract-provisioning.ant?rev=1129002&view=auto
==============================================================================
--- incubator/easyant/plugins/trunk/abstract-provisioning/src/main/resources/abstract-provisioning.ant (added)
+++ incubator/easyant/plugins/trunk/abstract-provisioning/src/main/resources/abstract-provisioning.ant Mon May 30 06:01:46 2011
@@ -0,0 +1,29 @@
+<!--
+   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.
+-->
+<project name="org.apache.easyant.plugins#abstract-provisioning"
+    xmlns:ac="antlib:net.sf.antcontrib"
+    xmlns:ea="antlib:org.apache.easyant">
+
+    <ea:core-version requiredrevision="[0.9,+]" />
+
+    <extension-point name="abstract-provisioning:provisioning-ready" />
+    <extension-point name="abstract-provisioning:provisioning-finished" depends="abstract-provisioning:provisioning-ready" />
+
+    <ea:parameter property="lib.main" default="${basedir}/lib/main" description="directory where main libraries are picked up" />
+    <ea:parameter property="lib.test" default="${basedir}/lib/test" description="directory where test libraries are picked up" />
+
+</project>