Simple-Code-Generator/build.gradle

24 lines
350 B
Groovy
Raw Normal View History

2021-01-11 13:02:39 +01:00
apply plugin: 'java-library'
repositories {
jcenter()
}
2021-01-11 13:48:39 +01:00
archivesBaseName = 'Simple Code Generator'
version = '1.0'
tasks.withType(JavaCompile) {
options.encoding = 'UTF-8'
}
2021-01-11 13:02:39 +01:00
2021-01-11 13:48:39 +01:00
dependencies {
}
2021-01-11 13:02:39 +01:00
2021-01-11 13:48:39 +01:00
task srcJar(type: Jar) {
from sourceSets.main.allSource
classifier = 'sources'
2021-01-11 13:02:39 +01:00
}
2021-01-11 13:48:39 +01:00
artifacts {
archives srcJar
}