|
Scala example source code file (fsc-build.xml)
The Scala fsc-build.xml source code<?xml version="1.0" encoding="UTF-8"?> <project name="fsc" default="run" basedir="."> <import file="${basedir}/imported.xml"/> <!-- =========================================================================== BUILD ============================================================================ --> <target name="build" depends="init"> <echo level="verbose" message="build.dir=${build.dir}"/> <mkdir dir="${build.dir}"/> <fsc srcdir="${source.dir}" includes="**/${ant.project.name}*.scala" deprecation="yes" unchecked="yes" destdir="${build.dir}" classpathref="build.classpath" /> <dirname property="log.dir" file="${build.dir}"/> <echo level="verbose" message="log.dir=${log.dir}"/> <replace file="${log.dir}/${ant.project.name}-ant.log" token="${log.dir}" value="[...]/files/ant" /> </target> </project> Other Scala examples (source code examples)Here is a short list of links related to this Scala fsc-build.xml source code file: |
... this post is sponsored by my books ... | |
#1 New Release! |
FP Best Seller |
Copyright 1998-2024 Alvin Alexander, alvinalexander.com
All Rights Reserved.
A percentage of advertising revenue from
pages under the /java/jwarehouse
URI on this website is
paid back to open source projects.