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

12345678910111213141516171819202122232425262728
  1. sonarqube {
  2. properties {
  3. property 'sonar.projectName', "${projectTitle} :: Markdown"
  4. }
  5. }
  6. dependencies {
  7. compile 'commons-lang:commons-lang'
  8. compile 'org.codehaus.sonar:sonar-channel'
  9. compile 'org.slf4j:slf4j-api'
  10. testCompile 'ch.qos.logback:logback-classic'
  11. testCompile 'junit:junit'
  12. testCompile 'org.assertj:assertj-core'
  13. }
  14. artifactoryPublish.skip = false
  15. // Used by core plugins
  16. publishing {
  17. publications {
  18. mavenJava(MavenPublication) {
  19. from components.java
  20. artifact sourcesJar
  21. artifact javadocJar
  22. }
  23. }
  24. }