[JBoss JIRA] (JBIDE-10444) add "openshift" profile to project when pushing an existing maven project to OpenShift
by Andre Dietisheim (Created) (JIRA)
add "openshift" profile to project when pushing an existing maven project to OpenShift
--------------------------------------------------------------------------------------
Key: JBIDE-10444
URL: https://issues.jboss.org/browse/JBIDE-10444
Project: Tools (JBoss Tools)
Issue Type: Enhancement
Components: openshift
Affects Versions: 3.3.0.M5
Reporter: Andre Dietisheim
Assignee: Andre Dietisheim
Fix For: 3.3.0.Beta1
A maven project, that shall be built on OpenShift needs the following profile in its pom.xml:
{code}
<profiles>
<profile>
<!-- When built in OpenShift the 'openshift' profile will be used when invoking mvn. -->
<!-- Use this profile for any OpenShift specific customization your app will need. -->
<!-- By default that is to put the resulting archive into the 'deployments' folder. -->
<!-- http://maven.apache.org/guides/mini/guide-building-for-different-environm... -->
<id>openshift</id>
<build>
<finalName>as</finalName>
<plugins>
<plugin>
<artifactId>maven-war-plugin</artifactId>
<version>2.1.1</version>
<configuration>
<outputDirectory>deployments</outputDirectory>
<warName>ROOT</warName>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>
{code}
The current OpenShift tooling does not add this profile if it's not present yet. We should help the user to have that profile added by merging it into the pom.
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.jboss.org/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira
14 years, 1 month
[JBoss JIRA] Created: (JBIDE-8226) "Error parsing composite repository" entries in Eclipse log after installing update for JBoss Tools from nightly update site
by Denis Golovin (JIRA)
"Error parsing composite repository" entries in Eclipse log after installing update for JBoss Tools from nightly update site
----------------------------------------------------------------------------------------------------------------------------
Key: JBIDE-8226
URL: https://issues.jboss.org/browse/JBIDE-8226
Project: Tools (JBoss Tools)
Issue Type: Bug
Components: Build/Releng
Affects Versions: 3.2.0.CR1
Reporter: Denis Golovin
Assignee: Nick Boldt
!ENTRY org.eclipse.equinox.p2.core 2 0 2011-01-25 13:37:48.382
!MESSAGE Error parsing composite repository
!SUBENTRY 1 org.eclipse.equinox.p2.core 2 0 2011-01-25 13:37:48.382
!MESSAGE Error at line 3, column 156: Missing required attribute in "repository": version
!ENTRY org.eclipse.equinox.p2.core 2 0 2011-01-25 13:37:49.937
!MESSAGE Error parsing composite repository
!SUBENTRY 1 org.eclipse.equinox.p2.core 2 0 2011-01-25 13:37:49.938
!MESSAGE Error at line 3, column 131: Missing required attribute in "repository": version
!ENTRY org.eclipse.equinox.p2.core 2 0 2011-01-25 13:37:51.664
!MESSAGE Error parsing composite repository
!SUBENTRY 1 org.eclipse.equinox.p2.core 2 0 2011-01-25 13:37:51.664
!MESSAGE Error at line 3, column 130: Missing required attribute in "repository": version
!ENTRY org.eclipse.equinox.p2.core 2 0 2011-01-25 13:37:53.411
!MESSAGE Error parsing composite repository
!SUBENTRY 1 org.eclipse.equinox.p2.core 2 0 2011-01-25 13:37:53.411
!MESSAGE Error at line 3, column 121: Missing required attribute in "repository": version
!ENTRY org.eclipse.equinox.p2.core 2 0 2011-01-25 13:37:55.434
!MESSAGE Error parsing composite repository
!SUBENTRY 1 org.eclipse.equinox.p2.core 2 0 2011-01-25 13:37:55.434
!MESSAGE Error at line 3, column 127: Missing required attribute in "repository": version
!ENTRY org.eclipse.equinox.p2.core 2 0 2011-01-25 13:38:59.786
!MESSAGE Error parsing composite repository
!SUBENTRY 1 org.eclipse.equinox.p2.core 2 0 2011-01-25 13:38:59.786
!MESSAGE Error at line 3, column 156: Missing required attribute in "repository": version
!ENTRY org.eclipse.equinox.p2.core 2 0 2011-01-25 13:39:00.989
!MESSAGE Error parsing composite repository
!SUBENTRY 1 org.eclipse.equinox.p2.core 2 0 2011-01-25 13:39:00.989
!MESSAGE Error at line 3, column 131: Missing required attribute in "repository": version
!ENTRY org.eclipse.equinox.p2.core 2 0 2011-01-25 13:39:02.855
!MESSAGE Error parsing composite repository
!SUBENTRY 1 org.eclipse.equinox.p2.core 2 0 2011-01-25 13:39:02.855
!MESSAGE Error at line 3, column 130: Missing required attribute in "repository": version
!ENTRY org.eclipse.equinox.p2.core 2 0 2011-01-25 13:39:04.765
!MESSAGE Error parsing composite repository
!SUBENTRY 1 org.eclipse.equinox.p2.core 2 0 2011-01-25 13:39:04.765
!MESSAGE Error at line 3, column 121: Missing required attribute in "repository": version
!ENTRY org.eclipse.equinox.p2.core 2 0 2011-01-25 13:39:06.768
!MESSAGE Error parsing composite repository
!SUBENTRY 1 org.eclipse.equinox.p2.core 2 0 2011-01-25 13:39:06.768
!MESSAGE Error at line 3, column 127: Missing required attribute in "repository": version
--
This message is automatically generated by JIRA.
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
14 years, 1 month
[JBoss JIRA] (JBIDE-10549) Wizards do not report in details what they're doing. Should report "creating app...", "waiting app to become available..." etc.
by Andre Dietisheim (Created) (JIRA)
Wizards do not report in details what they're doing. Should report "creating app...", "waiting app to become available..." etc.
-------------------------------------------------------------------------------------------------------------------------------
Key: JBIDE-10549
URL: https://issues.jboss.org/browse/JBIDE-10549
Project: Tools (JBoss Tools)
Issue Type: Enhancement
Components: openshift
Affects Versions: 3.3.0.M5
Reporter: Andre Dietisheim
Assignee: Andre Dietisheim
Fix For: 3.3.0.Beta1
The wizards currently show a single status when they perform their task. The work that is being reported should be split into smaller portions. Ex. when creating an app, a first task is to create the app, then to wait for it to become ready, etc.
How to reproduce:
# EXEC: launch OpenShift Application wizard & log in
# EXEC: create a new app
Result:
The wizard just tells you: "Creating application...". It does not report that it is waiting for the app to become reading after sending the request.
Even more obvious when importing the project in the end of the wizard:
# EXEC: launch OpenShit Application wizard & log in
# EXEC: create a new app / select an existing one
# EXEC: on the last page: dont touch anything, just confirm by hitting "Finish".
Result:
Behind the scenes, the wizard will clone the openshift git repo locally, will import the projects from it, create the server adapter etc.
None of the subtasks are reported. You are just told "Importing project..."
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.jboss.org/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira
14 years, 1 month
[JBoss JIRA] (JBIDE-10543) Binary OpenShift Server adapter
by Max Rydahl Andersen (Created) (JIRA)
Binary OpenShift Server adapter
-------------------------------
Key: JBIDE-10543
URL: https://issues.jboss.org/browse/JBIDE-10543
Project: Tools (JBoss Tools)
Issue Type: Bug
Components: openshift
Reporter: Max Rydahl Andersen
Assignee: Andre Dietisheim
Fix For: 3.3.0.Beta1, 3.3.0.Beta2
Attachments: sourcevsbinary.bmml, sourcevsbinary.png
Binary server adapter should be added which allows any app that already deploys to our AS7 servers be deployed to openshift.
The logic for it is exactly (more or less) the same as for normal file or RSH deploy:
if(!temprepo)
git clone <openshifturl> temprepo
git fetch
foreach(module in modules)
build module
cp builtmodule to temprepo/deployments
git push * this push should not trigger the whole openshift build thing and should only be done once at end of publish.
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.jboss.org/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira
14 years, 1 month
[JBoss JIRA] Created: (JBIDE-7432) OPTIONS method returns [POST, OPTIONS] for RESTEasy simple project in Web Service Test View
by Ben Clare (JIRA)
OPTIONS method returns [POST, OPTIONS] for RESTEasy simple project in Web Service Test View
--------------------------------------------------------------------------------------------
Key: JBIDE-7432
URL: https://jira.jboss.org/browse/JBIDE-7432
Project: Tools (JBoss Tools)
Issue Type: Bug
Affects Versions: 3.2.0.CR1
Reporter: Ben Clare
I have set up the RESTEasy sample project (simple) and used the Web Service Test View to return the available options. The options are:
POST, OPTIONS
The documentation located at http://community.jboss.org/wiki/UsingtheWebServiceTester suggests that the options should be:
GET, HEAD, POST, PUT, DELETE, TRACE, and OPTIONS
The JBoss Tools Project Examples version is reported by Eclipse as:
JBoss Tools Community Project Examples 1.1.0.v20100908-1606-H23-M2 org.jboss.tools.community.project.examples.feature.feature.group
Any idea as to why the options do not include GET, HEAD, PUT, DELETE and TRACE
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: https://jira.jboss.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
14 years, 1 month