alvinalexander.com | career | drupal | java | mac | mysql | perl | scala | uml | unix  

Scala example source code file (scalac-build.xml)

This example Scala source code file (scalac-build.xml) is included in the DevDaily.com "Java Source Code Warehouse" project. The intent of this project is to help you "Learn Java by Example" TM.

Java - Scala tags/keywords

build, build, utf-8, utf-8

The Scala scalac-build.xml source code

<?xml version="1.0" encoding="UTF-8"?>

<project name="scalac" 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}"/>
    <scalac
      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 scalac-build.xml source code file:

... this post is sponsored by my books ...

#1 New Release!

FP Best Seller

 

new blog posts

 

Copyright 1998-2021 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.