root/trunk/src/main/resources/org/apache/easyant/antlib.xml @ 364

Revision 364, 1.8 kB (checked in by jboudart, 8 months ago)

Remove the ant-1.7-patched dir
Ant+Ivy is now retrieved using dependency manager (ivy is still a patched version)
Update the script to take care of the new directory structure
Update License Header from 2008-2009 to 2008-2010

  • Property svn:eol-style set to native
Line 
1<?xml version="1.0"?>
2<!--
3   Copyright 2008-2010 the EasyAnt project
4
5        See the NOTICE file distributed with this work for additional information
6        regarding copyright ownership.
7       
8        Licensed under the Apache License, Version 2.0 (the "License");
9        you may not use this file except in compliance with the License.
10        You may obtain a copy of the License at
11       
12        http://www.apache.org/licenses/LICENSE-2.0
13       
14        Unless required by applicable law or agreed to in writing, software
15        distributed under the License is distributed on an "AS IS" BASIS,
16        WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17        See the License for the specific language governing permissions and
18        limitations under the License.
19-->
20<antlib xmlns:current="ant:current">
21        <typedef name="path" classname="org.apache.easyant.tasks.PathTask"/>
22        <typedef name="parameter" classname="org.apache.easyant.tasks.ParameterTask"/>
23       
24        <typedef name="import" classname="org.apache.easyant.tasks.Import"/>
25        <typedef name="loadmodule" classname="org.apache.easyant.tasks.LoadModule"/>
26        <typedef name="submodule" classname="org.apache.easyant.tasks.SubModule"/>
27        <typedef name="repreport" classname="org.apache.easyant.tasks.RepositoryReport"/>
28        <typedef name="core-version" classname="org.apache.easyant.tasks.CoreRevisionCheckerTask"/>
29        <typedef name="property" classname="org.apache.easyant.tasks.PropertyTask"/>
30       
31        <typedef name="configure-build-scoped-repository" classname="org.apache.easyant.tasks.ConfigureBuildScopedRepository"/> 
32
33        <presetdef name="include">
34                <current:import mode="include" />
35        </presetdef>
36       
37        <presetdef name="build">
38                <current:import organisation="org.apache.easyant.buildtypes"/>
39        </presetdef>
40       
41        <presetdef name="plugin">
42                <current:import mode="include" organisation="org.apache.easyant.plugins"/>
43        </presetdef>
44</antlib>
Note: See TracBrowser for help on using the browser.