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

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. sonarqube {
  2. properties {
  3. property 'sonar.projectName', "${projectTitle} :: Plugin API Implementation"
  4. }
  5. }
  6. configureCompileJavaToVersion 8
  7. dependencies {
  8. // please keep the list grouped by configuration and ordered by name
  9. compile 'commons-codec:commons-codec'
  10. compile 'commons-io:commons-io'
  11. compile 'commons-lang:commons-lang'
  12. compile 'org.apache.commons:commons-csv'
  13. compile project(path: ':sonar-plugin-api', configuration: 'shadow')
  14. compileOnly 'com.google.code.findbugs:jsr305'
  15. compileOnly 'junit:junit'
  16. testCompileOnly 'com.google.code.findbugs:jsr305'
  17. testCompile 'com.google.guava:guava'
  18. testCompile 'com.tngtech.java:junit-dataprovider'
  19. testCompile 'junit:junit'
  20. testCompile 'org.assertj:assertj-core'
  21. testCompile 'org.mockito:mockito-core'
  22. }
  23. artifactoryPublish.skip = false
  24. publishing {
  25. publications {
  26. mavenJava(MavenPublication) {
  27. from components.java
  28. if (release) {
  29. artifact sourcesJar
  30. artifact javadocJar
  31. }
  32. }
  33. }
  34. }