-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathbuild.gradle
41 lines (35 loc) · 883 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
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
plugins {
id 'org.sonarqube' version '5.0.0.4638'
id 'org.unbroken-dome.test-sets' version '4.1.0' apply false
id 'io.freefair.lombok' version '8.6' apply false
}
allprojects {
version = '0.22.0'
group = 'com.github.moaxcp.x11'
repositories {
mavenCentral()
}
tasks.withType(Copy).all { duplicatesStrategy 'exclude' }
tasks.withType(Jar).all {
duplicatesStrategy(DuplicatesStrategy.EXCLUDE)
}
}
subprojects {
apply plugin: 'java-library'
java {
sourceCompatibility = JavaVersion.VERSION_21
targetCompatibility = JavaVersion.VERSION_21
withSourcesJar()
withJavadocJar()
}
dependencies {
}
}
sonar {
properties {
property "sonar.projectKey", "moaxcp_x11-client"
property 'sonar.host.url', 'https://sonarcloud.io'
property 'sonar.organization', 'moaxcp'
property 'sonar.scm.exclusions.disabled', 'true'
}
}