diff options
Diffstat (limited to 'poi-excelant')
-rw-r--r-- | poi-excelant/build.gradle | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/poi-excelant/build.gradle b/poi-excelant/build.gradle index 1de82e2cd6..3838b58e8d 100644 --- a/poi-excelant/build.gradle +++ b/poi-excelant/build.gradle @@ -127,6 +127,13 @@ javadocJar { } } +sourcesJar { + metaInf { + from("$projectDir/../legal/LICENSE") + from("$projectDir/../legal/NOTICE") + } +} + // Create a separate jar for test-code to depend on it in other projects // See http://stackoverflow.com/questions/5144325/gradle-test-dependency task testJar(type: Jar, dependsOn: [ testClasses, cacheTest9 ] ) { |