All Downloads are FREE. Search and download functionalities are using the official Maven repository.

ing.AntBuildFiles.1.0.12.source-code.build-uploader.xml Maven / Gradle / Ivy

Go to download

This Pom project is supposed to collect Ant files configuration. Sensible information is collected and encrypted, as of certificates and private keys mustn't be shared unencrypted.

There is a newer version: 1.0.19
Show newest version
<?xml version="1.0" encoding="UTF-8"?>
<!--
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
-->


<project default="jar" basedir=".">
        <!-- First add the SSH key to validate the identity of the remote host if you're using the SFTP protocol e.g for sourceforge.net run a command on Terminal : sftp [email protected] enter your password-->
        <target name="UPLOAD-applet" depends="" description="Uploading applet files to the remote host ${devid.scp.host}:${devid.scp.path}">
                <scp todir="${devid.scp.user}:${devid.scp.pwd}@${devid.scp.host}:${devid.scp.path}" sftp="${devid.scp.sftp}" trust="true" verbose="true">
                        <fileset dir="${dist}">
                                <include name="**/*"/>
                        </fileset>
                </scp>
        </target>
        <!-- First add the SSH key to validate the identity of the remote host if you're using the SFTP protocol e.g for sourceforge.net run a command on Terminal : sftp [email protected] enter your password-->
        <target name="UPLOAD-application" depends="" description="Uploading application files to the remote host ${devid.scp.host}:${devid.scp.path}">
                <scp todir="${devid.scp.user}:${devid.scp.pwd}@${devid.scp.host}:${devid.scp.path}" sftp="${devid.scp.sftp}" trust="true" verbose="true">
                        <fileset dir="${dist.jwrapper}">
                                <patternset refid="os.files"></patternset>
                        </fileset>
                </scp>
        </target>
</project>




© 2015 - 2024 Weber Informatics LLC | Privacy Policy