geirm 01/08/21 04:32:37
Added: jjar/examples/ant-task/src Test.java
Log:
Little test program to test compilation with JJAR-set classpath in Ant.
Revision Changes Path
1.1 jakarta-commons-sandbox/jjar/examples/ant-task/src/Test.java
Index: Test.java
===================================================================
/**
* Simple test program to demonstrate success in
* altering classpath. The point of this program
* is not to do anything useful (it doesn't)
* but be a compile target to test to see if
* classpath is correct.
*/
import org.apache.velocity.Template;
public class Test
{
public static void main( String args[] )
{
Template t = null;
}
}