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

1234567891011121314151617181920212223242526272829303132
  1. sonarqube {
  2. properties {
  3. property 'sonar.projectName', "${projectTitle} :: Markdown"
  4. }
  5. }
  6. configureCompileJavaToVersion 8
  7. dependencies {
  8. // please keep list ordered
  9. compile 'commons-lang:commons-lang'
  10. compile 'org.codehaus.sonar:sonar-channel'
  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. }