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

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