@@ -79,12 +79,12 @@ configure(allprojects - project(":src")) {
79
79
testFramework TestFrameworkType.Platform . INSTANCE
80
80
}
81
81
82
- testImplementation " org.junit.jupiter:junit-jupiter-api:$junit5_version "
83
- testImplementation " org.hamcrest:hamcrest-core:1.3"
82
+ testImplementation( " org.junit.jupiter:junit-jupiter-api:$junit5_version " )
83
+ testImplementation( " org.hamcrest:hamcrest-core:1.3" )
84
84
85
- testRuntimeOnly " org.junit.platform:junit-platform-launcher:$junit_platform_version "
86
- testRuntimeOnly " org.junit.jupiter:junit-jupiter-engine:$junit5_version "
87
- testRuntimeOnly " junit:junit:4.13"
85
+ testRuntimeOnly( " org.junit.platform:junit-platform-launcher:$junit_platform_version " )
86
+ testRuntimeOnly( " org.junit.jupiter:junit-jupiter-engine:$junit5_version " )
87
+ testRuntimeOnly( " junit:junit:4.13" )
88
88
}
89
89
90
90
// Subproject tasks:
@@ -111,41 +111,41 @@ 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" )
148
- testImplementation " org.hamcrest:hamcrest-core:1.3"
147
+ testImplementation( project(" :src:intellij-test" ) )
148
+ testImplementation( " org.hamcrest:hamcrest-core:1.3" )
149
149
}
150
150
151
151
if (idea_type == " IU" ) {
0 commit comments