Advertisement
Guest User

Untitled

a guest
Jun 27th, 2017
44
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. /*
  2. $gradle server --include-build path/to/local-plugin
  3. */
  4.  
  5. plugins {
  6. id "org.jenkins-ci.jpi" version "0.22.0"
  7. }
  8.  
  9. group = "org.jenkins-ci.plugins"
  10.  
  11. jenkinsPlugin {
  12. coreVersion = "1.642.3"
  13. displayName = "Gradle Issue Replication Plugin"
  14. shortName = "gradle"
  15. }
  16.  
  17. dependencies {
  18. jenkinsPlugins('org.jenkins-ci.plugins:structs:1.7@jar') {
  19. transitive = true
  20. }
  21. }
  22.  
  23. defaultTasks 'jpi'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement