forked from allegro/tradukisto
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
102 lines (84 loc) · 1.99 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
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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath "io.codearte.gradle.nexus:gradle-nexus-staging-plugin:0.11.0"
}
}
plugins {
id 'java'
id 'groovy'
id 'idea'
id 'checkstyle'
id 'jacoco'
id 'pmd'
id 'pl.allegro.tech.build.axion-release' version '1.8.3'
id "com.bmuschko.nexus" version "2.3.1"
id 'com.github.kt3k.coveralls' version '2.8.2'
}
apply plugin: 'io.codearte.nexus-staging'
scmVersion {
tag {
prefix = 'tradukisto'
}
}
project.version = scmVersion.version
project.group = "pl.allegro.finance"
repositories {
mavenCentral()
}
sourceCompatibility = 1.8
compileJava {
options.encoding = "UTF-8"
}
task wrapper(type: Wrapper) {
gradleVersion = "4.6"
}
dependencies {
compile "com.google.guava:guava:23.0"
testCompile "org.spockframework:spock-core:1.1-groovy-2.4"
}
jacocoTestReport {
reports {
html.destination new File("${buildDir}/jacocoHtml")
xml.enabled = true
html.enabled = true
}
}
test {
testLogging {
events "passed", "skipped", "failed"
}
}
nexusStaging {
packageGroup = "pl.allegro"
}
modifyPom {
project {
name 'Tradukisto'
description 'Small java library created to convert numbers to their word representations'
url 'https://github.com/allegro/tradukisto'
inceptionYear '2015'
scm {
url 'https://github.com/allegro/tradukisto'
connection 'scm:[email protected]:allegro/tradukisto.git'
developerConnection 'scm:[email protected]:allegro/tradukisto.git'
}
licenses {
license {
name 'The Apache Software License, Version 2.0'
url 'http://www.apache.org/licenses/LICENSE-2.0.txt'
}
}
developers {
developer {
id 'dorians'
name 'Dorian Sarnowski'
}
}
}
}
checkstyle {
toolVersion = "5.9"
}