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

12345678910111213141516171819202122232425262728293031
  1. sonarqube {
  2. skipProject = true
  3. }
  4. dependencies {
  5. compile 'com.google.guava:guava'
  6. compile 'commons-io:commons-io'
  7. compile 'commons-lang:commons-lang'
  8. compileOnly 'com.google.code.findbugs:jsr305'
  9. compileOnly project(path: ':sonar-plugin-api', configuration: 'shadow')
  10. compileOnly project(':tests:plugins:backdating-plugin-v1')
  11. }
  12. jar {
  13. manifest {
  14. attributes(
  15. 'Plugin-Key': 'custombackdating',
  16. 'Plugin-Version': version,
  17. 'Plugin-Class': 'org.sonar.backdating.custom.BackdatingPlugin',
  18. 'Plugin-ChildFirstClassLoader': 'false',
  19. 'Sonar-Version': '7.1-SNAPSHOT',
  20. 'SonarLint-Supported': 'false',
  21. 'Plugin-Name': 'Custom',
  22. 'Plugin-License': 'GNU LGPL 3',
  23. 'Plugin-Base': 'backdating'
  24. )
  25. }
  26. into('META-INF/lib') {
  27. from configurations.compile
  28. }
  29. }