diff options
author | carnold <[email protected]> | 2007-07-31 03:18:26 +0000 |
---|---|---|
committer | carnold <[email protected]> | 2007-07-31 03:18:26 +0000 |
commit | 6e33899d3676c1f470c41703ac0b512341e9324c (patch) | |
tree | 7a3ef5e22ad823c78a9940541b9bf44dc3222306 /src/main/java/net/sf/antcontrib/antlib.xml | |
parent | 07c6778db4f5ad7e790193801834d48d90cfaad0 (diff) |
Bug 1760649: Initial Maven 2 build for ant-contrib
git-svn-id: file:///home/sven/projects/JOGL/temp/ant-contrib/svn/ant-contrib-code/ant-contrib/trunk@130 32d7a393-a5a9-423c-abd3-5d954feb1f2f
Diffstat (limited to 'src/main/java/net/sf/antcontrib/antlib.xml')
-rw-r--r-- | src/main/java/net/sf/antcontrib/antlib.xml | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/src/main/java/net/sf/antcontrib/antlib.xml b/src/main/java/net/sf/antcontrib/antlib.xml new file mode 100644 index 0000000..203b12e --- /dev/null +++ b/src/main/java/net/sf/antcontrib/antlib.xml @@ -0,0 +1,48 @@ +<antlib> + <!-- typedef the tasks that work for ant less than 1.6 --> + <taskdef resource="net/sf/antcontrib/antcontrib.properties"/> + + <taskdef + name="for" + classname="net.sf.antcontrib.logic.ForTask" + onerror="ignore"/> + + <typedef + name="httpState" + classname="net.sf.antcontrib.net.httpclient.HttpStateType" + onerror="ignore" /> + <typedef + name="httpClient" + classname="net.sf.antcontrib.net.httpclient.HttpClientType" + onerror="ignore" /> + <taskdef name="getCookie" + classname="net.sf.antcontrib.net.httpclient.GetCookieTask" + onerror="ignore" /> + <taskdef name="addCookie" + classname="net.sf.antcontrib.net.httpclient.AddCookieTask" + onerror="ignore" /> + <taskdef name="clearCookies" + classname="net.sf.antcontrib.net.httpclient.ClearCookiesTask" + onerror="ignore" /> + <taskdef name="addCredentials" + classname="net.sf.antcontrib.net.httpclient.AddCredentialsTask" + onerror="ignore" /> + <taskdef name="clearCredentials" + classname="net.sf.antcontrib.net.httpclient.ClearCredentialsTask" + onerror="ignore" /> + <taskdef name="purgeExpiredCookies" + classname="net.sf.antcontrib.net.httpclient.PurgeExpiredCookiesTask" + onerror="ignore" /> + <taskdef name="postMethod" + classname="net.sf.antcontrib.net.httpclient.PostMethodTask" + onerror="ignore" /> + <taskdef name="getMethod" + classname="net.sf.antcontrib.net.httpclient.GetMethodTask" + onerror="ignore" /> + <taskdef name="headMethod" + classname="net.sf.antcontrib.net.httpclient.HeadMethodTask" + onerror="ignore" /> + <taskdef name="importurl" + classname="net.sf.antcontrib.net.URLImportTask" + onerror="ignore"/> +</antlib> |