source: CIVL/build.properties.example@ af8a6cb

1.23 2.0 main test-branch
Last change on this file since af8a6cb was 173ff32, checked in by Stephen Siegel <siegel@…>, 13 years ago

Adding Ant build.

git-svn-id: svn://vsl.cis.udel.edu/civl/trunk@4 fb995dde-84ed-4084-dfe6-e5aef3e2452c

  • Property mode set to 100644
File size: 1.4 KB
Line 
1# All dependencies for the ABC project are defined here.
2
3# Cobertura is a test coverage analysis tool for Java.
4# Donwload from here: http://cobertura.sourceforge.net/download.html
5# Unpack, place the directory somewhere, and set the directory path here:
6cobertura.lib.dir=/VSL/Tools/lib/cobertura
7
8# JUnit is a well-known automated unit testing framework
9# for Java. Download the JUnit jar file from
10# https://github.com/KentBeck/junit/downloads
11# All you need is the basic jar, e.g., "junit-4.10.jar".
12# Set the path to it here:
13junit.jar=/VSL/Tools/lib/junit.jar
14
15# ANTLR is needed to build the parsers from the grammars,
16# and in addition the runtime components are needed to
17# compile and execute the ABC code. Best to just download
18# the "complete" java binaries jar from
19# http://www.antlr.org/download.html
20# and then set this path:
21antlr.jar=/VSL/Tools/src/antlr/antlr-3.4/lib/antlr-3.4-complete.jar
22
23# The ANTLR runtime library classes are incorporated into
24# the final JAR of the ABC project (abc.jar). While in theory
25# those could be extracted from the complete ANTLR jar above,
26# it is easier to just have a pointer to the runtime class files.
27# I just downloaded the runtime-only source from the ANTLR site
28# and compiled it into a separate directory.
29# This directory should contain the "org" directory,
30# whose subdirectories eventually contain all the .class files
31# in the ANTLR runtime.
32antlr.runtime.bin=/VSL/Tools/bin/antlr-3.4-runtime
Note: See TracBrowser for help on using the repository browser.