From f8315e44c2733cff89f911f101b181519f7ddbe6 Mon Sep 17 00:00:00 2001 From: Eyal Kapon Date: Tue, 27 Aug 2024 10:41:48 +0300 Subject: [PATCH 1/3] updated node version so mac version can run --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 91201269..ab296493 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -32,7 +32,7 @@ jobs: - name: Setup NodeJS uses: actions/setup-node@v3 with: - node-version: '14' + node-version: '16' check-latest: true - uses: actions/setup-python@v4 with: From 6241ba5acd5314f31fa0ed4af520856703dabad1 Mon Sep 17 00:00:00 2001 From: Eyal Kapon Date: Tue, 27 Aug 2024 10:59:51 +0300 Subject: [PATCH 2/3] updated node version so mac version can run and added missing dep to the build. --- build.gradle | 1 + src/main/resources/META-INF/plugin.xml | 4 ++++ 2 files changed, 5 insertions(+) diff --git a/build.gradle b/build.gradle index 705176c6..082ab1c1 100644 --- a/build.gradle +++ b/build.gradle @@ -63,6 +63,7 @@ dependencies { implementation group: 'org.jfrog.filespecs', name: 'file-specs-java', version: '1.1.2' implementation group: 'org.apache.commons', name: 'commons-lang3', version: '3.11' implementation group: 'com.google.guava', name: 'guava', version: '32.0.1-jre' + implementation group: 'org.codehaus.plexus', name: 'plexus-utils', version: '3.4.1' implementation group: 'net.lingala.zip4j', name: 'zip4j', version: '2.11.4' annotationProcessor group: 'org.projectlombok', name: 'lombok', version: '1.18.20' diff --git a/src/main/resources/META-INF/plugin.xml b/src/main/resources/META-INF/plugin.xml index cfe9ca5f..5ae78e02 100644 --- a/src/main/resources/META-INF/plugin.xml +++ b/src/main/resources/META-INF/plugin.xml @@ -42,6 +42,10 @@ org.jetbrains.kotlin org.jetbrains.idea.maven org.jetbrains.plugins.go + com.intellij.modules.web + com.intellij.modules.html + com.intellij.modules.css + com.intellij.modules.javascript com.intellij.modules.python PythonCore From 65a22ea69bb0629f268c2fb3b813ab432279044f Mon Sep 17 00:00:00 2001 From: Eyal Kapon Date: Tue, 27 Aug 2024 13:51:26 +0300 Subject: [PATCH 3/3] upgraded node version to 20 in test yaml removed unnecessary from plugin.xml --- .github/workflows/test.yml | 2 +- src/main/resources/META-INF/plugin.xml | 4 ---- 2 files changed, 1 insertion(+), 5 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index ab296493..3c052d5d 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -32,7 +32,7 @@ jobs: - name: Setup NodeJS uses: actions/setup-node@v3 with: - node-version: '16' + node-version: '20' check-latest: true - uses: actions/setup-python@v4 with: diff --git a/src/main/resources/META-INF/plugin.xml b/src/main/resources/META-INF/plugin.xml index 5ae78e02..cfe9ca5f 100644 --- a/src/main/resources/META-INF/plugin.xml +++ b/src/main/resources/META-INF/plugin.xml @@ -42,10 +42,6 @@ org.jetbrains.kotlin org.jetbrains.idea.maven org.jetbrains.plugins.go - com.intellij.modules.web - com.intellij.modules.html - com.intellij.modules.css - com.intellij.modules.javascript com.intellij.modules.python PythonCore