-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.gradle
139 lines (117 loc) · 3.43 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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
plugins {
id 'java'
id 'idea'
id "org.jetbrains.kotlin.jvm" version "1.3.21"
id 'jacoco'
id 'maven'
id 'signing'
id 'io.codearte.nexus-staging' version '0.11.0'
}
repositories {
mavenCentral()
}
ext {
pomFile = file("${project.buildDir}/generated-pom.xml")
isReleaseVersion = !(project.version =~ /-SNAPSHOT$/)
}
version = "0.4.0"
project.group = "com.github.wakingrufus"
dependencies {
compile "org.jetbrains.kotlin:kotlin-stdlib-jdk8"
compile 'org.slf4j:slf4j-api:1.7.25'
compile("io.github.microutils:kotlin-logging:1.6.23")
compile "org.jetbrains.kotlin:kotlin-reflect"
compile "org.jsoup:jsoup:1.10.3"
testCompile "org.jetbrains.kotlin:kotlin-test"
testCompile "org.jetbrains.kotlin:kotlin-test-junit"
testCompile 'org.mockito:mockito-core:2.8.9'
testCompile 'junit:junit:4.12'
testCompile "com.nhaarman:mockito-kotlin-kt1.1:1.5.0"
testCompile 'org.slf4j:slf4j-log4j12:1.7.25'
testCompile "org.assertj:assertj-core:3.11.1"
}
idea {
project {
languageLevel = '1.8'
}
}
wrapper {
gradleVersion = '5.2'
}
jacocoTestReport {
reports {
xml.enabled true
}
}
jacocoTestReport.dependsOn test
build.dependsOn jacocoTestReport
compileKotlin {
kotlinOptions {
jvmTarget = "1.8"
}
}
compileTestKotlin {
kotlinOptions {
jvmTarget = "1.8"
}
}
task javadocJar(type: Jar) {
classifier = 'javadoc'
from javadoc
}
task sourcesJar(type: Jar) {
classifier = 'sources'
from sourceSets.main.allSource
}
artifacts {
archives jar
archives sourcesJar
archives javadocJar
}
signing {
required { signatory != null && project.ext.isReleaseVersion }
sign configurations.archives
}
nexusStaging {
packageGroup = "com.github.wakingrufus"
}
uploadArchives {
repositories {
mavenDeployer {
beforeDeployment { MavenDeployment deployment -> signing.signPom(deployment) }
repository(url: "https://oss.sonatype.org/service/local/staging/deploy/maven2/") {
authentication(userName: ossrhUsername, password: ossrhPassword)
}
snapshotRepository(url: "https://oss.sonatype.org/content/repositories/snapshots/") {
authentication(userName: ossrhUsername, password: ossrhPassword)
}
pom.project {
name 'lib-elo'
packaging 'jar'
group project.group
version project.version
// optionally artifactId can be defined here
description 'A library which performs ELO calculations for a game league (such as chess)'
url 'https://github.com/wakingrufus/lib-elo'
scm {
connection 'scm:git:https://github.com/wakingrufus/lib-elo.git'
developerConnection 'scm:git:https://github.com/wakingrufus/lib-elo.git/'
url 'https://github.com/wakingrufus/lib-elo'
}
licenses {
license {
name 'MIT License'
url 'https://opensource.org/licenses/MIT'
}
}
developers {
developer {
id 'wakingrufus'
name 'Rufus'
email '[email protected]'
}
}
}
}
}
}