[JBoss JIRA] (JBDS-4730) [Rebranding] Use "Red Hat CodeReady Studio" instead of "Red Hat Developer Studio" in graphics & text
by Tiffany Nolan (Jira)
[ https://issues.jboss.org/browse/JBDS-4730?page=com.atlassian.jira.plugin.... ]
Tiffany Nolan commented on JBDS-4730:
-------------------------------------
[~sjcox] An issue to keep an eye on, related to the new CodeReady branding project.
> [Rebranding] Use "Red Hat CodeReady Studio" instead of "Red Hat Developer Studio" in graphics & text
> ----------------------------------------------------------------------------------------------------
>
> Key: JBDS-4730
> URL: https://issues.jboss.org/browse/JBDS-4730
> Project: Red Hat JBoss Developer Studio (devstudio)
> Issue Type: Task
> Components: build, installer
> Affects Versions: 12.9.0.AM3
> Reporter: Nick Boldt
> Assignee: Catherine Robson
> Priority: Blocker
> Fix For: 12.11.0.AM1
>
>
> Branding has requested that we rename devstudio from "Red Hat Developer Studio" to "Red Hat CodeReady Studio".
> As we did recently in JBDS-4706, we'll need to collect graphics for use in the product and its website on https://devstudio.redhat.com/12/staging/updates/
> We'll need this rebrand done for the upcoming December release. All changes need to be done by November 6 so they can be included in the AM1 feature complete release on Nov 13, in support of the docs team, updating screenshots, install instructions, etc.
--
This message was sent by Atlassian Jira
(v7.12.1#712002)
7 years, 4 months
[JBoss JIRA] (JBDS-4745) Drools maven archetype or quickstart using kjar packaging doesn't build
by Anton Giertli (Jira)
[ https://issues.jboss.org/browse/JBDS-4745?page=com.atlassian.jira.plugin.... ]
Anton Giertli commented on JBDS-4745:
-------------------------------------
Please re-test with drools/kie-maven-plugin 7.11.0.Final-redhat-00004 (located in https://maven.repository.redhat.com/ga )
> Drools maven archetype or quickstart using kjar packaging doesn't build
> -------------------------------------------------------------------------
>
> Key: JBDS-4745
> URL: https://issues.jboss.org/browse/JBDS-4745
> Project: Red Hat JBoss Developer Studio (devstudio)
> Issue Type: Bug
> Components: build
> Affects Versions: 12.9.0.GA
> Reporter: Mister PM
> Assignee: Jeff MAURY
> Priority: Minor
> Fix For: 12.x
>
> Attachments: pom.xml, pom.xml
>
>
> Any drools project which needs to use kie-maven-plugin to packing kjar maven project it's falling to build with the following error:
>
> An internal error occurred during: "Updating Maven Project".
> Missing parameter for pluginExecutionFilter. groupId, artifactId, versionRange and goals must be specificed, but found: groupId = 'org.kie'
> artifactId = 'kie-maven-plugin'
> versionRange = '7.13.0.Final'
> goals = '[]'
> You can create a maven project from the catalog archetype kie-drools-archetype, which will come with
> ...
> <packaging>kjar</packaging>
> ...
> ...
> <plugin>
> <groupId>org.kie</groupId>
> <artifactId>kie-maven-plugin</artifactId>
> <version>${drools-version}</version>
> <extensions>true</extensions>
> </plugin>
> I also added this part here in the pom file
> <pluginManagement>
> <plugins>
> <!--This plugin's configuration is used to store Eclipse m2e settings
> only. It has no influence on the Maven build itself. -->
> <plugin>
> <groupId>org.eclipse.m2e</groupId>
> <artifactId>lifecycle-mapping</artifactId>
> <version>1.0.0</version>
> <configuration>
> <lifecycleMappingMetadata>
> <pluginExecutions>
> <pluginExecution>
> <pluginExecutionFilter>
> <groupId>org.kie</groupId>
> <artifactId>kie-maven-plugin</artifactId>
> <versionRange>${drools-version}</versionRange>
> <goals>
> <goal>compile</goal>
> <goal>package</goal>
> <goal>build</goal>
> </goals>
> </pluginExecutionFilter>
> <action>
> <ignore />
> </action>
> </pluginExecution>
> </pluginExecutions>
> </lifecycleMappingMetadata>
> </configuration>
> </plugin>
> </plugins>
> </pluginManagement>
> Which was a workaround in previous drools version.
> However this didn't work either.
> I can build from the command line with or without the pluginManagement and I can build this archetype without issues in other IDE like IntelliJ
>
--
This message was sent by Atlassian Jira
(v7.12.1#712002)
7 years, 4 months
[JBoss JIRA] (JBDS-4745) Drools maven archetype or quickstart using kjar packaging doesn't build
by Mister PM (Jira)
[ https://issues.jboss.org/browse/JBDS-4745?page=com.atlassian.jira.plugin.... ]
Mister PM commented on JBDS-4745:
---------------------------------
Hi [~jeffmaury],
I tested your workaround using the pom.xml you attached.
Then this works fine.
I also got the latest archetype from maven repo today, kie-kjar-archetype, then JBoss Developer Studio 12.9.0.GA, was able to give me 3 quick fix from the problem list and added this plugin management to my pom
<pluginManagement>
<plugins>
<!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.-->
<plugin>
<groupId>org.eclipse.m2e</groupId>
<artifactId>lifecycle-mapping</artifactId>
<version>1.0.0</version>
<configuration>
<lifecycleMappingMetadata>
<pluginExecutions>
<pluginExecution>
<pluginExecutionFilter>
<groupId>org.kie</groupId>
<artifactId>
kie-maven-plugin
</artifactId>
<versionRange>
[7.14.0.Final,)
</versionRange>
<goals>
<goal>build</goal>
<goal>generateDMNModel</goal>
</goals>
</pluginExecutionFilter>
<action>
<ignore></ignore>
</action>
</pluginExecution>
</pluginExecutions>
</lifecycleMappingMetadata>
</configuration>
</plugin>
</plugins>
</pluginManagement>
To ignore the problem, then it works fine as well.
Ideal would be great if the a kie-kjar-architype works across all types of IDE without need to include any workaround.
Should we have a knowledge page explaining this workaround and keep this jira open until we have a fix for this?
Thanks
Paulo Menon
> Drools maven archetype or quickstart using kjar packaging doesn't build
> -------------------------------------------------------------------------
>
> Key: JBDS-4745
> URL: https://issues.jboss.org/browse/JBDS-4745
> Project: Red Hat JBoss Developer Studio (devstudio)
> Issue Type: Bug
> Components: build
> Affects Versions: 12.9.0.GA
> Reporter: Mister PM
> Assignee: Jeff MAURY
> Priority: Minor
> Fix For: 12.x
>
> Attachments: pom.xml, pom.xml
>
>
> Any drools project which needs to use kie-maven-plugin to packing kjar maven project it's falling to build with the following error:
>
> An internal error occurred during: "Updating Maven Project".
> Missing parameter for pluginExecutionFilter. groupId, artifactId, versionRange and goals must be specificed, but found: groupId = 'org.kie'
> artifactId = 'kie-maven-plugin'
> versionRange = '7.13.0.Final'
> goals = '[]'
> You can create a maven project from the catalog archetype kie-drools-archetype, which will come with
> ...
> <packaging>kjar</packaging>
> ...
> ...
> <plugin>
> <groupId>org.kie</groupId>
> <artifactId>kie-maven-plugin</artifactId>
> <version>${drools-version}</version>
> <extensions>true</extensions>
> </plugin>
> I also added this part here in the pom file
> <pluginManagement>
> <plugins>
> <!--This plugin's configuration is used to store Eclipse m2e settings
> only. It has no influence on the Maven build itself. -->
> <plugin>
> <groupId>org.eclipse.m2e</groupId>
> <artifactId>lifecycle-mapping</artifactId>
> <version>1.0.0</version>
> <configuration>
> <lifecycleMappingMetadata>
> <pluginExecutions>
> <pluginExecution>
> <pluginExecutionFilter>
> <groupId>org.kie</groupId>
> <artifactId>kie-maven-plugin</artifactId>
> <versionRange>${drools-version}</versionRange>
> <goals>
> <goal>compile</goal>
> <goal>package</goal>
> <goal>build</goal>
> </goals>
> </pluginExecutionFilter>
> <action>
> <ignore />
> </action>
> </pluginExecution>
> </pluginExecutions>
> </lifecycleMappingMetadata>
> </configuration>
> </plugin>
> </plugins>
> </pluginManagement>
> Which was a workaround in previous drools version.
> However this didn't work either.
> I can build from the command line with or without the pluginManagement and I can build this archetype without issues in other IDE like IntelliJ
>
--
This message was sent by Atlassian Jira
(v7.12.1#712002)
7 years, 4 months
[JBoss JIRA] (JBDS-4745) Drools maven archetype or quickstart using kjar packaging doesn't build
by Jeff MAURY (Jira)
[ https://issues.jboss.org/browse/JBDS-4745?page=com.atlassian.jira.plugin.... ]
Jeff MAURY updated JBDS-4745:
-----------------------------
Attachment: pom.xml
> Drools maven archetype or quickstart using kjar packaging doesn't build
> -------------------------------------------------------------------------
>
> Key: JBDS-4745
> URL: https://issues.jboss.org/browse/JBDS-4745
> Project: Red Hat JBoss Developer Studio (devstudio)
> Issue Type: Bug
> Components: build
> Affects Versions: 12.9.0.GA
> Reporter: Mister PM
> Assignee: Jeff MAURY
> Priority: Minor
> Fix For: 12.x
>
> Attachments: pom.xml, pom.xml
>
>
> Any drools project which needs to use kie-maven-plugin to packing kjar maven project it's falling to build with the following error:
>
> An internal error occurred during: "Updating Maven Project".
> Missing parameter for pluginExecutionFilter. groupId, artifactId, versionRange and goals must be specificed, but found: groupId = 'org.kie'
> artifactId = 'kie-maven-plugin'
> versionRange = '7.13.0.Final'
> goals = '[]'
> You can create a maven project from the catalog archetype kie-drools-archetype, which will come with
> ...
> <packaging>kjar</packaging>
> ...
> ...
> <plugin>
> <groupId>org.kie</groupId>
> <artifactId>kie-maven-plugin</artifactId>
> <version>${drools-version}</version>
> <extensions>true</extensions>
> </plugin>
> I also added this part here in the pom file
> <pluginManagement>
> <plugins>
> <!--This plugin's configuration is used to store Eclipse m2e settings
> only. It has no influence on the Maven build itself. -->
> <plugin>
> <groupId>org.eclipse.m2e</groupId>
> <artifactId>lifecycle-mapping</artifactId>
> <version>1.0.0</version>
> <configuration>
> <lifecycleMappingMetadata>
> <pluginExecutions>
> <pluginExecution>
> <pluginExecutionFilter>
> <groupId>org.kie</groupId>
> <artifactId>kie-maven-plugin</artifactId>
> <versionRange>${drools-version}</versionRange>
> <goals>
> <goal>compile</goal>
> <goal>package</goal>
> <goal>build</goal>
> </goals>
> </pluginExecutionFilter>
> <action>
> <ignore />
> </action>
> </pluginExecution>
> </pluginExecutions>
> </lifecycleMappingMetadata>
> </configuration>
> </plugin>
> </plugins>
> </pluginManagement>
> Which was a workaround in previous drools version.
> However this didn't work either.
> I can build from the command line with or without the pluginManagement and I can build this archetype without issues in other IDE like IntelliJ
>
--
This message was sent by Atlassian Jira
(v7.12.1#712002)
7 years, 4 months
[JBoss JIRA] (JBDS-4745) Drools maven archetype or quickstart using kjar packaging doesn't build
by Jeff MAURY (Jira)
[ https://issues.jboss.org/browse/JBDS-4745?page=com.atlassian.jira.plugin.... ]
Jeff MAURY commented on JBDS-4745:
----------------------------------
Did the following testing:
* on JBDS 12.0, if I add several goals it works
* on JDBS 12.9, it fails. However, I found the following workaround:instead of having several goals in a single pluginExecution, I generated several pluginExecution each with a single goal: see
[^pom.xml]
> Drools maven archetype or quickstart using kjar packaging doesn't build
> -------------------------------------------------------------------------
>
> Key: JBDS-4745
> URL: https://issues.jboss.org/browse/JBDS-4745
> Project: Red Hat JBoss Developer Studio (devstudio)
> Issue Type: Bug
> Components: build
> Affects Versions: 12.9.0.GA
> Reporter: Mister PM
> Assignee: Jeff MAURY
> Priority: Minor
> Fix For: 12.x
>
> Attachments: pom.xml, pom.xml
>
>
> Any drools project which needs to use kie-maven-plugin to packing kjar maven project it's falling to build with the following error:
>
> An internal error occurred during: "Updating Maven Project".
> Missing parameter for pluginExecutionFilter. groupId, artifactId, versionRange and goals must be specificed, but found: groupId = 'org.kie'
> artifactId = 'kie-maven-plugin'
> versionRange = '7.13.0.Final'
> goals = '[]'
> You can create a maven project from the catalog archetype kie-drools-archetype, which will come with
> ...
> <packaging>kjar</packaging>
> ...
> ...
> <plugin>
> <groupId>org.kie</groupId>
> <artifactId>kie-maven-plugin</artifactId>
> <version>${drools-version}</version>
> <extensions>true</extensions>
> </plugin>
> I also added this part here in the pom file
> <pluginManagement>
> <plugins>
> <!--This plugin's configuration is used to store Eclipse m2e settings
> only. It has no influence on the Maven build itself. -->
> <plugin>
> <groupId>org.eclipse.m2e</groupId>
> <artifactId>lifecycle-mapping</artifactId>
> <version>1.0.0</version>
> <configuration>
> <lifecycleMappingMetadata>
> <pluginExecutions>
> <pluginExecution>
> <pluginExecutionFilter>
> <groupId>org.kie</groupId>
> <artifactId>kie-maven-plugin</artifactId>
> <versionRange>${drools-version}</versionRange>
> <goals>
> <goal>compile</goal>
> <goal>package</goal>
> <goal>build</goal>
> </goals>
> </pluginExecutionFilter>
> <action>
> <ignore />
> </action>
> </pluginExecution>
> </pluginExecutions>
> </lifecycleMappingMetadata>
> </configuration>
> </plugin>
> </plugins>
> </pluginManagement>
> Which was a workaround in previous drools version.
> However this didn't work either.
> I can build from the command line with or without the pluginManagement and I can build this archetype without issues in other IDE like IntelliJ
>
--
This message was sent by Atlassian Jira
(v7.12.1#712002)
7 years, 4 months
[JBoss JIRA] (JBDS-4745) Drools maven archetype or quickstart using kjar packaging doesn't build
by Anton Giertli (Jira)
[ https://issues.jboss.org/browse/JBDS-4745?page=com.atlassian.jira.plugin.... ]
Anton Giertli commented on JBDS-4745:
-------------------------------------
Hi [~jeffmaury],
when can we expect a fix? We need to set expectations with our customers.
Thanks,
Anton
> Drools maven archetype or quickstart using kjar packaging doesn't build
> -------------------------------------------------------------------------
>
> Key: JBDS-4745
> URL: https://issues.jboss.org/browse/JBDS-4745
> Project: Red Hat JBoss Developer Studio (devstudio)
> Issue Type: Bug
> Components: build
> Affects Versions: 12.9.0.GA
> Reporter: Mister PM
> Assignee: Jeff MAURY
> Priority: Minor
> Fix For: 12.x
>
> Attachments: pom.xml
>
>
> Any drools project which needs to use kie-maven-plugin to packing kjar maven project it's falling to build with the following error:
>
> An internal error occurred during: "Updating Maven Project".
> Missing parameter for pluginExecutionFilter. groupId, artifactId, versionRange and goals must be specificed, but found: groupId = 'org.kie'
> artifactId = 'kie-maven-plugin'
> versionRange = '7.13.0.Final'
> goals = '[]'
> You can create a maven project from the catalog archetype kie-drools-archetype, which will come with
> ...
> <packaging>kjar</packaging>
> ...
> ...
> <plugin>
> <groupId>org.kie</groupId>
> <artifactId>kie-maven-plugin</artifactId>
> <version>${drools-version}</version>
> <extensions>true</extensions>
> </plugin>
> I also added this part here in the pom file
> <pluginManagement>
> <plugins>
> <!--This plugin's configuration is used to store Eclipse m2e settings
> only. It has no influence on the Maven build itself. -->
> <plugin>
> <groupId>org.eclipse.m2e</groupId>
> <artifactId>lifecycle-mapping</artifactId>
> <version>1.0.0</version>
> <configuration>
> <lifecycleMappingMetadata>
> <pluginExecutions>
> <pluginExecution>
> <pluginExecutionFilter>
> <groupId>org.kie</groupId>
> <artifactId>kie-maven-plugin</artifactId>
> <versionRange>${drools-version}</versionRange>
> <goals>
> <goal>compile</goal>
> <goal>package</goal>
> <goal>build</goal>
> </goals>
> </pluginExecutionFilter>
> <action>
> <ignore />
> </action>
> </pluginExecution>
> </pluginExecutions>
> </lifecycleMappingMetadata>
> </configuration>
> </plugin>
> </plugins>
> </pluginManagement>
> Which was a workaround in previous drools version.
> However this didn't work either.
> I can build from the command line with or without the pluginManagement and I can build this archetype without issues in other IDE like IntelliJ
>
--
This message was sent by Atlassian Jira
(v7.12.1#712002)
7 years, 4 months
[JBoss JIRA] (JBIDE-26468) Connection wizard: should help user to get the correct OpenShift server for openshift.io
by Suzumura Keishi (Jira)
[ https://issues.jboss.org/browse/JBIDE-26468?page=com.atlassian.jira.plugi... ]
Suzumura Keishi commented on JBIDE-26468:
-----------------------------------------
Hi Andre,
Thank you for your update! I had forgotten the steps until you point. I completely agree your suggestion. I need an UI that is easy to understand.
> Connection wizard: should help user to get the correct OpenShift server for openshift.io
> ----------------------------------------------------------------------------------------
>
> Key: JBIDE-26468
> URL: https://issues.jboss.org/browse/JBIDE-26468
> Project: Tools (JBoss Tools)
> Issue Type: Bug
> Components: openshift
> Affects Versions: 4.9.0.Final
> Environment: Red Hat Developer Studio
> Version: 12.9.0.GA
> Build id: GA-v20180928-1629-B3448
> Build date: 20180928-1629
> Eclipse Platform
> Version: 4.9.0.v20180906-1121
> Build id: I20180906-0745
> Red Hat Developer Studio (Core Features) 12.9.0.v20180928-1629
> Red Hat Developer Studio (RPM Features) 12.9.0.v20180928-1629
> JBoss OpenShift 3 Tools 3.5.2.v20180928-1232
> JBoss OpenShift JavaScript Tools 3.5.2.v20180807-2303
> JBoss OpenShift.io Tools 3.5.2.v20180823-1255
> Red Hat Container Development Kit Support 3.5.2.v20180816-1351
> Reporter: Suzumura Keishi
> Priority: Major
> Labels: connection_wizard, openshift_io, ux
> Fix For: 4.10.x
>
> Attachments: openshift-io-user-settings.png, openshift-online-copy-login-command.png, test.png
>
>
> When creating "New Connection" in OpenShift Explorer, the following error appears.
> ---
> Invalid character: <" w
> ---
--
This message was sent by Atlassian Jira
(v7.12.1#712002)
7 years, 4 months