-
Notifications
You must be signed in to change notification settings - Fork 2
/
build.gradle
36 lines (31 loc) · 937 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
subprojects {
apply plugin: "java-library"
group = "com.marklogic"
java {
sourceCompatibility = 11
targetCompatibility = 11
}
repositories {
mavenCentral()
mavenLocal()
maven {
url "https://bed-artifactory.bedford.progress.com:443/artifactory/ml-maven-snapshots/"
}
}
test {
useJUnitPlatform()
testLogging {
events 'started', 'passed', 'skipped', 'failed'
exceptionFormat 'full'
}
}
}
task gettingStartedZip(type: Zip) {
description = "Creates a zip of the getting-started project that is intended to be included as a downloadable file " +
"on the GitHub release page."
from "examples/getting-started"
exclude "build", ".gradle", "gradle-*.properties", "flux", ".gitignore", "marklogic-flux"
into "marklogic-flux-getting-started-${version}"
archiveFileName = "marklogic-flux-getting-started-${version}.zip"
destinationDirectory = file("build")
}