blob: 43e053e74a33a307505dd4a44d48231b3a126491 (
plain)
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
26
27
28
29
30
|
apply plugin: 'java'
apply plugin: 'idea'
group = 'com.amadornes.artifactural'
version = '1.0.0'
sourceSets {
api
main
gradlecomp
}
repositories {
jcenter()
mavenCentral()
}
dependencies {
implementation sourceSets.api.output
gradlecompImplementation sourceSets.api.output
gradlecompImplementation sourceSets.main.output
gradlecompImplementation gradleApi()
}
jar {
from sourceSets.api.output
from sourceSets.main.output
from sourceSets.gradlecomp.output
}
|