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 600B

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