95d84369b8
Add a unit test to test the new functions to export JAR targets. The test builds three sub-projects: two that generate and export a JAR (one does a build-directory-only export, one an install-only export), and a third that consumes the first two as imported targets.
11 lines
158 B
Java
11 lines
158 B
Java
class Import
|
|
{
|
|
public static void main(String args[])
|
|
{
|
|
Foo foo = new Foo();
|
|
Bar bar = new Bar();
|
|
foo.printName();
|
|
bar.printName();
|
|
}
|
|
}
|