view antcontrib-ant.xml @ 322:7ca1fbf8636a

Add new artifactory*.gradle that removes the credentials. Update the init*-git.gradle to use this new script. The script will require a parameters in bamboo but will allow us to remove the gradlekit project.
author Marc Davis <davis@ssdt-ohio.org>
date Thu, 09 Feb 2023 13:53:42 -0500
parents 6c62c55b613f
children
line wrap: on
line source
<?xml version="1.0" encoding="UTF-8"?>
<project name="antcontrib-ant" basedir="." xmlns:ssdt="http://www.ssdt-ohio.org/ant/common">

    <property           name="ssdt.ant-contrib.jar.src"     value="${ssdt.devel.kit.src}/legacy.jars/ant-contrib.jar"/>


    <ssdt:fetch         dest="${user.home.ant.lib}/ant-contrib.jar"
                        src="${ssdt.ant-contrib.jar.src}"/>

    <taskdef           resource="net/sf/antcontrib/antcontrib.properties">
        <classpath>
            <pathelement location="${user.home.ant.lib}/ant-contrib.jar"/>
        </classpath>
    </taskdef>
    
    <target name="-ant-contrib-define"/>
    
</project>