-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
80 lines (64 loc) · 1.67 KB
/
Copy pathbuild.gradle
File metadata and controls
80 lines (64 loc) · 1.67 KB
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
plugins {
id 'pl.allegro.tech.build.axion-release' version '1.8.1' apply false
id 'idea'
}
ext {
commonsCodecVersion = '1.10'
junitVersion = '4.12'
lombokVersion = '1.16.16'
slf4jVersion = '1.7.24'
}
allprojects {
group = 'one.kii.codec'
apply plugin: 'maven-publish'
repositories {
maven {
url "${maven_public_url}"
}
}
publishing {
repositories {
maven {
if (project.version.endsWith('-SNAPSHOT')) {
credentials {
username "$maven_username"
password "$maven_password"
}
url "${maven_snapshot_url}"
} else {
credentials {
username "$maven_username"
password "$maven_password"
}
url "${maven_release_url}"
}
}
}
}
}
subprojects {
apply plugin: 'java'
apply plugin: 'maven'
apply plugin: 'pl.allegro.tech.build.axion-release'
scmVersion {
tag {
prefix = ''
}
}
project.version = scmVersion.version
publishing {
publications {
mavenJava(MavenPublication) {
from components.java
}
}
}
sourceCompatibility = 1.8
targetCompatibility = 1.8
dependencies {
compileOnly "org.projectlombok:lombok:${lombokVersion}"
compile("org.slf4j:slf4j-api:${slf4jVersion}")
testCompile "junit:junit:${junitVersion}"
testCompile("org.slf4j:slf4j-simple:${slf4jVersion}")
}
}