Skip to content

Commit 8e0d3d1

Browse files
authored
fix webstorm jettison dependency (#31)
1 parent 001a808 commit 8e0d3d1

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

build.gradle.kts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ plugins {
1212

1313

1414
group = "com.emberjs"
15-
version = "2023.1.51"
15+
version = "2023.1.52"
1616

1717
// Configure project's dependencies
1818
repositories {
@@ -22,6 +22,7 @@ dependencies {
2222
testImplementation("org.jetbrains.kotlin:kotlin-test")
2323
testImplementation("org.assertj:assertj-core:3.23.1")
2424
implementation(kotlin("test"))
25+
implementation("org.codehaus.jettison:jettison:1.5.4")
2526
}
2627

2728
// Configure gradle-intellij-plugin plugin.
@@ -31,7 +32,7 @@ intellij {
3132

3233
// see https://www.jetbrains.com/intellij-repository/releases/
3334
// and https://www.jetbrains.com/intellij-repository/snapshots/
34-
version.set("2023.1.1")
35+
version.set("2023.1.4")
3536
type.set("IU")
3637

3738
downloadSources.set(!System.getenv().containsKey("CI"))

gradlew

100644100755
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ fi
130130
if [ "$cygwin" = "true" -o "$msys" = "true" ] ; then
131131
APP_HOME=`cygpath --path --mixed "$APP_HOME"`
132132
CLASSPATH=`cygpath --path --mixed "$CLASSPATH"`
133-
133+
134134
JAVACMD=`cygpath --unix "$JAVACMD"`
135135

136136
# We build the pattern for arguments to be converted via cygpath

0 commit comments

Comments
 (0)