aboutsummaryrefslogtreecommitdiff
path: root/annotations/build.gradle
diff options
context:
space:
mode:
Diffstat (limited to 'annotations/build.gradle')
-rw-r--r--annotations/build.gradle20
1 files changed, 20 insertions, 0 deletions
diff --git a/annotations/build.gradle b/annotations/build.gradle
new file mode 100644
index 000000000..21f1d7ba1
--- /dev/null
+++ b/annotations/build.gradle
@@ -0,0 +1,20 @@
+apply plugin: 'java'
+apply plugin: 'sdk-files'
+
+jar {
+ archiveName = 'annotations.jar'
+}
+
+sourceSets {
+ main.java.srcDirs 'src'
+}
+
+sdk {
+ common {
+ item(jar.archivePath) {
+ into 'support'
+ notice 'NOTICE'
+ builtBy jar
+ }
+ }
+}