aboutsummaryrefslogtreecommitdiffstats
path: root/server/sonar-qa-util/build.gradle
blob: aab7d38eb88aea19708ed1195ad71a910788b580 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
sonarqube {
  skipProject = true
}

dependencies {
  // please keep the list grouped by configuration and ordered by name

  compile 'com.codeborne:selenide:4.8'
  // required version 23.0 for selenide
  compile 'com.google.guava:guava:23.0'
  compile 'org.assertj:assertj-core'
  compile 'org.sonarsource.orchestrator:sonar-orchestrator'
  compile project(':sonar-ws')

  compileOnly 'com.google.code.findbugs:jsr305'
}

artifactoryPublish.skip = false

// Required for core plugins
publishing {
  publications {
    mavenJava(MavenPublication) {
      from components.java
      artifact sourcesJar
      artifact javadocJar
    }
  }
}