Home | History | Annotate | Download | only in annotations
      1 apply plugin: 'java'
      2 apply plugin: 'sdk-files'
      3 
      4 jar {
      5     archiveName = 'annotations.jar'
      6 }
      7 
      8 sourceSets {
      9     main.java.srcDirs 'src'
     10 }
     11 
     12 sdk {
     13     common {
     14         item(jar.archivePath) {
     15             into 'support'
     16             notice 'NOTICE'
     17             builtBy jar
     18         }
     19     }
     20 }
     21