@@ -16,12 +16,12 @@ buildscript {
16
16
ext. junit5_version = " 5.9.1"
17
17
ext. junit_platform_version = " 1.9.1"
18
18
19
- ext. plugin_version = ' 1.9.4'
19
+ ext. plugin_version = " 1.9.4"
20
20
// Suffix ordering:
21
- // `' -snapshot' ` -- for development builds
22
- // `' -eap-###' ` -- for early access preview builds (`-eap-1`, `-eap-2`, `-eap-3`, etc.)
23
- // `'' ` -- for release builds
24
- ext. suffix = ' '
21
+ // `" -snapshot" ` -- for development builds
22
+ // `" -eap-###" ` -- for early access preview builds (`-eap-1`, `-eap-2`, `-eap-3`, etc.)
23
+ // `"" ` -- for release builds
24
+ ext. suffix = " "
25
25
26
26
repositories {
27
27
mavenCentral()
@@ -36,14 +36,14 @@ plugins {
36
36
id " org.jetbrains.intellij.platform" version " 2.1.0"
37
37
}
38
38
39
- configure(allprojects - project(' :src' )) {
40
- apply plugin : ' org.jetbrains.intellij.platform'
41
- apply plugin : ' idea'
42
- apply plugin : ' kotlin'
43
- apply plugin : ' jacoco'
39
+ configure(allprojects - project(" :src" )) {
40
+ apply plugin : " org.jetbrains.intellij.platform"
41
+ apply plugin : " idea"
42
+ apply plugin : " kotlin"
43
+ apply plugin : " jacoco"
44
44
45
- group ' uk.co.reecedunn.intellij.plugin.xquery'
46
- version = plugin_version + ' - ' + idea_since_build. toString() + suffix
45
+ group " uk.co.reecedunn.intellij.plugin.xquery"
46
+ version = plugin_version + " - " + idea_since_build. toString() + suffix
47
47
48
48
repositories {
49
49
mavenCentral()
@@ -52,9 +52,9 @@ configure(allprojects - project(':src')) {
52
52
defaultRepositories()
53
53
jetbrainsRuntime()
54
54
}
55
- maven { url = ' https://packages.jetbrains.team/maven/p/grazi/grazie-platform-public' } // grazie
56
- maven { url = ' https://download.jetbrains.com/teamcity-repository' } // teamcity
57
- maven { url = ' https://packages.jetbrains.team/maven/p/dpgpv/maven' } // download-pgp-verifier
55
+ maven { url = " https://packages.jetbrains.team/maven/p/grazi/grazie-platform-public" } // grazie
56
+ maven { url = " https://download.jetbrains.com/teamcity-repository" } // teamcity
57
+ maven { url = " https://packages.jetbrains.team/maven/p/dpgpv/maven" } // download-pgp-verifier
58
58
}
59
59
60
60
kotlin {
@@ -111,51 +111,51 @@ configure(allprojects - project(':src')) {
111
111
112
112
dependencies {
113
113
intellijPlatform {
114
- bundledPlugin ' org.intellij.intelliLang'
115
- bundledPlugin ' com.intellij.java'
116
- bundledPlugin ' com.intellij.properties'
114
+ bundledPlugin " org.intellij.intelliLang"
115
+ bundledPlugin " com.intellij.java"
116
+ bundledPlugin " com.intellij.properties"
117
117
if (idea_since_build >= 243 ) {
118
- bundledPlugin ' com.intellij.modules.json'
118
+ bundledPlugin " com.intellij.modules.json"
119
119
}
120
120
}
121
121
122
- implementation project(' :src:kotlin-intellij' )
123
- implementation project(' :src:lang-core' )
124
- implementation project(' :src:plugin-api' )
122
+ implementation project(" :src:kotlin-intellij" )
123
+ implementation project(" :src:lang-core" )
124
+ implementation project(" :src:plugin-api" )
125
125
126
- implementation project(' :src:plugin-basex' )
127
- implementation project(' :src:plugin-existdb' )
128
- implementation project(' :src:plugin-marklogic' )
129
- implementation project(' :src:plugin-saxon' )
130
- implementation project(' :src:plugin-xijp' )
126
+ implementation project(" :src:plugin-basex" )
127
+ implementation project(" :src:plugin-existdb" )
128
+ implementation project(" :src:plugin-marklogic" )
129
+ implementation project(" :src:plugin-saxon" )
130
+ implementation project(" :src:plugin-xijp" )
131
131
132
- implementation project(' :src:lang-xdm' )
133
- implementation project(' :src:lang-xpm' )
132
+ implementation project(" :src:lang-xdm" )
133
+ implementation project(" :src:lang-xpm" )
134
134
135
- implementation project(' :src:lang-xpath' )
136
- implementation project(' :src:lang-xquery' )
137
- implementation project(' :src:lang-xslt' )
138
- implementation project(' :src:lang-xproc' )
135
+ implementation project(" :src:lang-xpath" )
136
+ implementation project(" :src:lang-xquery" )
137
+ implementation project(" :src:lang-xslt" )
138
+ implementation project(" :src:lang-xproc" )
139
139
140
- implementation project(' :src:lang-java' )
141
- implementation project(' :src:lang-xqdoc' )
140
+ implementation project(" :src:lang-java" )
141
+ implementation project(" :src:lang-xqdoc" )
142
142
143
- implementation project(' :src:plugin-expath' )
144
- implementation project(' :src:plugin-exquery' )
145
- implementation project(' :src:plugin-w3' )
143
+ implementation project(" :src:plugin-expath" )
144
+ implementation project(" :src:plugin-exquery" )
145
+ implementation project(" :src:plugin-w3" )
146
146
147
- testImplementation project(' :src:intellij-test' )
147
+ testImplementation project(" :src:intellij-test" )
148
148
testImplementation " org.hamcrest:hamcrest-core:1.3"
149
149
}
150
150
151
- if (idea_type == ' IU ' ) {
151
+ if (idea_type == " IU " ) {
152
152
if (idea_since_build >= 193 ) {
153
- sourceSets. main. resources. srcDirs + = ' src/main/resources-microservices/193'
153
+ sourceSets. main. resources. srcDirs + = " src/main/resources-microservices/193"
154
154
} else {
155
- sourceSets. main. resources. srcDirs + = ' src/main/resources-microservices/compat'
155
+ sourceSets. main. resources. srcDirs + = " src/main/resources-microservices/compat"
156
156
}
157
157
} else {
158
- sourceSets. main. resources. srcDirs + = ' src/main/resources-microservices/compat'
158
+ sourceSets. main. resources. srcDirs + = " src/main/resources-microservices/compat"
159
159
}
160
160
161
161
// Main project tasks:
0 commit comments