aboutsummaryrefslogtreecommitdiffstats
path: root/tests/plugins/backdating-plugin-v1/build.gradle
blob: 8ef8bb8177dea3c1ecf774d7dc47f13302132b81 (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 {
  compile 'com.google.guava:guava'
  compile 'commons-io:commons-io'
  compile 'commons-lang:commons-lang'
  compileOnly 'com.google.code.findbugs:jsr305'
  compileOnly project(path: ':sonar-plugin-api', configuration: 'shadow')
}

jar {
  manifest {
    attributes(
      'Plugin-Key': 'backdating',
      'Plugin-Version': version,
      'Plugin-Class': 'org.sonar.plugins.backdating.BackdatingPlugin',
      'Plugin-ChildFirstClassLoader': 'false',
      'Sonar-Version': '7.1-SNAPSHOT',
      'SonarLint-Supported': 'false',
      'Plugin-Name': 'Foo',
      'Plugin-License': 'GNU LGPL 3'
    )
  }
  into('META-INF/lib') {
    from configurations.compile
  }
}