-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
53 lines (40 loc) · 1.21 KB
/
build.gradle
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
subprojects {
apply plugin: 'java'
apply plugin: 'maven'
apply plugin: 'idea'
apply from: "https://raw.githubusercontent.com/ametiste-oss/ametiste-bintray-gradle/master/bintray-ext-ame-oss.gradle"
apply from: "https://raw.githubusercontent.com/ametiste-oss/ametiste-bintray-gradle/master/bintray-ext.gradle"
apply plugin: 'maven-publish'
sourceCompatibility = 1.8
targetCompatibility = 1.8
group = 'org.ametiste.lambda-platform'
version = '0.2.6'
ext {
slf4jVersion = "1.7.12"
ameMetricsVersion = "0.2.0-b2-RC"
bintray_vcsUrl = 'https://github.com/ametiste-oss/ametiste-lambda-platform.git'
}
repositories {
mavenLocal()
mavenCentral()
jcenter()
}
configurations {
deployerJars
}
task sourcesJar(type: Jar, dependsOn: classes) {
classifier = 'sources'
from sourceSets.main.allSource
}
task javadocJar(type: Jar, dependsOn: javadoc) {
classifier = 'javadoc'
from javadoc.destinationDir
}
artifacts {
archives sourcesJar
archives javadocJar
}
configurations.all {
resolutionStrategy.cacheChangingModulesFor 0, 'seconds'
}
}