7 lines
207 B
Plaintext
7 lines
207 B
Plaintext
import java.io.*;
|
|
|
|
File file = new File( basedir, "target/test-helloworld-1.0.jar" );
|
|
if (!file.exists() || !file.isFile())
|
|
{
|
|
throw new FileNotFoundException( "Could not find generated JAR: " + file );
|
|
} |