-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
108 lines (87 loc) · 3.32 KB
/
build.gradle
File metadata and controls
108 lines (87 loc) · 3.32 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
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
buildscript {
repositories {
mavenCentral()
}
}
subprojects {
repositories {
mavenCentral()
}
apply plugin: 'java'
compileJava.dependsOn(processResources)
compileJava {
options.encoding = "UTF-8"
}
compileTestJava {
options.encoding = "UTF-8"
}
apply plugin: 'maven'
apply plugin: 'signing'
signing {
sign configurations.archives
}
apply plugin: 'maven-publish'
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 {
inceptionYear '2019'
name project.name
packaging 'jar'
description project.description
url 'https://github.com/laxika/java-task-force'
scm {
connection 'git@github.com:laxika/java-task-force.git'
developerConnection 'git@github.com:laxika/java-task-force.git'
url 'https://github.com/laxika/java-task-force'
}
licenses {
license {
name 'MIT License'
url 'http://www.opensource.org/licenses/mit-license.php'
}
}
developers {
developer {
id 'gyulalakatos'
name 'Gyula Lakatos'
email 'laxika91@gmail.com'
}
}
}
}
}
}
task sourcesJar(type: Jar) {
from sourceSets.main.allJava
classifier 'sources'
}
task javadocJar(type: Jar) {
from javadoc
classifier 'javadoc'
}
artifacts {
archives javadocJar, sourcesJar
}
sourceCompatibility = 1.8
dependencies {
compile group: 'org.slf4j', name: 'slf4j-api', version: '1.7.25'
testCompile group: 'org.slf4j', name: 'slf4j-simple', version: '1.7.25'
compileOnly group: 'org.projectlombok', name: 'lombok', version: '1.18.8'
annotationProcessor group: 'org.projectlombok', name: 'lombok', version: '1.18.8'
testCompileOnly group: 'org.projectlombok', name: 'lombok', version: '1.18.8'
testAnnotationProcessor group: 'org.projectlombok', name: 'lombok', version: '1.18.8'
testCompile group: 'org.powermock', name: 'powermock-module-junit4', version: '2.0.2'
testCompile group: 'org.powermock', name: 'powermock-api-mockito2', version: '2.0.2'
testCompile group: 'org.hamcrest', name: 'hamcrest-all', version: '1.3'
testCompile group: 'junit', name: 'junit', version: '4.12'
testCompile group: 'org.mockito', name: 'mockito-core', version: '2.18.3'
}
}