-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
85 lines (73 loc) · 2.42 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
import java.text.SimpleDateFormat
plugins {
id("java")
id("org.jetbrains.intellij") version "1.17.3"
id("org.jetbrains.changelog") version "2.2.0"
}
group = "com.hsofttec.intellij"
version = "${pluginVersion}"
sourceCompatibility = javaSourceVersion
targetCompatibility = javaTargetVersion
repositories {
mavenLocal()
mavenCentral()
maven {
authentication {
basic(BasicAuthentication)
}
credentials {
username ceyoniq_artifact_username
password ceyoniq_artifact_password
}
url "https://artifact.nscale.eu/repository/nscale-java-advanced-connector"
}
}
apply plugin: 'org.jetbrains.intellij'
apply plugin: 'org.jetbrains.changelog'
intellij {
pluginName = "QueryTester"
version = "${ideaVersion}"
updateSinceUntilBuild = false
buildSearchableOptions.enabled = false
downloadSources = false
patchPluginXml {
sinceBuild.set("231")
untilBuild.set("241.*")
changeNotes.set(provider { changelog.getLatest().toHTML() })
}
}
signPlugin {
certificateChain = System.getenv("CERTIFICATE_CHAIN")
privateKey = System.getenv("PRIVATE_KEY")
password = System.getenv("PRIVATE_KEY_PASSWORD")
}
changelog {
path = "${project.projectDir}/CHANGELOG.md"
header = "[${-> version.get()}] - ${new SimpleDateFormat("yyyy-MM-dd").format(new Date())}"
headerParserRegex = ~/(\d+\.\d+\.\d+)/
itemPrefix = "-"
keepUnreleasedSection = true
unreleasedTerm = "[Unreleased]"
groups = ["Added", "Changed", "Fixed", "Security"]
}
dependencies {
implementation 'org.apache.commons:commons-lang3:3.12.0'
implementation('commons-beanutils:commons-beanutils:1.9.4') {
exclude group: "commons-collections"
}
implementation 'org.apache.commons:commons-collections4:4.4'
implementation 'com.github.lgooddatepicker:LGoodDatePicker:11.2.1'
implementation("com.ceyoniq.nscale.applicationlayer:al-advanced-connector:8.2.1100") {
exclude group: "org.slf4j"
}
compileOnly 'org.projectlombok:lombok:1.18.24'
annotationProcessor 'org.projectlombok:lombok:1.18.24'
testCompileOnly 'org.projectlombok:lombok:1.18.24'
testAnnotationProcessor 'org.projectlombok:lombok:1.18.24'
}
// check for existing property
if (findProperty("jetbrains_marketplace_token_querytester")) {
publishPlugin {
token = "${jetbrains_marketplace_token_querytester}"
}
}