-
-
Notifications
You must be signed in to change notification settings - Fork 64
/
Copy pathbuild.gradle
58 lines (53 loc) · 1.12 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
plugins {
id 'jqwik.common-configuration'
id 'jqwik.module-configuration'
}
description = "Jqwik Aggregator module"
jar {
archiveBaseName.set('jqwik')
archiveVersion.set("${jqwikVersion}")
}
publishing {
publications {
jqwik(MavenPublication) {
groupId = 'net.jqwik'
artifactId = 'jqwik'
from components.java
pom {
groupId = 'net.jqwik'
name = 'jqwik'
description = project.description
url = 'https://jqwik.net/'
licenses {
license {
name = 'Eclipse Public License - v 2.0'
url = 'http://www.eclipse.org/legal/epl-v20.html'
}
}
developers {
developer {
id = 'jlink'
name = 'Johannes Link'
email = '[email protected]'
}
}
scm {
connection = 'scm:git:git://github.com/jqwik-team/jqwik.git'
developerConnection = 'scm:git:git://github.com/jqwik-team/jqwik.git'
url = 'https://github.com/jqwik-team/jqwik'
}
}
}
}
}
signing {
if (!isSnapshotRelease) {
sign publishing.publications.jqwik
}
}
dependencies {
api(project(":api"))
api(project(":web"))
api(project(":time"))
runtimeOnly(project(":engine"))
}