aboutsummaryrefslogtreecommitdiffstats
path: root/build/export_generators/ide-gradle/configuration.jinja
blob: b238ca95bfa7224cc9a5daf56ec6c93482144488 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{#- 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
}