-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
66 lines (47 loc) · 1.26 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
59
60
61
62
63
64
65
buildscript {
repositories {
mavenLocal()
maven { url 'https://repository.mulesoft.org/snapshots/' }
maven { url 'https://repository.mulesoft.org/releases/' }
maven { url "https://plugins.gradle.org/m2/"}
mavenCentral()
}
dependencies {
classpath "org.raml.jaxrs:raml-to-jaxrs-gradle-plugin:3.0.6"
classpath "biz.aQute.bnd:biz.aQute.bnd.gradle:6.4.0"
classpath "gradle.plugin.de.fntsoftware.gradle:markdown-to-pdf:1.1.0"
}
}
plugins {
id "com.github.spotbugs" version "4.8.0"
}
apply plugin: "de.fntsoftware.gradle.markdown-to-pdf"
allprojects {
repositories {
mavenLocal()
mavenCentral()
maven { url "https://repo.nerz-ev.de/repository/nerz-maven-public/" }
}
group = 'de.bitctrl.dav.rest'
version = '1.2.0-SNAPSHOT'
}
markdownToPdf{
}
apply plugin: 'base'
assemble.dependsOn+='testspezifikationToPdf'
ext {
jersey_version = "2.41"
junit_version ="4.13.2"
}
subprojects {
apply plugin: 'java'
apply plugin: 'maven-publish'
apply plugin: "biz.aQute.bnd.builder"
sourceCompatibility = '11'
targetCompatibility = '11'
compileJava.options.encoding = 'UTF-8'
compileTestJava.options.encoding = 'UTF-8'
tasks.withType(JavaCompile) {
options.encoding = 'UTF-8'
}
}