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 1.4KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. sonarqube {
  2. properties {
  3. property 'sonar.projectName', "${projectTitle} :: Process"
  4. }
  5. }
  6. dependencies {
  7. // please keep the list grouped by configuration and ordered by name
  8. compile 'ch.qos.logback:logback-classic'
  9. compile 'commons-codec:commons-codec'
  10. compile 'commons-io:commons-io'
  11. compile 'commons-lang:commons-lang'
  12. compile 'com.google.guava:guava'
  13. compile 'com.hazelcast:hazelcast'
  14. compile 'org.slf4j:jul-to-slf4j'
  15. compile 'org.slf4j:slf4j-api'
  16. compileOnly 'com.google.code.findbugs:jsr305'
  17. compileOnly 'com.google.protobuf:protobuf-java'
  18. compileOnly 'org.nanohttpd:nanohttpd'
  19. testCompile 'com.google.code.findbugs:jsr305'
  20. testCompile 'com.google.protobuf:protobuf-java'
  21. testCompile 'com.tngtech.java:junit-dataprovider'
  22. testCompile 'org.assertj:assertj-core'
  23. testCompile 'org.mockito:mockito-core'
  24. testCompile project(':sonar-testing-harness')
  25. // Workaround to resolve dependencies of eclipse specific packaging: https://issues.gradle.org/browse/GRADLE-2076
  26. testCompile module('org.eclipse.jetty:jetty-server') {
  27. dependencies(
  28. "org.eclipse.jetty.orbit:javax.servlet:3.0.0.v201112011016@jar",
  29. "org.eclipse.jetty:jetty-continuation:8.1.2.v20120308",
  30. "org.eclipse.jetty:jetty-http:8.1.2.v20120308"
  31. )
  32. }
  33. }
  34. artifactoryPublish.skip = false
  35. publishing {
  36. publications {
  37. mavenJava(MavenPublication) {
  38. from components.java
  39. artifact sourcesJar
  40. artifact javadocJar
  41. }
  42. }
  43. }