-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
40 lines (39 loc) · 1.46 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
dependencies {
compileOnly(
"org.projectlombok:lombok:${lombokVersion}"
)
annotationProcessor(
"org.projectlombok:lombok:${lombokVersion}"
)
}
publishing {
publications {
maven(MavenPublication) {
artifactId = "${project.name}"
from components.java
pom {
name = 'Recursive Assertion Core'
description = 'This utility library contains core functionality for assertion of complex models using various settings and provide convenient error messages.'
url = 'https://github.com/VladislavSevruk/RecursiveAssertion/recursive-assertion-core'
licenses {
license {
name = 'MIT License'
url = 'https://opensource.org/licenses/MIT'
}
}
developers {
developer {
id = 'uladzislau_seuruk'
name = 'Uladzislau Seuruk'
email = '[email protected]'
}
}
scm {
connection = 'scm:git:git://VladislavSevruk/RecursiveAssertion.git'
developerConnection = 'scm:git:ssh://VladislavSevruk/RecursiveAssertion.git'
url = 'https://github.com/VladislavSevruk/RecursiveAssertion/tree/master'
}
}
}
}
}