Add Freenet plugin and WoT subprojects
[fwot.git] / maven.gradle
diff --git a/maven.gradle b/maven.gradle
new file mode 100644 (file)
index 0000000..0902fd3
--- /dev/null
@@ -0,0 +1,17 @@
+apply plugin: "maven"
+
+group = "net.pterodactylus"
+version = "0.0.1"
+
+subprojects {
+    task sourcesJar(type: Jar, dependsOn: classes) {
+        classifier "sources"
+        from sourceSets.main.allSource
+    }
+     
+    artifacts {
+        archives sourcesJar
+    }
+}
+
+/* vim: set ts=4 sw=4 et: */