Add Freenet plugin and WoT subprojects
[fwot.git] / maven.gradle
1 apply plugin: "maven"
2
3 group = "net.pterodactylus"
4 version = "0.0.1"
5
6 subprojects {
7     task sourcesJar(type: Jar, dependsOn: classes) {
8         classifier "sources"
9         from sourceSets.main.allSource
10     }
11      
12     artifacts {
13         archives sourcesJar
14     }
15 }
16
17 /* vim: set ts=4 sw=4 et: */