[
https://issues.jboss.org/browse/JBIDE-10444?page=com.atlassian.jira.plugi...
]
Andre Dietisheim updated JBIDE-10444:
-------------------------------------
Labels: new_and_noteworthy (was: )
Release Notes Text: OpenShift Express needs an *openshift* profile in the pom of a
maven project it shall build. In M5 JBoss Tools assisted the user with a template. You had
to add the profile manually if you wanted to push a maven project to OpenShift. In Beta1
we now do that automatically. We add the required profile automatically if you tell the
wizard to enable OpenShift for your existing maven project.
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
Labels: new_and_noteworthy
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