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

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