-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathsettings.gradle
63 lines (61 loc) · 1.88 KB
/
settings.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
// Installed here as advised to load before all other
// @see https://mooltiverse.github.io/nyx/guide/user/quick-start/gradle-plugin/#apply-the-plugin
plugins {
id "com.mooltiverse.oss.nyx" version "2.5.2"
}
//nyx is our release plugin
nyx {
verbosity = "INFO"
preset = "simple"
releasePrefix = "v"
releaseTypes {
items {
mainline {
matchBranches = "master"
publish = "true"
publishPreRelease = "true"
description = "{{#fileContent}}CHANGELOG.md{{/fileContent}}"
publicationServices = ["github"]
}
internal {
collapseVersions = true
collapsedVersionQualifier = 'SNAPSHOT'
identifiers {}
}
}
}
services {
github {
type = "GITHUB"
options {
AUTHENTICATION_TOKEN = "{{#environmentVariable}}GITHUB_TOKEN{{/environmentVariable}}"
REPOSITORY_OWNER = "molgenis"
REPOSITORY_NAME = "molgenis-service-armadillo"
}
}
}
releaseAssets {
jar {
path = "build/libs/molgenis-armadillo-{{#replace from=\"v\"}}{{version}}{{/replace}}.jar"
fileName = "molgenis-armadillo-{{#replace from=\"v\"}}{{version}}{{/replace}}.jar"
type = "application/java-archive"
}
file {
path = "build/artifacts/armadillo-compose.zip"
fileName = "armadillo-compose-{{#replace from=\"v\"}}{{version}}{{/replace}}.zip"
type = "application/zip"
}
}
changelog {
path = "CHANGELOG.md"
template = "changelog-notes.tpl"
sections = [
'Added' : '^feat$',
'Fixed' : '^fix$',
]
}
}
rootProject.name = 'molgenis-armadillo'
include ':armadillo'
include ':r'
include ':ui'