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

12345678910111213141516171819202122232425262728293031
  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. compile 'org.slf4j:slf4j-api'
  11. testCompile 'ch.qos.logback:logback-classic'
  12. testCompile 'junit:junit'
  13. testCompile 'org.assertj:assertj-core'
  14. }
  15. artifactoryPublish.skip = false
  16. publishing {
  17. publications {
  18. mavenJava(MavenPublication) {
  19. from components.java
  20. if (release) {
  21. artifact sourcesJar
  22. artifact javadocJar
  23. }
  24. }
  25. }
  26. }