This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sh 'mkdir spock-reports' | |
sh 'cp **/target/spock-reports/com.* spock-reports/.' | |
sh ''' | |
for dir in $(find . -mindepth 1 -maxdepth 1 -type d) | |
do | |
file=$dir/target/spock-reports/index.html | |
if [ -f "$file" ] | |
then | |
cp $file spock-reports/$dir-index.html | |
fi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
extraClasspath=${myproject.rootDir}/module1/target/classes;\ | |
${myproject.rootDir}/module1/src/main/resources/web;\ | |
${myproject.rootDir}/module2/target/classes;\ | |
${myproject.rootDir}/module2/src/main/resources/web;\ | |
${myproject.rootDir}/module3/target/classes;\ | |
${myproject.rootDir}/module3/src/main/resources/web; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Wraps all Tamil lines in a file with openlp formatting tags. | |
*/ | |
import groovy.transform.Field | |
@Field static final String PULLI = "\u0bcd"; | |
if(args.length > 0) { | |
def file = new File(args[0]) | |
if(file.exists()) { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
awk '{if (NF > 0) {print "{y}" $0 "{/y}"}else{print $0}}' "$1" > temp.txt | |
mv temp.txt "$1" |