~ubuntu-branches/ubuntu/quantal/maven-invoker-plugin/quantal

« back to all changes in this revision

Viewing changes to src/it/selector-conditions/src/it/jre-version-match/postbuild.bsh

  • Committer: Bazaar Package Importer
  • Author(s): Miguel Landaeta
  • Date: 2011-09-06 20:06:24 UTC
  • mfrom: (2.1.2 sid)
  • Revision ID: james.westby@ubuntu.com-20110906200624-n9hj2b0m9bx0pwtd
Tags: 1.5-2
* Team upload.
* Add Build-Depends on libmaven-plugin-tools-java (>= 2.8) (Closes: #640751)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
import java.io.*;
 
2
 
 
3
// create touch file so that the parent build can verify whether this build was executed
 
4
File touchFile = new File( basedir, "target/touch.txt" );
 
5
System.out.println( "Creating touch file: " + touchFile );
 
6
touchFile.getParentFile().mkdirs();
 
7
touchFile.createNewFile();