summary refs log tree commit diff stats
path: root/build.gradle
diff options
context:
space:
mode:
authorAdrian Siekierka <kontakt@asie.pl>2018-12-22 17:37:14 +0100
committerAdrian Siekierka <kontakt@asie.pl>2018-12-22 17:37:14 +0100
commitb58680946a541cb8f3a2ff6cbe0e7fbf919f3ba4 (patch)
tree24288f81814d3c9b583ce567c8b0d51a300bce41 /build.gradle
parente79420b9c7176d589fe8fede608f4cfdf2764a0b (diff)
add sourcesJar
Diffstat (limited to 'build.gradle')
-rw-r--r--build.gradle8
1 files changed, 8 insertions, 0 deletions
diff --git a/build.gradle b/build.gradle
index 82a6eac..15f358d 100644
--- a/build.gradle
+++ b/build.gradle
@@ -19,3 +19,11 @@ dependencies {
 	// Fabric API. This is technically optional, but you probably want it anyway.
 	modCompile "net.fabricmc:fabric:0.1.1.61"
 }
+
+// Loom will automatically attach sourcesJar to a RemapSourcesJar task and to the "build" task
+// if it is present.
+// If you remove this task, sources will not be generated.
+task sourcesJar(type: Jar, dependsOn: classes) {
+	classifier = 'sources'
+	from sourceSets.main.allSource
+}