mirror of
https://github.com/zaaarf/lillero-processor.git
synced 2024-11-22 15:34:57 +01:00
chore: added sources and javadocs jars generation
This commit is contained in:
parent
52898ed2f1
commit
8695612c58
1 changed files with 6 additions and 1 deletions
|
@ -6,7 +6,12 @@ plugins {
|
||||||
archivesBaseName = 'processor'
|
archivesBaseName = 'processor'
|
||||||
version = gitVersion()
|
version = gitVersion()
|
||||||
|
|
||||||
java.toolchain.languageVersion = JavaLanguageVersion.of(8)
|
java {
|
||||||
|
sourceCompatibility = JavaVersion.VERSION_1_8
|
||||||
|
targetCompatibility = JavaVersion.VERSION_1_8
|
||||||
|
withSourcesJar()
|
||||||
|
withJavadocJar()
|
||||||
|
}
|
||||||
|
|
||||||
repositories {
|
repositories {
|
||||||
mavenCentral()
|
mavenCentral()
|
||||||
|
|
Loading…
Reference in a new issue