<?xml version="1.0" encoding="UTF-8"?>
<feed xmlns="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <title>Hot Deploy</title>
  <link rel="self" href="https://liferay.dev/c/message_boards/find_thread?p_l_id=119785294&amp;threadId=49164449" />
  <subtitle>Hot Deploy</subtitle>
  <id>https://liferay.dev/c/message_boards/find_thread?p_l_id=119785294&amp;threadId=49164449</id>
  <updated>2026-05-21T18:29:54Z</updated>
  <dc:date>2026-05-21T18:29:54Z</dc:date>
  <entry>
    <title>RE: Hot Deploy</title>
    <link rel="alternate" href="https://liferay.dev/c/message_boards/find_message?p_l_id=119785294&amp;messageId=49209817" />
    <author>
      <name>David H Nebinger</name>
    </author>
    <id>https://liferay.dev/c/message_boards/find_message?p_l_id=119785294&amp;messageId=49209817</id>
    <updated>2015-02-17T13:47:04Z</updated>
    <published>2015-02-17T13:47:04Z</published>
    <summary type="html">&lt;div class="quote-title"&gt;Pawel Michalski:&lt;/div&gt;&lt;blockquote&gt;Tell me how undeploy portlet, or redeploy in your tools?&lt;/blockquote&gt;&lt;br /&gt;&lt;br /&gt;Undeploy is just like non-eclipse methods, you delete the folder from the webapps directory.&lt;br /&gt;&lt;br /&gt;Redploy is just the &amp;#34;mvn liferay:deploy&amp;#34; all over again.&lt;br /&gt;&lt;br /&gt;&lt;blockquote&gt;In WTP eclipse procject you only must push one button (publish to server) . You don&amp;#39;t need to do mvn package liferay:deploy. Mvn task take much longer than deploy/republish in eclipse WTP Projecs.&lt;/blockquote&gt;&lt;br /&gt;&lt;br /&gt;That is very true.  For me, knowing that my other regular hot deployments will work , well that has a higher benefit than the ease of deployment in Eclipse.  That&amp;#39;s just the way I determine value, others will have a different formula which may have other outcomes.&lt;br /&gt;&lt;br /&gt;I can say that I haven&amp;#39;t run into any problems moving code from my own environment to other environments, but that might have given me the warm and fuzzies with my own process that doesn&amp;#39;t actually have enough causality to justify it.&lt;br /&gt;&lt;br /&gt;&lt;blockquote&gt;How to configure Eclipse that deploy/redeploy/ publish to Liferay Server  has less time after change source code?&lt;/blockquote&gt;&lt;br /&gt;&lt;br /&gt;Well, the obvious answer here is not WTP, it&amp;#39;s JRebel.  It beats WTP deployment times hands down.</summary>
    <dc:creator>David H Nebinger</dc:creator>
    <dc:date>2015-02-17T13:47:04Z</dc:date>
  </entry>
  <entry>
    <title>RE: Hot Deploy</title>
    <link rel="alternate" href="https://liferay.dev/c/message_boards/find_message?p_l_id=119785294&amp;messageId=49207349" />
    <author>
      <name>Pawel Michalski</name>
    </author>
    <id>https://liferay.dev/c/message_boards/find_message?p_l_id=119785294&amp;messageId=49207349</id>
    <updated>2015-02-17T12:25:33Z</updated>
    <published>2015-02-17T12:25:33Z</published>
    <summary type="html">&lt;html&gt;&lt;head&gt;&lt;/head&gt;&lt;body&gt;Ok, I solved my problem.&lt;br&gt;&lt;br&gt;If you using maven-eclipse-plugin into your eclipse(LS) and you want to deploy plugin (portlets) like WTP into LiferayServer You need to configure faclet.&lt;br&gt;Note: setting faclet isn't posible from eclipse(LS) you need to do in pom.xml (maven-eclipse-plugin config) like belowe.&lt;br&gt;&lt;pre&gt;&lt;code&gt;
 &amp;lt;plugin&amp;gt;
                &amp;lt;groupid&amp;gt;org.apache.maven.plugins&amp;lt;/groupid&amp;gt;
                &amp;lt;artifactid&amp;gt;maven-eclipse-plugin&amp;lt;/artifactid&amp;gt;
                &amp;lt;version&amp;gt;2.7&amp;lt;/version&amp;gt;    
                &amp;lt;configuration&amp;gt;
                    &amp;lt;downloadsources&amp;gt;true&amp;lt;/downloadsources&amp;gt;
                    &amp;lt;downloadjavadocs&amp;gt;false&amp;lt;/downloadjavadocs&amp;gt;
                    &amp;lt;wtpversion&amp;gt;2.0&amp;lt;/wtpversion&amp;gt;
                    &amp;lt;additionalbuildcommands&amp;gt;
                    &amp;lt;additionalprojectfacets&amp;gt;
            			&amp;lt;liferay.portlet&amp;gt;6.0&amp;lt;/liferay.portlet&amp;gt;
          			&amp;lt;/additionalprojectfacets&amp;gt;
                &amp;lt;/additionalbuildcommands&amp;gt;&amp;lt;/configuration&amp;gt;
