Skip to content

Commit

Permalink
kie issues#685: DMN Editor: Import Java Classes button is not enabled (
Browse files Browse the repository at this point in the history
  • Loading branch information
yesamer authored Nov 14, 2023
1 parent 097dc96 commit 8bc7e3f
Show file tree
Hide file tree
Showing 32 changed files with 7 additions and 41 deletions.
3 changes: 0 additions & 3 deletions packages/bpmn-vscode-extension/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -101,9 +101,6 @@
"viewType": "kieKogitoWebviewEditorsBpmn"
}
],
"javaExtensions": [
"./dist/server/vscode-java-code-completion-extension-plugin-core.jar"
],
"languages": [
{
"aliases": [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ export const en: ImportJavaClassesWizardI18n = {
modalButton: {
text: "Import Java classes",
disabledMessage:
"Not available, please check if 'Language Support for Java by Red Hat' extension is correctly installed and the @KieActivator annotation is present",
"Not available, please check if 'Language Support for Java by Red Hat' extension is correctly installed and the Activator Java Class is present in your project.",
errorMessage: "An error occurred. Please check your WebView Developer Tools",
},
modalWizard: {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
<tycho.scmUrl>scm:git:https://github.com/kiegroup/kie-tools.git</tycho.scmUrl>
<tycho.generateSourceReferences>true</tycho.generateSourceReferences>
<!-- Using a SNAPSHOT version because of https://github.com/eclipse/eclipse.jdt.ls/issues/1970 -->
<jdt.ls.version>1.28.0-SNAPSHOT</jdt.ls.version>
<jdt.ls.version>1.29.0-SNAPSHOT</jdt.ls.version>
<tycho.test.platformArgs />
<tycho.test.jvmArgs>-Xmx512m ${tycho.test.platformArgs}</tycho.test.jvmArgs>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,5 @@ Require-Bundle: org.eclipse.core.runtime,
org.eclipse.lsp4j.jsonrpc
Bundle-ActivationPolicy: lazy
Bundle-RequiredExecutionEnvironment: JavaSE-11
Bundle-ClassPath: lib/freemarker-2.3.31.jar,
.
Import-Package: com.google.gson,
com.google.gson.stream


Bundle-ClassPath: lib/freemarker-2.3.32.jar, .
Import-Package: com.google.gson, com.google.gson.stream
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,11 @@
# specific language governing permissions and limitations
# under the License.
#

ource..=src/main/java/
source..=src/main/java/
output..=target/classes/
bin.includes=plugin.xml,\
META-INF/,\
src/main/resources/templates,\
lib/freemarker-2.3.31.jar,\
lib/freemarker-2.3.32.jar,\
.
src.includes=src/main/java
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
<description>vscode-java-code-completion-extension-plugin-core</description>

<properties>
<version.org.freemarker>2.3.31</version.org.freemarker>
<version.org.freemarker>2.3.32</version.org.freemarker>
<version.org.assertj>3.23.1</version.org.assertj>
<version.org.junit.jupiter>5.9.1</version.org.junit.jupiter>
<version.org.mockito>4.8.0</version.org.mockito>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@
* under the License.
*/


package org.kogito.core.internal;

import java.util.List;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@
* under the License.
*/


package org.kogito.core.internal;

import org.osgi.framework.BundleActivator;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@
* under the License.
*/


package org.kogito.core.internal.api;

public class GetClassesResult {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@
* under the License.
*/


package org.kogito.core.internal.api;

public class GetPublicParameters {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@
* under the License.
*/


package org.kogito.core.internal.api;

public class GetPublicResult {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@
* under the License.
*/


package org.kogito.core.internal.engine;

import java.nio.file.Path;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@
* under the License.
*/


package org.kogito.core.internal.engine;

public class ActivationCheckerException extends RuntimeException {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@
* under the License.
*/


package org.kogito.core.internal.engine;

import java.io.IOException;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@
* under the License.
*/


package org.kogito.core.internal.engine;

import java.nio.file.Path;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@
* under the License.
*/


package org.kogito.core.internal.engine;

import java.io.IOException;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@
* under the License.
*/


package org.kogito.core.internal.engine;

public class TemplateParameters {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@
* under the License.
*/


package org.kogito.core.internal.engine;

public class Templates {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@
* under the License.
*/


package org.kogito.core.internal.engine.exceptions;

public class EngineException extends RuntimeException {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@
* under the License.
*/


package org.kogito.core.internal.handlers;

import java.nio.file.Path;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@
* under the License.
*/


package org.kogito.core.internal.handlers;

import java.util.List;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@
* under the License.
*/


package org.kogito.core.internal.handlers;

import java.util.List;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@
* under the License.
*/


package org.kogito.core.internal.handlers;

import java.util.List;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@
* under the License.
*/


package org.kogito.core.internal.handlers;

public class HandlerConstants {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@
* under the License.
*/


package org.kogito.core.internal.handlers;

import java.util.List;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@
* under the License.
*/


package org.kogito.core.internal.util;

import java.util.Arrays;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@
* under the License.
*/


package org.kogito.core.internal.engine;

import org.junit.jupiter.api.BeforeEach;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@
* under the License.
*/


package org.kogito.core.internal.engine;

import java.io.File;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@
* under the License.
*/


package org.kogito.core.internal.engine;

import org.junit.jupiter.api.BeforeEach;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@
* under the License.
*/


package org.kogito.core.internal.handlers;

import java.util.Map;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@
* under the License.
*/


package org.kogito.core.internal.handlers;

import org.junit.jupiter.api.BeforeEach;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@
* specific language governing permissions and limitations
* under the License.
*/

package org.kogito.core.internal.util;

import org.mockito.MockedStatic;
Expand Down

0 comments on commit 8bc7e3f

Please sign in to comment.