-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
38 lines (37 loc) · 1.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
dependencies {
compile project(':recursive-assertion-core')
api (
"org.assertj:assertj-core:${assertjVersion}"
)
}
publishing {
publications {
maven(MavenPublication) {
artifactId = "${project.name}"
from components.java
pom {
name = 'Recursive Assertion AssertJ'
description = 'This utility library helps to assert complex models using various settings and provide convenient error messages using AssertJ SoftAssertion class.'
url = 'https://github.com/VladislavSevruk/RecursiveAssertion/recursive-assertion-assertj'
licenses {
license {
name = 'MIT License'
url = 'https://opensource.org/licenses/MIT'
}
}
developers {
developer {
id = 'uladzislau_seuruk'
name = 'Uladzislau Seuruk'
email = 'vladislavsevruk@gmail.com'
}
}
scm {
connection = 'scm:git:git://VladislavSevruk/RecursiveAssertion.git'
developerConnection = 'scm:git:ssh://VladislavSevruk/RecursiveAssertion.git'
url = 'https://github.com/VladislavSevruk/RecursiveAssertion/tree/master'
}
}
}
}
}