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

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. 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. // Used by core plugins
  17. publishing {
  18. publications {
  19. mavenJava(MavenPublication) {
  20. from components.java
  21. artifact sourcesJar
  22. artifact javadocJar
  23. }
  24. }
  25. }