-
Enhancement
-
Resolution: Done
-
Major
-
3.3.0.M5
A maven project, that shall be built on OpenShift needs the following profile in its pom.xml:
<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-environments.html -->
<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>
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.
- blocks
-
JBIDE-10479 UserStory: I have a project with existing .git repo, I want to use OpenShift
-
- Closed
-