You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

build.gradle 628B

12345678910111213141516171819202122232425
  1. sonarqube {
  2. skipProject = true
  3. }
  4. dependencies {
  5. // please keep list ordered
  6. compile 'com.google.code.gson:gson'
  7. compile 'com.google.guava:guava'
  8. compile 'commons-io:commons-io'
  9. compile 'org.apache.velocity:velocity:1.7'
  10. compile 'org.slf4j:log4j-over-slf4j'
  11. compile 'org.sonarsource.orchestrator:sonar-orchestrator'
  12. compileOnly 'com.google.code.findbugs:jsr305'
  13. }
  14. task fatJar(type: Jar) {
  15. manifest {
  16. attributes 'Main-Class': 'org.sonarqube.wsgenerator.Generator'
  17. }
  18. classifier = 'jar-with-dependencies'
  19. from { configurations.compile.collect { it.isDirectory() ? it : zipTree(it) } }
  20. with jar
  21. }