You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tomee.apache.org by ra...@apache.org on 2019/02/14 12:35:45 UTC

[tomee] branch master updated: deployment must happen on port 80. Webprofile is lighter

This is an automated email from the ASF dual-hosted git repository.

radcortez pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/tomee.git


The following commit(s) were added to refs/heads/master by this push:
     new 3b242b6  deployment must happen on port 80. Webprofile is lighter
3b242b6 is described below

commit 3b242b6831fc6a7877a9faccf32296c2d8bb007a
Author: brunobat <br...@gmail.com>
AuthorDate: Fri Feb 8 10:18:48 2019 +0000

    deployment must happen on port 80. Webprofile is lighter
    
    Signed-off-by: brunobat <br...@gmail.com>
---
 examples/cloud-tomee-azure/pom.xml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/examples/cloud-tomee-azure/pom.xml b/examples/cloud-tomee-azure/pom.xml
index 1f2d995..2a61708 100644
--- a/examples/cloud-tomee-azure/pom.xml
+++ b/examples/cloud-tomee-azure/pom.xml
@@ -61,11 +61,11 @@
                 <artifactId>tomee-maven-plugin</artifactId>
                 <version>${project.version}</version>
                 <configuration>
-                    <tomeeClassifier>plus</tomeeClassifier>
+                    <tomeeClassifier>webprofile</tomeeClassifier>
                     <!--You can tweak this for your case-->
                     <args>-Xmx512m -XX:PermSize=256m</args>
                     <!--Azure requires this port and the default on TomEE is 8080-->
-                    <!--<tomeeHttpPort>80</tomeeHttpPort>-->
+                    <tomeeHttpPort>80</tomeeHttpPort>
                     <!--You can place here, if needed, all the config files needed for the tomee/conf folder-->
                     <!--<config>${project.basedir}/src/main/tomee/</config>-->
                 </configuration>