| | |
| | | - compile 'src/main/resources' |
| | | - site 'src/site/resources' |
| | | |
| | | # compile for Java 6 class format |
| | | # compile for Java 7 class format |
| | | tasks: { |
| | | 'mx:javac' : { |
| | | source: 1.6 |
| | | target: 1.6 |
| | | compiler: javac1.6 |
| | | source: 1.7 |
| | | target: 1.7 |
| | | compiler: javac1.7 |
| | | encoding: UTF-8 |
| | | # stop complaints about bootstrap classpath when compiling with Java 7 |
| | | compilerArgs: '-Xlint:-options' |
| | |
| | | - compile 'args4j:args4j:2.0.26' :war :fedclient :authority |
| | | - compile 'commons-codec:commons-codec:1.7' :war |
| | | - compile 'redis.clients:jedis:2.3.1' :war |
| | | - compile 'ro.fortsoft.pf4j:pf4j:0.7.1' :war |
| | | - test 'junit' |
| | | # Dependencies for Selenium web page testing |
| | | - test 'org.seleniumhq.selenium:selenium-java:${selenium.version}' @jar |