generated from creek-service/multi-module-template
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle.kts
59 lines (53 loc) · 2.72 KB
/
build.gradle.kts
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
/*
* Copyright 2023 Creek Contributors (https://github.com/creek-service)
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
plugins {
java
jacoco
`creek-common-convention`
`creek-module-convention`
`creek-coverage-convention`
`creek-publishing-convention`
`creek-sonatype-publishing-convention`
id("pl.allegro.tech.build.axion-release") version "1.18.14" // https://plugins.gradle.org/plugin/pl.allegro.tech.build.axion-release
}
project.version = scmVersion.version
allprojects {
tasks.jar {
onlyIf { sourceSets.main.get().allSource.files.isNotEmpty() }
}
}
val creekVersion = "0.4.2-SNAPSHOT"
val guavaVersion = "33.3.1-jre" // https://mvnrepository.com/artifact/com.google.guava/guava
val log4jVersion = "2.24.1" // https://mvnrepository.com/artifact/org.apache.logging.log4j/log4j-core
val junitVersion = "5.11.3" // https://mvnrepository.com/artifact/org.junit.jupiter/junit-jupiter-api
val junitPioneerVersion = "2.3.0" // https://mvnrepository.com/artifact/org.junit-pioneer/junit-pioneer
val mockitoVersion = "5.14.2" // https://mvnrepository.com/artifact/org.mockito/mockito-junit-jupiter
val hamcrestVersion = "3.0" // https://mvnrepository.com/artifact/org.hamcrest/hamcrest-core
dependencies {
testImplementation("org.creekservice:creek-test-hamcrest:$creekVersion")
testImplementation("org.creekservice:creek-test-util:$creekVersion")
testImplementation("org.creekservice:creek-test-conformity:$creekVersion")
testImplementation("org.junit.jupiter:junit-jupiter-api:$junitVersion")
testImplementation("org.junit.jupiter:junit-jupiter-params:$junitVersion")
testImplementation("org.junit-pioneer:junit-pioneer:$junitPioneerVersion")
testImplementation("org.mockito:mockito-junit-jupiter:$mockitoVersion")
testImplementation("org.hamcrest:hamcrest-core:$hamcrestVersion")
testImplementation("com.google.guava:guava-testlib:$guavaVersion")
testImplementation("org.apache.logging.log4j:log4j-core:$log4jVersion")
testImplementation("org.apache.logging.log4j:log4j-slf4j2-impl:$log4jVersion")
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:$junitVersion")
}
defaultTasks("format", "static", "check")