&amp;lt;/plugin&amp;gt;
&lt;/code&gt;&lt;/pre&gt;&lt;/body&gt;&lt;/html&gt;</summary>
    <dc:creator>Pawel Michalski</dc:creator>
    <dc:date>2015-02-17T12:25:33Z</dc:date>
  </entry>
  <entry>
    <title>RE: Hot Deploy</title>
    <link rel="alternate" href="https://liferay.dev/c/message_boards/find_message?p_l_id=119785294&amp;messageId=49196996" />
    <author>
      <name>Pawel Michalski</name>
    </author>
    <id>https://liferay.dev/c/message_boards/find_message?p_l_id=119785294&amp;messageId=49196996</id>
    <updated>2015-02-17T09:36:08Z</updated>
    <published>2015-02-17T09:36:08Z</published>
    <summary type="html">Ok David, I have a few questuin to You:&lt;br /&gt;&lt;br /&gt;Tell me how undeploy portlet, or redeploy in your tools?&lt;br /&gt;&lt;br /&gt;In WTP eclipse procject you only must push one button (publish to server) . You don&amp;#39;t need to do mvn package liferay:deploy  .&lt;br /&gt;&lt;br /&gt;Mvn task take much longer than deploy/republish in eclipse WTP Projecs.&lt;br /&gt;&lt;br /&gt;Do you have any experience in this? &lt;br /&gt;&lt;br /&gt;How to configure Eclipse that deploy/redeploy/ publish to Liferay Server  has less time after change source code?</summary>
    <dc:creator>Pawel Michalski</dc:creator>
    <dc:date>2015-02-17T09:36:08Z</dc:date>
  </entry>
  <entry>
    <title>RE: Hot Deploy</title>
    <link rel="alternate" href="https://liferay.dev/c/message_boards/find_message?p_l_id=119785294&amp;messageId=49193246" />
    <author>
      <name>Olaf Kock</name>
    </author>
    <id>https://liferay.dev/c/message_boards/find_message?p_l_id=119785294&amp;messageId=49193246</id>
    <updated>2015-02-17T08:35:03Z</updated>
    <published>2015-02-17T08:35:03Z</published>
    <summary type="html">To deploy your portlet, just drag the project from your project explorer view and drop it on the server view, right on the line where the Liferay Server name is (not below it). This will make Studio deploy the plugin as it should. If you just use the maven target or the WTP methods, Studio will have no clue that your portlet has been deployed to Liferay and can&amp;#39;t do hot-updates (e.g. update Liferay whenever you save your project&amp;#39;s files). &lt;br /&gt;&lt;br /&gt;Unless you don&amp;#39;t want these automatic updates to happen, of course. Then use David&amp;#39;s recommendation.</summary>
    <dc:creator>Olaf Kock</dc:creator>
    <dc:date>2015-02-17T08:35:03Z</dc:date>
  </entry>
  <entry>
    <title>RE: Hot Deploy</title>
    <link rel="alternate" href="https://liferay.dev/c/message_boards/find_message?p_l_id=119785294&amp;messageId=49173403" />
    <author>
      <name>David H Nebinger</name>
    </author>
    <id>https://liferay.dev/c/message_boards/find_message?p_l_id=119785294&amp;messageId=49173403</id>
    <updated>2015-02-16T14:36:39Z</updated>
    <published>2015-02-16T14:36:39Z</published>
    <summary type="html">I don&amp;#39;t use the deployment feature of Liferay IDE or LDS.  I use the maven &amp;#34;liferay:depoy&amp;#34; target which copies the war to the Liferay deploy directory.&lt;br /&gt;&lt;br /&gt;Why avoid the tools?  Well I want to replicate what will happen during deployment to test, QA, and prod environments.  The IDE/LDS doesn&amp;#39;t do the deployment in the same way and that can give you a &amp;#34;false positive&amp;#34; sense of deployment success.</summary>
    <dc:creator>David H Nebinger</dc:creator>
    <dc:date>2015-02-16T14:36:39Z</dc:date>
  </entry>
  <entry>
    <title>Hot Deploy</title>
    <link rel="alternate" href="https://liferay.dev/c/message_boards/find_message?p_l_id=119785294&amp;messageId=49164448" />
    <author>
      <name>Pawel Michalski</name>
    </author>
    <id>https://liferay.dev/c/message_boards/find_message?p_l_id=119785294&amp;messageId=49164448</id>
    <updated>2015-02-16T11:34:53Z</updated>
    <published>2015-02-16T11:34:53Z</published>
    <summary type="html">I&amp;#39;m using LiferayStudio and maven project  Portlet (using maven-eclipse-plugin no m2e).&lt;br /&gt;I have plobelm when i deploy portlet in eclipse.&lt;br /&gt;My portlet has wtp nature additional has liferay-plugin-package.properties  (portal-dependency-jars ) .&lt;br /&gt;When i add appiccation to serwer always deploy in liferay\tomcat\webapps . I want to deploy in liferay/deploy folder that would work portal-dependency-jars and other things.&lt;br /&gt;&lt;br /&gt;I tired to change server  vm argument -Dwtp.deploy  but didn&amp;#39;t work.&lt;br /&gt;&lt;br /&gt;Did you have similar problem. I need to deploy portlet into eclipse.</summary>
    <dc:creator>Pawel Michalski</dc:creator>
    <dc:date>2015-02-16T11:34:53Z</dc:date>
  </entry>
</feed>
