aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/sonar-xoo-plugin/build.gradle
blob: f12ceadcdf859e85bfd975d2c922de0d826ed059 (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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
dependencies {
  api 'com.google.guava:guava'
  api 'commons-io:commons-io'
  api 'org.apache.commons:commons-lang3'
  api 'org.apache.commons:commons-csv'

  compileOnlyApi 'com.github.spotbugs:spotbugs-annotations'
  compileOnlyApi 'org.sonarsource.api.plugin:sonar-plugin-api'

  testImplementation 'junit:junit'
  testImplementation 'org.assertj:assertj-core'
  testImplementation 'org.mockito:mockito-core'
  testImplementation 'org.sonarsource.api.plugin:sonar-plugin-api-test-fixtures'
  testImplementation project(':sonar-plugin-api-impl')
}

jar {
  manifest {
    attributes(
      'Plugin-Key': 'xoo',
      'Plugin-Organization': 'SonarSource',
      'Plugin-Version': project.version,
      'Plugin-Class': 'org.sonar.xoo.XooPlugin',
      'Plugin-ChildFirstClassLoader': 'false',
      'Sonar-Version': project.pluginApiVersion,
      'SonarLint-Supported': 'true',
      'Plugin-Name': 'Xoo'
    )
  }
  into('META-INF/lib') {
    from configurations.runtimeClasspath
  }
}

artifactoryPublish.skip = false

publishing {
  publications {
    mavenJava(MavenPublication) {
      from components.java
      if (release) {
        artifact sourcesJar
        artifact javadocJar
      }
    }
  }
}