Files
kotlin-fork/libraries/tools/kotlin-maven-plugin/src/it/test-helloworld/verify.bsh
T
2012-05-08 12:51:20 +04:00

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 );
}