-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.gradle
23 lines (21 loc) · 865 Bytes
/
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
plugins {
id "eclipse"
id "java-library"
id "jacoco"
id "maven-publish"
id "signing"
id "net.nemerosa.versioning" version "2.15.1"
id "io.github.gradle-nexus.publish-plugin" version "1.1.0"
id "com.adarshr.test-logger" version "3.1.0"
}
apply from: "gradle/setup.gradle" // setup runtime properties
apply from: "gradle/ide.gradle" // setup IDE
apply from: "gradle/dependencies.gradle" // setup dependecies
apply from: "gradle/compile.gradle" // setup compile settings and tasks
apply from: "gradle/testing.gradle" // setup testing settings and tasks
apply from: "gradle/javadoc.gradle" // setup javadoc settings and tasks
apply from: "gradle/packaging.gradle" // setup packaging settings and tasks
apply from: "gradle/publishing.gradle" // setup publishing settings and tasks
wrapper {
gradleVersion = "7.3.3"
}