Advertisement
vrvarma

common:common/build.gradle

Apr 2nd, 2014
49
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1.  
  2. sourceCompatibility=1.5
  3. targetCompatibility=1.5
  4.  
  5. dependencies{
  6.  
  7. compile fileTree(dir: "$libsDir", include: '*.jar',exclude:'*tests.jar')
  8. }
  9.  
  10. jar{ archiveName = 'osd.common.jar' }
  11.  
  12. eclipse { project { name = 'common-util' } }
  13.  
  14. clover{
  15. excludes=[
  16. 'com/att/osd/util/**/*.java',
  17. 'com/att/osd/common/logging/**/*.java'
  18. ]
  19. }
  20.  
  21. sonarRunner {
  22. sonarProperties {
  23.  
  24. property 'sonar.projectKey','common-util'
  25. property 'sonar.projectName','cis-common-util'
  26. }
  27. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement