12345678910111213141516171819202122232425 |
- {#- empty string #}
- val project_root = "{{ arcadia_root }}"
- {% if mainClass -%}
- application {
- mainClass.set("{{ mainClass }}")
- }
- {% endif -%}
- java {
- withSourcesJar()
- withJavadocJar()
- }
- configurations.api {
- isTransitive = false
- }
- configurations.implementation {
- isTransitive = false
- }
- configurations.testImplementation {
- isTransitive = false
- }
|